mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
154 lines
4.8 KiB
Svelte
154 lines
4.8 KiB
Svelte
<script lang="ts">
|
|
import { fade } from 'svelte/transition';
|
|
import { onDestroy, onMount } from 'svelte';
|
|
import LoadingSpinner from '../shared-components/loading-spinner.svelte';
|
|
import { api, type AssetResponseDto } from '@api';
|
|
import { notificationController, NotificationType } from '../shared-components/notification/notification';
|
|
import { useZoomImageWheel } from '@zoom-image/svelte';
|
|
import { photoZoomState } from '$lib/stores/zoom-image.store';
|
|
import { isWebCompatibleImage } from '$lib/utils/asset-utils';
|
|
import { shouldIgnoreShortcut } from '$lib/utils/shortcut';
|
|
import { photoViewer } from '$lib/stores/assets.store';
|
|
import { getBoundingBox } from '$lib/utils/people-utils';
|
|
import { boundingBoxesArray } from '$lib/stores/people.store';
|
|
import { alwaysLoadOriginalFile } from '$lib/stores/preferences.store';
|
|
|
|
export let asset: AssetResponseDto;
|
|
export let element: HTMLDivElement | undefined = undefined;
|
|
export let haveFadeTransition = true;
|
|
|
|
let imgElement: HTMLDivElement;
|
|
let assetData: string;
|
|
let abortController: AbortController;
|
|
let hasZoomed = false;
|
|
let copyImageToClipboard: (source: string) => Promise<Blob>;
|
|
let canCopyImagesToClipboard: () => boolean;
|
|
|
|
$: if (imgElement) {
|
|
createZoomImageWheel(imgElement, {
|
|
maxZoom: 10,
|
|
wheelZoomRatio: 0.2,
|
|
});
|
|
}
|
|
|
|
onMount(async () => {
|
|
// Import hack :( see https://github.com/vadimkorr/svelte-carousel/issues/27#issuecomment-851022295
|
|
// TODO: Move to regular import once the package correctly supports ESM.
|
|
const module = await import('copy-image-clipboard');
|
|
copyImageToClipboard = module.copyImageToClipboard;
|
|
canCopyImagesToClipboard = module.canCopyImagesToClipboard;
|
|
});
|
|
|
|
onDestroy(() => {
|
|
$boundingBoxesArray = [];
|
|
abortController?.abort();
|
|
});
|
|
|
|
const loadAssetData = async ({ loadOriginal }: { loadOriginal: boolean }) => {
|
|
try {
|
|
abortController?.abort();
|
|
abortController = new AbortController();
|
|
|
|
const { data } = await api.assetApi.serveFile(
|
|
{ id: asset.id, isThumb: false, isWeb: !loadOriginal, key: api.getKey() },
|
|
{
|
|
responseType: 'blob',
|
|
signal: abortController.signal,
|
|
},
|
|
);
|
|
|
|
if (!(data instanceof Blob)) {
|
|
return;
|
|
}
|
|
|
|
assetData = URL.createObjectURL(data);
|
|
} catch {
|
|
// Do nothing
|
|
}
|
|
};
|
|
|
|
const handleKeypress = async (event: KeyboardEvent) => {
|
|
if (shouldIgnoreShortcut(event)) {
|
|
return;
|
|
}
|
|
if (window.getSelection()?.type === 'Range') {
|
|
return;
|
|
}
|
|
if ((event.metaKey || event.ctrlKey) && event.key === 'c') {
|
|
await doCopy();
|
|
}
|
|
};
|
|
|
|
const doCopy = async () => {
|
|
if (!canCopyImagesToClipboard()) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await copyImageToClipboard(assetData);
|
|
notificationController.show({
|
|
type: NotificationType.Info,
|
|
message: 'Copied image to clipboard.',
|
|
timeout: 3000,
|
|
});
|
|
} catch (error) {
|
|
console.error('Error [photo-viewer]:', error);
|
|
notificationController.show({
|
|
type: NotificationType.Error,
|
|
message: 'Copying image to clipboard failed.',
|
|
});
|
|
}
|
|
};
|
|
|
|
const doZoomImage = async () => {
|
|
setZoomImageWheelState({
|
|
currentZoom: $zoomImageWheelState.currentZoom === 1 ? 2 : 1,
|
|
});
|
|
};
|
|
|
|
const {
|
|
createZoomImage: createZoomImageWheel,
|
|
zoomImageState: zoomImageWheelState,
|
|
setZoomImageState: setZoomImageWheelState,
|
|
} = useZoomImageWheel();
|
|
|
|
zoomImageWheelState.subscribe((state) => {
|
|
photoZoomState.set(state);
|
|
|
|
if (state.currentZoom > 1 && isWebCompatibleImage(asset) && !hasZoomed && !$alwaysLoadOriginalFile) {
|
|
hasZoomed = true;
|
|
|
|
loadAssetData({ loadOriginal: true });
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<svelte:window on:keydown={handleKeypress} on:copyImage={doCopy} on:zoomImage={doZoomImage} />
|
|
|
|
<div
|
|
bind:this={element}
|
|
transition:fade={{ duration: haveFadeTransition ? 150 : 0 }}
|
|
class="flex h-full select-none place-content-center place-items-center"
|
|
>
|
|
{#await loadAssetData({ loadOriginal: $alwaysLoadOriginalFile ? isWebCompatibleImage(asset) : false })}
|
|
<LoadingSpinner />
|
|
{:then}
|
|
<div bind:this={imgElement} class="h-full w-full">
|
|
<img
|
|
bind:this={$photoViewer}
|
|
transition:fade={{ duration: haveFadeTransition ? 150 : 0 }}
|
|
src={assetData}
|
|
alt={asset.id}
|
|
class="h-full w-full object-contain"
|
|
draggable="false"
|
|
/>
|
|
{#each getBoundingBox($boundingBoxesArray, $photoZoomState, $photoViewer) 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;"
|
|
/>
|
|
{/each}
|
|
</div>
|
|
{/await}
|
|
</div>
|