mirror of
https://github.com/moku-project/Moku.git
synced 2026-06-13 17:29:55 -05:00
52 lines
1.3 KiB
Svelte
52 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
import { plainThumbUrl, getServerUrl } from "@api/client";
|
|
import { store } from "@store/state.svelte";
|
|
import { getBlobUrl } from "@core/cache/imageCache";
|
|
|
|
let {
|
|
src,
|
|
alt = "",
|
|
class: cls = "",
|
|
loading = "lazy",
|
|
decoding = "async",
|
|
priority = 0,
|
|
onerror = undefined,
|
|
...rest
|
|
}: {
|
|
src: string;
|
|
alt?: string;
|
|
class?: string;
|
|
loading?: string;
|
|
decoding?: string;
|
|
priority?: number;
|
|
onerror?: ((e: Event) => void) | undefined;
|
|
[key: string]: any;
|
|
} = $props();
|
|
|
|
const isAuth = $derived((store.settings.serverAuthMode ?? "NONE") !== "NONE");
|
|
|
|
let blobUrl = $state("");
|
|
let reqId = 0;
|
|
|
|
$effect(() => {
|
|
const _src = src;
|
|
const _priority = priority;
|
|
const _isAuth = isAuth;
|
|
|
|
if (!_isAuth || !_src) { blobUrl = ""; return; }
|
|
|
|
const id = ++reqId;
|
|
const bareUrl = _src.startsWith("http") ? _src : `${getServerUrl()}${_src}`;
|
|
getBlobUrl(bareUrl, _priority)
|
|
.then(u => { if (id === reqId) blobUrl = u; })
|
|
.catch(() => { if (id === reqId) blobUrl = ""; });
|
|
});
|
|
|
|
const resolved = $derived(
|
|
isAuth
|
|
? (blobUrl || undefined)
|
|
: (src ? plainThumbUrl(src) : undefined)
|
|
);
|
|
</script>
|
|
|
|
<img src={resolved} {alt} class={cls} {loading} {decoding} {onerror} {...rest} /> |