mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
41 lines
1.9 KiB
Svelte
41 lines
1.9 KiB
Svelte
<script lang="ts">
|
|
import { getAssetOriginalUrl, getKey } from '$lib/utils';
|
|
import { AssetMediaSize, AssetTypeEnum, viewAsset, type AssetResponseDto } from '@immich/sdk';
|
|
import type { AdapterConstructor, PluginConstructor } from '@photo-sphere-viewer/core';
|
|
import { fade } from 'svelte/transition';
|
|
import LoadingSpinner from '../shared-components/loading-spinner.svelte';
|
|
import { t } from 'svelte-i18n';
|
|
export let asset: Pick<AssetResponseDto, 'id' | 'type'>;
|
|
|
|
const photoSphereConfigs =
|
|
asset.type === AssetTypeEnum.Video
|
|
? ([
|
|
import('@photo-sphere-viewer/equirectangular-video-adapter').then(
|
|
({ EquirectangularVideoAdapter }) => EquirectangularVideoAdapter,
|
|
),
|
|
import('@photo-sphere-viewer/video-plugin').then(({ VideoPlugin }) => [VideoPlugin]),
|
|
true,
|
|
import('@photo-sphere-viewer/video-plugin/index.css'),
|
|
] as [PromiseLike<AdapterConstructor>, Promise<PluginConstructor[]>, true, unknown])
|
|
: ([undefined, [], false] as [undefined, [], false]);
|
|
|
|
const loadAssetData = async () => {
|
|
if (asset.type === AssetTypeEnum.Video) {
|
|
return { source: getAssetOriginalUrl(asset.id) };
|
|
}
|
|
const data = await viewAsset({ id: asset.id, size: AssetMediaSize.Preview, key: getKey() });
|
|
const url = URL.createObjectURL(data);
|
|
return url;
|
|
};
|
|
</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'), ...photoSphereConfigs])}
|
|
<LoadingSpinner />
|
|
{:then [data, module, adapter, plugins, navbar]}
|
|
<svelte:component this={module.default} panorama={data} plugins={plugins ?? undefined} {navbar} {adapter} />
|
|
{:catch}
|
|
{$t('errors.failed_to_load_asset')}
|
|
{/await}
|
|
</div>
|