mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
68 lines
2 KiB
Svelte
68 lines
2 KiB
Svelte
<script lang="ts">
|
|
import CircleIconButton from '$lib/components/elements/buttons/circle-icon-button.svelte';
|
|
import {
|
|
NotificationType,
|
|
notificationController,
|
|
} from '$lib/components/shared-components/notification/notification';
|
|
import type { OnArchive } from '$lib/utils/actions';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { updateAssets } from '@immich/sdk';
|
|
import { mdiArchiveArrowDownOutline, mdiArchiveArrowUpOutline, mdiTimerSand } from '@mdi/js';
|
|
import MenuOption from '../../shared-components/context-menu/menu-option.svelte';
|
|
import { getAssetControlContext } from '../asset-select-control-bar.svelte';
|
|
|
|
export let onArchive: OnArchive;
|
|
|
|
export let menuItem = false;
|
|
export let unarchive = false;
|
|
|
|
$: text = unarchive ? 'Unarchive' : 'Archive';
|
|
$: icon = unarchive ? mdiArchiveArrowUpOutline : mdiArchiveArrowDownOutline;
|
|
|
|
let loading = false;
|
|
|
|
const { clearSelect, getOwnedAssets } = getAssetControlContext();
|
|
|
|
const handleArchive = async () => {
|
|
const isArchived = !unarchive;
|
|
loading = true;
|
|
|
|
try {
|
|
const assets = [...getOwnedAssets()].filter((asset) => asset.isArchived !== isArchived);
|
|
const ids = assets.map(({ id }) => id);
|
|
|
|
if (ids.length > 0) {
|
|
await updateAssets({ assetBulkUpdateDto: { ids, isArchived } });
|
|
}
|
|
|
|
for (const asset of assets) {
|
|
asset.isArchived = isArchived;
|
|
}
|
|
|
|
onArchive(ids, isArchived);
|
|
|
|
notificationController.show({
|
|
message: `${isArchived ? 'Archived' : 'Unarchived'} ${ids.length}`,
|
|
type: NotificationType.Info,
|
|
});
|
|
|
|
clearSelect();
|
|
} catch (error) {
|
|
handleError(error, `Unable to ${isArchived ? 'archive' : 'unarchive'}`);
|
|
} finally {
|
|
loading = false;
|
|
}
|
|
};
|
|
</script>
|
|
|
|
{#if menuItem}
|
|
<MenuOption {text} on:click={handleArchive} />
|
|
{/if}
|
|
|
|
{#if !menuItem}
|
|
{#if loading}
|
|
<CircleIconButton title="Loading" icon={mdiTimerSand} />
|
|
{:else}
|
|
<CircleIconButton title={text} {icon} on:click={handleArchive} />
|
|
{/if}
|
|
{/if}
|