mirror of
https://github.com/immich-app/immich.git
synced 2025-06-03 13:44:16 -04:00
253 lines
8.0 KiB
Svelte
253 lines
8.0 KiB
Svelte
<script lang="ts">
|
|
import { shortcuts } from '$lib/actions/shortcut';
|
|
import { zoomImageAction, zoomed } from '$lib/actions/zoom-image';
|
|
import BrokenAsset from '$lib/components/assets/broken-asset.svelte';
|
|
import { boundingBoxesArray } from '$lib/stores/people.store';
|
|
import { alwaysLoadOriginalFile } from '$lib/stores/preferences.store';
|
|
import { SlideshowLook, SlideshowState, slideshowLookCssMapping, slideshowStore } from '$lib/stores/slideshow.store';
|
|
import { photoZoomState } from '$lib/stores/zoom-image.store';
|
|
import { getAssetOriginalUrl, getAssetThumbnailUrl, handlePromiseError } from '$lib/utils';
|
|
import { isWebCompatibleImage, canCopyImageToClipboard, copyImageToClipboard } from '$lib/utils/asset-utils';
|
|
import { getBoundingBox } from '$lib/utils/people-utils';
|
|
import { getAltText } from '$lib/utils/thumbnail-util';
|
|
import { AssetMediaSize, AssetTypeEnum, type AssetResponseDto, type SharedLinkResponseDto } from '@immich/sdk';
|
|
import { onDestroy, onMount } from 'svelte';
|
|
import { t } from 'svelte-i18n';
|
|
import { type SwipeCustomEvent, swipe } from 'svelte-gestures';
|
|
import { fade } from 'svelte/transition';
|
|
import LoadingSpinner from '../shared-components/loading-spinner.svelte';
|
|
import { NotificationType, notificationController } from '../shared-components/notification/notification';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import FaceEditor from '$lib/components/asset-viewer/face-editor/face-editor.svelte';
|
|
import { photoViewerImgElement } from '$lib/stores/assets.store';
|
|
import { isFaceEditMode } from '$lib/stores/face-edit.svelte';
|
|
|
|
interface Props {
|
|
asset: AssetResponseDto;
|
|
preloadAssets?: AssetResponseDto[] | undefined;
|
|
element?: HTMLDivElement | undefined;
|
|
haveFadeTransition?: boolean;
|
|
sharedLink?: SharedLinkResponseDto | undefined;
|
|
onPreviousAsset?: (() => void) | null;
|
|
onNextAsset?: (() => void) | null;
|
|
copyImage?: () => Promise<void>;
|
|
zoomToggle?: (() => void) | null;
|
|
onClose?: () => void;
|
|
}
|
|
|
|
let {
|
|
asset,
|
|
preloadAssets = undefined,
|
|
element = $bindable(),
|
|
haveFadeTransition = true,
|
|
sharedLink = undefined,
|
|
onPreviousAsset = null,
|
|
onNextAsset = null,
|
|
copyImage = $bindable(),
|
|
zoomToggle = $bindable(),
|
|
}: Props = $props();
|
|
|
|
const { slideshowState, slideshowLook } = slideshowStore;
|
|
|
|
let assetFileUrl: string = $state('');
|
|
let imageLoaded: boolean = $state(false);
|
|
let imageError: boolean = $state(false);
|
|
|
|
let loader = $state<HTMLImageElement>();
|
|
|
|
photoZoomState.set({
|
|
currentRotation: 0,
|
|
currentZoom: 1,
|
|
enable: true,
|
|
currentPositionX: 0,
|
|
currentPositionY: 0,
|
|
});
|
|
$zoomed = false;
|
|
|
|
onDestroy(() => {
|
|
$boundingBoxesArray = [];
|
|
});
|
|
|
|
const preload = (useOriginal: boolean, preloadAssets?: AssetResponseDto[]) => {
|
|
for (const preloadAsset of preloadAssets || []) {
|
|
if (preloadAsset.type === AssetTypeEnum.Image) {
|
|
let img = new Image();
|
|
img.src = getAssetUrl(preloadAsset.id, useOriginal, preloadAsset.thumbhash);
|
|
}
|
|
}
|
|
};
|
|
|
|
const getAssetUrl = (id: string, useOriginal: boolean, cacheKey: string | null) => {
|
|
if (sharedLink && (!sharedLink.allowDownload || !sharedLink.showMetadata)) {
|
|
return getAssetThumbnailUrl({ id, size: AssetMediaSize.Preview, cacheKey });
|
|
}
|
|
|
|
return useOriginal
|
|
? getAssetOriginalUrl({ id, cacheKey })
|
|
: getAssetThumbnailUrl({ id, size: AssetMediaSize.Preview, cacheKey });
|
|
};
|
|
|
|
copyImage = async () => {
|
|
if (!canCopyImageToClipboard()) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await copyImageToClipboard($photoViewerImgElement ?? assetFileUrl);
|
|
notificationController.show({
|
|
type: NotificationType.Info,
|
|
message: $t('copied_image_to_clipboard'),
|
|
timeout: 3000,
|
|
});
|
|
} catch (error) {
|
|
handleError(error, $t('copy_error'));
|
|
}
|
|
};
|
|
|
|
zoomToggle = () => {
|
|
$zoomed = $zoomed ? false : true;
|
|
};
|
|
|
|
$effect(() => {
|
|
if (isFaceEditMode.value && $photoZoomState.currentZoom > 1) {
|
|
zoomToggle();
|
|
}
|
|
});
|
|
|
|
const onCopyShortcut = (event: KeyboardEvent) => {
|
|
if (globalThis.getSelection()?.type === 'Range') {
|
|
return;
|
|
}
|
|
event.preventDefault();
|
|
handlePromiseError(copyImage());
|
|
};
|
|
|
|
const onSwipe = (event: SwipeCustomEvent) => {
|
|
if ($photoZoomState.currentZoom > 1) {
|
|
return;
|
|
}
|
|
if (onNextAsset && event.detail.direction === 'left') {
|
|
onNextAsset();
|
|
}
|
|
if (onPreviousAsset && event.detail.direction === 'right') {
|
|
onPreviousAsset();
|
|
}
|
|
};
|
|
|
|
onMount(() => {
|
|
const onload = () => {
|
|
imageLoaded = true;
|
|
assetFileUrl = imageLoaderUrl;
|
|
};
|
|
const onerror = () => {
|
|
imageError = imageLoaded = true;
|
|
};
|
|
if (loader?.complete) {
|
|
onload();
|
|
}
|
|
loader?.addEventListener('load', onload);
|
|
loader?.addEventListener('error', onerror);
|
|
return () => {
|
|
loader?.removeEventListener('load', onload);
|
|
loader?.removeEventListener('error', onerror);
|
|
};
|
|
});
|
|
let isWebCompatible = $derived(isWebCompatibleImage(asset));
|
|
let useOriginalByDefault = $derived(isWebCompatible && $alwaysLoadOriginalFile);
|
|
// when true, will force loading of the original image
|
|
|
|
let forceUseOriginal: boolean = $derived(
|
|
asset.originalMimeType === 'image/gif' || ($photoZoomState.currentZoom > 1 && isWebCompatible),
|
|
);
|
|
|
|
let useOriginalImage = $derived(useOriginalByDefault || forceUseOriginal);
|
|
|
|
$effect(() => {
|
|
preload(useOriginalImage, preloadAssets);
|
|
});
|
|
|
|
let imageLoaderUrl = $derived(getAssetUrl(asset.id, useOriginalImage, asset.thumbhash));
|
|
|
|
let containerWidth = $state(0);
|
|
let containerHeight = $state(0);
|
|
</script>
|
|
|
|
<svelte:window
|
|
use:shortcuts={[
|
|
{ shortcut: { key: 'c', ctrl: true }, onShortcut: onCopyShortcut, preventDefault: false },
|
|
{ shortcut: { key: 'c', meta: true }, onShortcut: onCopyShortcut, preventDefault: false },
|
|
]}
|
|
/>
|
|
{#if imageError}
|
|
<BrokenAsset class="text-xl" />
|
|
{/if}
|
|
<!-- svelte-ignore a11y_missing_attribute -->
|
|
<img bind:this={loader} style="display:none" src={imageLoaderUrl} aria-hidden="true" />
|
|
<div
|
|
bind:this={element}
|
|
class="relative h-full select-none"
|
|
bind:clientWidth={containerWidth}
|
|
bind:clientHeight={containerHeight}
|
|
>
|
|
<img
|
|
style="display:none"
|
|
src={imageLoaderUrl}
|
|
alt={$getAltText(asset)}
|
|
onload={() => ((imageLoaded = true), (assetFileUrl = imageLoaderUrl))}
|
|
onerror={() => (imageError = imageLoaded = true)}
|
|
/>
|
|
{#if !imageLoaded}
|
|
<div id="spinner" class="flex h-full items-center justify-center">
|
|
<LoadingSpinner />
|
|
</div>
|
|
{:else if !imageError}
|
|
<div
|
|
use:zoomImageAction
|
|
use:swipe={() => ({})}
|
|
onswipe={onSwipe}
|
|
class="h-full w-full"
|
|
transition:fade={{ duration: haveFadeTransition ? 150 : 0 }}
|
|
>
|
|
{#if $slideshowState !== SlideshowState.None && $slideshowLook === SlideshowLook.BlurredBackground}
|
|
<img
|
|
src={assetFileUrl}
|
|
alt={$getAltText(asset)}
|
|
class="absolute top-0 left-0 -z-10 object-cover h-full w-full blur-lg"
|
|
draggable="false"
|
|
/>
|
|
{/if}
|
|
<img
|
|
bind:this={$photoViewerImgElement}
|
|
src={assetFileUrl}
|
|
alt={$getAltText(asset)}
|
|
class="h-full w-full {$slideshowState === SlideshowState.None
|
|
? 'object-contain'
|
|
: slideshowLookCssMapping[$slideshowLook]}"
|
|
draggable="false"
|
|
/>
|
|
{#each getBoundingBox($boundingBoxesArray, $photoZoomState, $photoViewerImgElement) as boundingbox}
|
|
<div
|
|
class="absolute border-solid border-white border-[3px] rounded-lg"
|
|
style="top: {boundingbox.top}px; left: {boundingbox.left}px; height: {boundingbox.height}px; width: {boundingbox.width}px;"
|
|
></div>
|
|
{/each}
|
|
</div>
|
|
|
|
{#if isFaceEditMode.value}
|
|
<FaceEditor htmlElement={$photoViewerImgElement} {containerWidth} {containerHeight} assetId={asset.id} />
|
|
{/if}
|
|
{/if}
|
|
</div>
|
|
|
|
<style>
|
|
@keyframes delayedVisibility {
|
|
to {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
#spinner {
|
|
visibility: hidden;
|
|
animation: 0s linear 0.4s forwards delayedVisibility;
|
|
}
|
|
</style>
|