mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
45 lines
1.3 KiB
Svelte
45 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
import {
|
|
NotificationType,
|
|
notificationController,
|
|
} from '$lib/components/shared-components/notification/notification';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { api } from '@api';
|
|
import Icon from '$lib/components/elements/icon.svelte';
|
|
import Button from '../../elements/buttons/button.svelte';
|
|
import { OnRestore, getAssetControlContext } from '../asset-select-control-bar.svelte';
|
|
import { mdiHistory } from '@mdi/js';
|
|
|
|
export let onRestore: OnRestore | undefined = undefined;
|
|
|
|
const { getAssets, clearSelect } = getAssetControlContext();
|
|
|
|
let loading = false;
|
|
|
|
const handleRestore = async () => {
|
|
loading = true;
|
|
|
|
try {
|
|
const ids = Array.from(getAssets()).map((a) => a.id);
|
|
await api.assetApi.restoreAssets({ bulkIdsDto: { ids } });
|
|
onRestore?.(ids);
|
|
|
|
notificationController.show({
|
|
message: `Restored ${ids.length}`,
|
|
type: NotificationType.Info,
|
|
});
|
|
|
|
clearSelect();
|
|
} catch (e) {
|
|
handleError(e, 'Error restoring assets');
|
|
} finally {
|
|
loading = false;
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<Button disabled={loading} size="sm" color="transparent-gray" shadow={false} rounded="lg" on:click={handleRestore}>
|
|
<Icon path={mdiHistory} size="24" />
|
|
<span class="ml-2">Restore</span>
|
|
</Button>
|