mirror of
https://github.com/immich-app/immich.git
synced 2025-05-31 04:05:39 -04:00
* bug: select-all * set->[] in interaction store, clear select-all on cancel * feedback --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
516 lines
16 KiB
Svelte
516 lines
16 KiB
Svelte
<script lang="ts">
|
|
import { type ShortcutOptions, shortcuts } from '$lib/actions/shortcut';
|
|
import { goto } from '$app/navigation';
|
|
import type { Action } from '$lib/components/asset-viewer/actions/action';
|
|
import Thumbnail from '$lib/components/assets/thumbnail/thumbnail.svelte';
|
|
import { AppRoute, AssetAction } from '$lib/constants';
|
|
import { assetViewingStore } from '$lib/stores/asset-viewing.store';
|
|
import type { Viewport } from '$lib/stores/assets-store.svelte';
|
|
import { showDeleteModal } from '$lib/stores/preferences.store';
|
|
import { deleteAssets } from '$lib/utils/actions';
|
|
import { archiveAssets, cancelMultiselect } from '$lib/utils/asset-utils';
|
|
import { featureFlags } from '$lib/stores/server-config.store';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { navigate } from '$lib/utils/navigation';
|
|
import { type AssetResponseDto } from '@immich/sdk';
|
|
import { t } from 'svelte-i18n';
|
|
import AssetViewer from '../../asset-viewer/asset-viewer.svelte';
|
|
import ShowShortcuts from '../show-shortcuts.svelte';
|
|
import Portal from '../portal/portal.svelte';
|
|
import { handlePromiseError } from '$lib/utils';
|
|
import DeleteAssetDialog from '../../photos-page/delete-asset-dialog.svelte';
|
|
import type { AssetInteraction } from '$lib/stores/asset-interaction.svelte';
|
|
import { debounce } from 'lodash-es';
|
|
import { getJustifiedLayoutFromAssets, type CommonJustifiedLayout } from '$lib/utils/layout-utils';
|
|
|
|
interface Props {
|
|
assets: AssetResponseDto[];
|
|
assetInteraction: AssetInteraction;
|
|
disableAssetSelect?: boolean;
|
|
showArchiveIcon?: boolean;
|
|
viewport: Viewport;
|
|
onIntersected?: (() => void) | undefined;
|
|
showAssetName?: boolean;
|
|
isShowDeleteConfirmation?: boolean;
|
|
onPrevious?: (() => Promise<AssetResponseDto | undefined>) | undefined;
|
|
onNext?: (() => Promise<AssetResponseDto | undefined>) | undefined;
|
|
onRandom?: (() => Promise<AssetResponseDto | undefined>) | undefined;
|
|
}
|
|
|
|
let {
|
|
assets = $bindable(),
|
|
assetInteraction,
|
|
disableAssetSelect = false,
|
|
showArchiveIcon = false,
|
|
viewport,
|
|
onIntersected = undefined,
|
|
showAssetName = false,
|
|
isShowDeleteConfirmation = $bindable(false),
|
|
onPrevious = undefined,
|
|
onNext = undefined,
|
|
onRandom = undefined,
|
|
}: Props = $props();
|
|
|
|
let { isViewing: isViewerOpen, asset: viewingAsset, setAsset } = assetViewingStore;
|
|
|
|
let geometry: CommonJustifiedLayout | undefined = $state();
|
|
|
|
$effect(() => {
|
|
const _assets = assets;
|
|
updateSlidingWindow();
|
|
|
|
geometry = getJustifiedLayoutFromAssets(_assets, {
|
|
spacing: 2,
|
|
heightTolerance: 0.15,
|
|
rowHeight: 235,
|
|
rowWidth: Math.floor(viewport.width),
|
|
});
|
|
});
|
|
|
|
let assetLayouts = $derived.by(() => {
|
|
const assetLayout = [];
|
|
let containerHeight = 0;
|
|
let containerWidth = 0;
|
|
if (geometry) {
|
|
containerHeight = geometry.containerHeight;
|
|
containerWidth = geometry.containerWidth;
|
|
for (const [i, asset] of assets.entries()) {
|
|
const layout = {
|
|
asset,
|
|
top: geometry.getTop(i),
|
|
left: geometry.getLeft(i),
|
|
width: geometry.getWidth(i),
|
|
height: geometry.getHeight(i),
|
|
};
|
|
// 54 is the content height of the asset-selection-app-bar
|
|
const layoutTopWithOffset = layout.top + 54;
|
|
const layoutBottom = layoutTopWithOffset + layout.height;
|
|
|
|
const display = layoutTopWithOffset < slidingWindow.bottom && layoutBottom > slidingWindow.top;
|
|
assetLayout.push({ ...layout, display });
|
|
}
|
|
}
|
|
|
|
return {
|
|
assetLayout,
|
|
containerHeight,
|
|
containerWidth,
|
|
};
|
|
});
|
|
|
|
let showShortcuts = $state(false);
|
|
let currentViewAssetIndex = 0;
|
|
let shiftKeyIsDown = $state(false);
|
|
let lastAssetMouseEvent: AssetResponseDto | null = $state(null);
|
|
let slidingWindow = $state({ top: 0, bottom: 0 });
|
|
|
|
const updateSlidingWindow = () => {
|
|
const v = $state.snapshot(viewport);
|
|
const top = document.scrollingElement?.scrollTop || 0;
|
|
const bottom = top + v.height;
|
|
const w = {
|
|
top,
|
|
bottom,
|
|
};
|
|
slidingWindow = w;
|
|
};
|
|
const debouncedOnIntersected = debounce(() => onIntersected?.(), 750, { maxWait: 100, leading: true });
|
|
|
|
let lastIntersectedHeight = 0;
|
|
$effect(() => {
|
|
// notify we got to (near) the end of scroll
|
|
const scrollPercentage =
|
|
((slidingWindow.bottom - viewport.height) / (viewport.height - (document.scrollingElement?.clientHeight || 0))) *
|
|
100;
|
|
|
|
if (scrollPercentage > 90) {
|
|
const intersectedHeight = geometry?.containerHeight || 0;
|
|
if (lastIntersectedHeight !== intersectedHeight) {
|
|
debouncedOnIntersected();
|
|
lastIntersectedHeight = intersectedHeight;
|
|
}
|
|
}
|
|
});
|
|
const viewAssetHandler = async (asset: AssetResponseDto) => {
|
|
currentViewAssetIndex = assets.findIndex((a) => a.id == asset.id);
|
|
setAsset(assets[currentViewAssetIndex]);
|
|
await navigate({ targetRoute: 'current', assetId: $viewingAsset.id });
|
|
};
|
|
|
|
const selectAllAssets = () => {
|
|
assetInteraction.selectAssets(assets);
|
|
};
|
|
|
|
const deselectAllAssets = () => {
|
|
cancelMultiselect(assetInteraction);
|
|
};
|
|
|
|
const onKeyDown = (event: KeyboardEvent) => {
|
|
if (event.key === 'Shift') {
|
|
event.preventDefault();
|
|
|
|
shiftKeyIsDown = true;
|
|
}
|
|
};
|
|
|
|
const onKeyUp = (event: KeyboardEvent) => {
|
|
if (event.key === 'Shift') {
|
|
event.preventDefault();
|
|
shiftKeyIsDown = false;
|
|
}
|
|
};
|
|
|
|
const handleSelectAssets = (asset: AssetResponseDto) => {
|
|
if (!asset) {
|
|
return;
|
|
}
|
|
const deselect = assetInteraction.hasSelectedAsset(asset.id);
|
|
|
|
// Select/deselect already loaded assets
|
|
if (deselect) {
|
|
for (const candidate of assetInteraction.assetSelectionCandidates) {
|
|
assetInteraction.removeAssetFromMultiselectGroup(candidate.id);
|
|
}
|
|
assetInteraction.removeAssetFromMultiselectGroup(asset.id);
|
|
} else {
|
|
for (const candidate of assetInteraction.assetSelectionCandidates) {
|
|
assetInteraction.selectAsset(candidate);
|
|
}
|
|
assetInteraction.selectAsset(asset);
|
|
}
|
|
|
|
assetInteraction.clearAssetSelectionCandidates();
|
|
assetInteraction.setAssetSelectionStart(deselect ? null : asset);
|
|
};
|
|
|
|
const handleSelectAssetCandidates = (asset: AssetResponseDto | null) => {
|
|
if (asset) {
|
|
selectAssetCandidates(asset);
|
|
}
|
|
lastAssetMouseEvent = asset;
|
|
};
|
|
|
|
const selectAssetCandidates = (endAsset: AssetResponseDto) => {
|
|
if (!shiftKeyIsDown) {
|
|
return;
|
|
}
|
|
|
|
const startAsset = assetInteraction.assetSelectionStart;
|
|
if (!startAsset) {
|
|
return;
|
|
}
|
|
|
|
let start = assets.findIndex((a) => a.id === startAsset.id);
|
|
let end = assets.findIndex((a) => a.id === endAsset.id);
|
|
|
|
if (start > end) {
|
|
[start, end] = [end, start];
|
|
}
|
|
|
|
assetInteraction.setAssetSelectionCandidates(assets.slice(start, end + 1));
|
|
};
|
|
|
|
const onSelectStart = (e: Event) => {
|
|
if (assetInteraction.selectionActive && shiftKeyIsDown) {
|
|
e.preventDefault();
|
|
}
|
|
};
|
|
|
|
const onDelete = () => {
|
|
const hasTrashedAsset = assetInteraction.selectedAssets.some((asset) => asset.isTrashed);
|
|
|
|
if ($showDeleteModal && (!isTrashEnabled || hasTrashedAsset)) {
|
|
isShowDeleteConfirmation = true;
|
|
return;
|
|
}
|
|
handlePromiseError(trashOrDelete(hasTrashedAsset));
|
|
};
|
|
|
|
const onForceDelete = () => {
|
|
if ($showDeleteModal) {
|
|
isShowDeleteConfirmation = true;
|
|
return;
|
|
}
|
|
handlePromiseError(trashOrDelete(true));
|
|
};
|
|
|
|
const trashOrDelete = async (force: boolean = false) => {
|
|
isShowDeleteConfirmation = false;
|
|
await deleteAssets(
|
|
!(isTrashEnabled && !force),
|
|
(assetIds) => (assets = assets.filter((asset) => !assetIds.includes(asset.id))),
|
|
idsSelectedAssets,
|
|
);
|
|
assetInteraction.clearMultiselect();
|
|
};
|
|
|
|
const toggleArchive = async () => {
|
|
const ids = await archiveAssets(assetInteraction.selectedAssets, !assetInteraction.isAllArchived);
|
|
if (ids) {
|
|
assets = assets.filter((asset) => !ids.includes(asset.id));
|
|
deselectAllAssets();
|
|
}
|
|
};
|
|
|
|
const focusNextAsset = () => {
|
|
if (assetInteraction.focussedAssetId === null && assets.length > 0) {
|
|
assetInteraction.focussedAssetId = assets[0].id;
|
|
} else if (assetInteraction.focussedAssetId !== null && assets.length > 0) {
|
|
const currentIndex = assets.findIndex((a) => a.id === assetInteraction.focussedAssetId);
|
|
if (currentIndex !== -1 && currentIndex + 1 < assets.length) {
|
|
assetInteraction.focussedAssetId = assets[currentIndex + 1].id;
|
|
}
|
|
}
|
|
};
|
|
|
|
const focusPreviousAsset = () => {
|
|
if (assetInteraction.focussedAssetId !== null && assets.length > 0) {
|
|
const currentIndex = assets.findIndex((a) => a.id === assetInteraction.focussedAssetId);
|
|
if (currentIndex >= 1) {
|
|
assetInteraction.focussedAssetId = assets[currentIndex - 1].id;
|
|
}
|
|
}
|
|
};
|
|
|
|
let shortcutList = $derived(
|
|
(() => {
|
|
if ($isViewerOpen) {
|
|
return [];
|
|
}
|
|
|
|
const shortcuts: ShortcutOptions[] = [
|
|
{ shortcut: { key: '?', shift: true }, onShortcut: () => (showShortcuts = !showShortcuts) },
|
|
{ shortcut: { key: '/' }, onShortcut: () => goto(AppRoute.EXPLORE) },
|
|
{ shortcut: { key: 'A', ctrl: true }, onShortcut: () => selectAllAssets() },
|
|
{ shortcut: { key: 'ArrowRight' }, preventDefault: false, onShortcut: focusNextAsset },
|
|
{ shortcut: { key: 'ArrowLeft' }, preventDefault: false, onShortcut: focusPreviousAsset },
|
|
];
|
|
|
|
if (assetInteraction.selectionActive) {
|
|
shortcuts.push(
|
|
{ shortcut: { key: 'Escape' }, onShortcut: deselectAllAssets },
|
|
{ shortcut: { key: 'Delete' }, onShortcut: onDelete },
|
|
{ shortcut: { key: 'Delete', shift: true }, onShortcut: onForceDelete },
|
|
{ shortcut: { key: 'D', ctrl: true }, onShortcut: () => deselectAllAssets() },
|
|
{ shortcut: { key: 'a', shift: true }, onShortcut: toggleArchive },
|
|
);
|
|
}
|
|
|
|
return shortcuts;
|
|
})(),
|
|
);
|
|
|
|
const handleNext = async (): Promise<boolean> => {
|
|
try {
|
|
let asset: AssetResponseDto | undefined;
|
|
if (onNext) {
|
|
asset = await onNext();
|
|
} else {
|
|
currentViewAssetIndex = currentViewAssetIndex + 1;
|
|
asset = currentViewAssetIndex < assets.length ? assets[currentViewAssetIndex] : undefined;
|
|
}
|
|
|
|
if (!asset) {
|
|
return false;
|
|
}
|
|
|
|
await navigateToAsset(asset);
|
|
return true;
|
|
} catch (error) {
|
|
handleError(error, $t('errors.cannot_navigate_next_asset'));
|
|
return false;
|
|
}
|
|
};
|
|
|
|
const handleRandom = async (): Promise<AssetResponseDto | undefined> => {
|
|
try {
|
|
let asset: AssetResponseDto | undefined;
|
|
if (onRandom) {
|
|
asset = await onRandom();
|
|
} else {
|
|
if (assets.length > 0) {
|
|
const randomIndex = Math.floor(Math.random() * assets.length);
|
|
asset = assets[randomIndex];
|
|
}
|
|
}
|
|
|
|
if (!asset) {
|
|
return;
|
|
}
|
|
|
|
await navigateToAsset(asset);
|
|
return asset;
|
|
} catch (error) {
|
|
handleError(error, $t('errors.cannot_navigate_next_asset'));
|
|
return;
|
|
}
|
|
};
|
|
|
|
const handlePrevious = async (): Promise<boolean> => {
|
|
try {
|
|
let asset: AssetResponseDto | undefined;
|
|
if (onPrevious) {
|
|
asset = await onPrevious();
|
|
} else {
|
|
currentViewAssetIndex = currentViewAssetIndex - 1;
|
|
asset = currentViewAssetIndex >= 0 ? assets[currentViewAssetIndex] : undefined;
|
|
}
|
|
|
|
if (!asset) {
|
|
return false;
|
|
}
|
|
|
|
await navigateToAsset(asset);
|
|
return true;
|
|
} catch (error) {
|
|
handleError(error, $t('errors.cannot_navigate_previous_asset'));
|
|
return false;
|
|
}
|
|
};
|
|
|
|
const navigateToAsset = async (asset?: AssetResponseDto) => {
|
|
if (asset && asset.id !== $viewingAsset.id) {
|
|
setAsset(asset);
|
|
await navigate({ targetRoute: 'current', assetId: $viewingAsset.id });
|
|
}
|
|
};
|
|
|
|
const handleAction = async (action: Action) => {
|
|
switch (action.type) {
|
|
case AssetAction.ARCHIVE:
|
|
case AssetAction.DELETE:
|
|
case AssetAction.TRASH: {
|
|
assets.splice(
|
|
assets.findIndex((a) => a.id === action.asset.id),
|
|
1,
|
|
);
|
|
if (assets.length === 0) {
|
|
await goto(AppRoute.PHOTOS);
|
|
} else if (currentViewAssetIndex === assets.length) {
|
|
await handlePrevious();
|
|
} else {
|
|
setAsset(assets[currentViewAssetIndex]);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
|
|
const assetMouseEventHandler = (asset: AssetResponseDto | null) => {
|
|
if (assetInteraction.selectionActive) {
|
|
handleSelectAssetCandidates(asset);
|
|
}
|
|
};
|
|
|
|
const assetOnFocusHandler = (asset: AssetResponseDto) => {
|
|
assetInteraction.focussedAssetId = asset.id;
|
|
};
|
|
|
|
let isTrashEnabled = $derived($featureFlags.loaded && $featureFlags.trash);
|
|
let idsSelectedAssets = $derived(assetInteraction.selectedAssets.map(({ id }) => id));
|
|
|
|
$effect(() => {
|
|
if (!lastAssetMouseEvent) {
|
|
assetInteraction.clearAssetSelectionCandidates();
|
|
}
|
|
});
|
|
|
|
$effect(() => {
|
|
if (!shiftKeyIsDown) {
|
|
assetInteraction.clearAssetSelectionCandidates();
|
|
}
|
|
});
|
|
|
|
$effect(() => {
|
|
if (shiftKeyIsDown && lastAssetMouseEvent) {
|
|
selectAssetCandidates(lastAssetMouseEvent);
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<svelte:window
|
|
onkeydown={onKeyDown}
|
|
onkeyup={onKeyUp}
|
|
onselectstart={onSelectStart}
|
|
use:shortcuts={shortcutList}
|
|
onscroll={() => updateSlidingWindow()}
|
|
/>
|
|
|
|
{#if isShowDeleteConfirmation}
|
|
<DeleteAssetDialog
|
|
size={assetInteraction.selectedAssets.length}
|
|
onCancel={() => (isShowDeleteConfirmation = false)}
|
|
onConfirm={() => handlePromiseError(trashOrDelete(true))}
|
|
/>
|
|
{/if}
|
|
|
|
{#if showShortcuts}
|
|
<ShowShortcuts onClose={() => (showShortcuts = !showShortcuts)} />
|
|
{/if}
|
|
|
|
{#if assets.length > 0}
|
|
<div
|
|
style:position="relative"
|
|
style:height={assetLayouts.containerHeight + 'px'}
|
|
style:width={assetLayouts.containerWidth - 1 + 'px'}
|
|
>
|
|
{#each assetLayouts.assetLayout as layout (layout.asset.id)}
|
|
{@const asset = layout.asset}
|
|
|
|
{#if layout.display}
|
|
<div
|
|
class="absolute"
|
|
style:overflow="clip"
|
|
style="width: {layout.width}px; height: {layout.height}px; top: {layout.top}px; left: {layout.left}px"
|
|
title={showAssetName ? asset.originalFileName : ''}
|
|
>
|
|
<Thumbnail
|
|
readonly={disableAssetSelect}
|
|
onClick={(asset) => {
|
|
if (assetInteraction.selectionActive) {
|
|
handleSelectAssets(asset);
|
|
return;
|
|
}
|
|
void viewAssetHandler(asset);
|
|
}}
|
|
onSelect={(asset) => handleSelectAssets(asset)}
|
|
onMouseEvent={() => assetMouseEventHandler(asset)}
|
|
handleFocus={() => assetOnFocusHandler(asset)}
|
|
{showArchiveIcon}
|
|
{asset}
|
|
selected={assetInteraction.hasSelectedAsset(asset.id)}
|
|
selectionCandidate={assetInteraction.hasSelectionCandidate(asset.id)}
|
|
focussed={assetInteraction.isFocussedAsset(asset.id)}
|
|
thumbnailWidth={layout.width}
|
|
thumbnailHeight={layout.height}
|
|
/>
|
|
{#if showAssetName}
|
|
<div
|
|
class="absolute text-center p-1 text-xs font-mono font-semibold w-full bottom-0 bg-gradient-to-t bg-slate-50/75 overflow-clip text-ellipsis whitespace-pre-wrap"
|
|
>
|
|
{asset.originalFileName}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
{/each}
|
|
</div>
|
|
{/if}
|
|
|
|
<!-- Overlay Asset Viewer -->
|
|
{#if $isViewerOpen}
|
|
<Portal target="body">
|
|
<AssetViewer
|
|
asset={$viewingAsset}
|
|
onAction={handleAction}
|
|
onPrevious={handlePrevious}
|
|
onNext={handleNext}
|
|
onRandom={handleRandom}
|
|
onClose={() => {
|
|
assetViewingStore.showAssetViewer(false);
|
|
handlePromiseError(navigate({ targetRoute: 'current', assetId: null }));
|
|
}}
|
|
/>
|
|
</Portal>
|
|
{/if}
|