mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
57 lines
1.9 KiB
Svelte
57 lines
1.9 KiB
Svelte
<script lang="ts">
|
|
import { Category, category, shortcut, ShortcutVariant } from '$lib/actions/shortcut.svelte';
|
|
import type { OnAction } from '$lib/components/asset-viewer/actions/action';
|
|
import MenuOption from '$lib/components/shared-components/context-menu/menu-option.svelte';
|
|
import { AssetAction } from '$lib/constants';
|
|
import AlbumPickerModal from '$lib/modals/AlbumPickerModal.svelte';
|
|
import { addAssetsToAlbum, addAssetsToAlbums } from '$lib/utils/asset-utils';
|
|
import { toTimelineAsset } from '$lib/utils/timeline-util';
|
|
import type { AssetResponseDto } from '@immich/sdk';
|
|
import { modalManager } from '@immich/ui';
|
|
import { mdiImageAlbum, mdiShareVariantOutline } from '@mdi/js';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
interface Props {
|
|
asset: AssetResponseDto;
|
|
onAction: OnAction;
|
|
shared?: boolean;
|
|
}
|
|
|
|
let { asset, onAction, shared = false }: Props = $props();
|
|
|
|
const onClick = async () => {
|
|
const albums = await modalManager.show(AlbumPickerModal, { shared });
|
|
|
|
if (!albums || albums.length === 0) {
|
|
return;
|
|
}
|
|
|
|
if (albums.length === 1) {
|
|
const album = albums[0];
|
|
await addAssetsToAlbum(album.id, [asset.id]);
|
|
onAction({ type: AssetAction.ADD_TO_ALBUM, asset: toTimelineAsset(asset), album });
|
|
} else {
|
|
await addAssetsToAlbums(
|
|
albums.map((a) => a.id),
|
|
[asset.id],
|
|
);
|
|
onAction({ type: AssetAction.ADD_TO_ALBUM, asset: toTimelineAsset(asset), album: albums[0] });
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<svelte:document
|
|
{@attach shortcut(
|
|
{ key: 'l', shift: shared },
|
|
shared
|
|
? category(Category.AssetActions, $t('add_to_shared_album'), ShortcutVariant.AddSharedAlbum)
|
|
: category(Category.AssetActions, $t('add_to_album'), ShortcutVariant.AddAlbum),
|
|
onClick,
|
|
)}
|
|
/>
|
|
|
|
<MenuOption
|
|
icon={shared ? mdiShareVariantOutline : mdiImageAlbum}
|
|
text={shared ? $t('add_to_shared_album') : $t('add_to_album')}
|
|
{onClick}
|
|
/>
|