5cd13227ad
* feat: server changes for album timeline * feat(web): album timeline view * chore: open api * chore: remove archive action * fix: favorite for non-owners
73 lines
2.3 KiB
Svelte
73 lines
2.3 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 { AlbumResponseDto, api } from '@api';
|
|
import DeleteOutline from 'svelte-material-icons/DeleteOutline.svelte';
|
|
import { getAssetControlContext } from '../asset-select-control-bar.svelte';
|
|
import ConfirmDialogue from '$lib/components/shared-components/confirm-dialogue.svelte';
|
|
|
|
export let album: AlbumResponseDto;
|
|
export let onRemove: ((assetIds: string[]) => void) | undefined = undefined;
|
|
|
|
const { getAssets, clearSelect } = getAssetControlContext();
|
|
|
|
let isShowConfirmation = false;
|
|
|
|
const removeFromAlbum = async () => {
|
|
try {
|
|
const ids = Array.from(getAssets()).map((a) => a.id);
|
|
const { data: results } = await api.albumApi.removeAssetFromAlbum({
|
|
id: album.id,
|
|
bulkIdsDto: { ids },
|
|
});
|
|
|
|
const { data } = await api.albumApi.getAlbumInfo({ id: album.id });
|
|
album = data;
|
|
|
|
onRemove?.(ids);
|
|
|
|
const count = results.filter(({ success }) => success).length;
|
|
notificationController.show({
|
|
type: NotificationType.Info,
|
|
message: `Removed ${count} asset${count === 1 ? '' : 's'}`,
|
|
});
|
|
|
|
clearSelect();
|
|
} catch (e) {
|
|
console.error('Error [album-viewer] [removeAssetFromAlbum]', e);
|
|
notificationController.show({
|
|
type: NotificationType.Error,
|
|
message: 'Error removing assets from album, check console for more details',
|
|
});
|
|
} finally {
|
|
isShowConfirmation = false;
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<CircleIconButton title="Remove from album" on:click={() => (isShowConfirmation = true)} logo={DeleteOutline} />
|
|
|
|
{#if isShowConfirmation}
|
|
<ConfirmDialogue
|
|
title="Remove Asset{getAssets().size > 1 ? 's' : ''}"
|
|
confirmText="Remove"
|
|
on:confirm={removeFromAlbum}
|
|
on:cancel={() => (isShowConfirmation = false)}
|
|
>
|
|
<svelte:fragment slot="prompt">
|
|
<p>
|
|
Are you sure you want to remove
|
|
{#if getAssets().size > 1}
|
|
these <b>{getAssets().size}</b> assets
|
|
{:else}
|
|
this asset
|
|
{/if}
|
|
from the album?
|
|
</p>
|
|
</svelte:fragment>
|
|
</ConfirmDialogue>
|
|
{/if}
|