mirror of
https://github.com/immich-app/immich.git
synced 2025-12-19 01:11:07 +03:00
24 lines
942 B
Svelte
24 lines
942 B
Svelte
<script lang="ts">
|
|
import { serveFile, type AssetResponseDto } from '@immich/sdk';
|
|
import { fade } from 'svelte/transition';
|
|
import LoadingSpinner from '../shared-components/loading-spinner.svelte';
|
|
import { getKey } from '$lib/utils';
|
|
export let asset: AssetResponseDto;
|
|
|
|
const loadAssetData = async () => {
|
|
const data = await serveFile({ id: asset.id, isWeb: false, isThumb: false, key: getKey() });
|
|
return URL.createObjectURL(data);
|
|
};
|
|
</script>
|
|
|
|
<div transition:fade={{ duration: 150 }} class="flex h-full select-none place-content-center place-items-center">
|
|
<!-- the photo sphere viewer is quite large, so lazy load it in parallel with loading the data -->
|
|
{#await Promise.all([loadAssetData(), import('./photo-sphere-viewer-adapter.svelte')])}
|
|
<LoadingSpinner />
|
|
{:then [data, module]}
|
|
<svelte:component this={module.default} panorama={data} />
|
|
{:catch}
|
|
Failed to load asset
|
|
{/await}
|
|
</div>
|