From 51849d186b71854e7f487e8abb106dd4819076a2 Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Thu, 9 Apr 2026 18:04:31 +0900 Subject: better loading screen --- src/lib/components/ImagePreview.svelte | 57 +++++++++++++++++++++++++++------- 1 file changed, 46 insertions(+), 11 deletions(-) (limited to 'src/lib/components/ImagePreview.svelte') diff --git a/src/lib/components/ImagePreview.svelte b/src/lib/components/ImagePreview.svelte index d811c4f..a574df1 100644 --- a/src/lib/components/ImagePreview.svelte +++ b/src/lib/components/ImagePreview.svelte @@ -8,9 +8,8 @@ let { file }: Props = $props(); - let thumbnailUrl = $derived( - file !== undefined ? flashair.thumbnailUrl(file.path) : undefined, - ); + let thumbnailBlobUrl = $state(undefined); + let imageAspectRatio = $state('3 / 2'); let fullObjectUrl = $state(undefined); let progress = $state(0); @@ -25,6 +24,7 @@ * add it as a tracked dependency and cause an infinite loop). */ let rawObjectUrl: string | undefined; + let rawThumbnailUrl: string | undefined; $effect(() => { const currentFile = file; @@ -33,6 +33,7 @@ return; } + loadThumbnail(currentFile); loadFullImage(currentFile); return () => { @@ -48,14 +49,44 @@ URL.revokeObjectURL(rawObjectUrl); rawObjectUrl = undefined; } + if (rawThumbnailUrl !== undefined) { + URL.revokeObjectURL(rawThumbnailUrl); + rawThumbnailUrl = undefined; + } fullObjectUrl = undefined; + thumbnailBlobUrl = undefined; + imageAspectRatio = '3 / 2'; progress = 0; downloading = false; loadError = undefined; } + async function loadThumbnail(entry: FlashAirFileEntry) { + const url = flashair.thumbnailUrl(entry.path); + if (url === undefined) return; + + try { + const { blob, meta } = await flashair.fetchThumbnail(entry.path); + const blobUrl = URL.createObjectURL(blob); + rawThumbnailUrl = blobUrl; + thumbnailBlobUrl = blobUrl; + + if (meta.width !== undefined && meta.height !== undefined && meta.width > 0 && meta.height > 0) { + imageAspectRatio = `${String(meta.width)} / ${String(meta.height)}`; + } + } catch { + // Thumbnail fetch failed — not critical, full image will load + } + } + async function loadFullImage(entry: FlashAirFileEntry) { - cleanup(); + if (rawObjectUrl !== undefined) { + URL.revokeObjectURL(rawObjectUrl); + rawObjectUrl = undefined; + } + fullObjectUrl = undefined; + progress = 0; + loadError = undefined; if (currentAbort !== undefined) { currentAbort.abort(); @@ -117,7 +148,7 @@ } let progressPercent = $derived(Math.round(progress * 100)); - let showThumbnail = $derived(fullObjectUrl === undefined && thumbnailUrl !== undefined); + let showThumbnail = $derived(fullObjectUrl === undefined && thumbnailBlobUrl !== undefined);
@@ -150,12 +181,16 @@ /> {/key} {:else if showThumbnail} - {file.filename} +
+ {file.filename} +
{:else} {/if} -- cgit v1.2.3