4a8887f37b
* refactor(server): delete assets endpoint * fix: formatting * chore: cleanup * chore: open api * chore(mobile): replace DeleteAssetDTO with BulkIdsDTOs * feat: trash an asset * chore(server): formatting * chore: open api * chore: wording * chore: open-api * feat(server): add withDeleted to getAssets queries * WIP: mobile-recycle-bin * feat(server): recycle-bin to system config * feat(web): use recycle-bin system config * chore(server): domain assetcore removed * chore(server): rename recycle-bin to trash * chore(web): rename recycle-bin to trash * chore(server): always send soft deleted assets for getAllByUserId * chore(web): formatting * feat(server): permanent delete assets older than trashed period * feat(web): trash empty placeholder image * feat(server): empty trash * feat(web): empty trash * WIP: mobile-recycle-bin * refactor(server): empty / restore trash to separate endpoint * test(server): handle failures * test(server): fix e2e server-info test * test(server): deletion test refactor * feat(mobile): use map settings from server-config to enable / disable map * feat(mobile): trash asset * fix(server): operations on assets in trash * feat(web): show trash statistics * fix(web): handle trash enabled * fix(mobile): restore updates from trash * fix(server): ignore trashed assets for person * fix(server): add / remove search index when trashed / restored * chore(web): format * fix(server): asset service test * fix(server): include trashed assts for duplicates from uploads * feat(mobile): no dialog for trash, always dialog for permanent delete * refactor(mobile): use isar where instead of dart filter * refactor(mobile): asset provide - handle deletes in single db txn * chore(mobile): review changes * feat(web): confirmation before empty trash * server: review changes * fix(server): handle library changes * fix: filter external assets from getting trashed / deleted * fix(server): empty-bin * feat: broadcast config update events through ws * change order of trash button on mobile * styling * fix(mobile): do not show trashed toast for local only assets --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com> Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
99 lines
2.9 KiB
Svelte
99 lines
2.9 KiB
Svelte
<script lang="ts">
|
|
import CircleIconButton from '$lib/components/elements/buttons/circle-icon-button.svelte';
|
|
import ConfirmDialogue from '$lib/components/shared-components/confirm-dialogue.svelte';
|
|
import {
|
|
NotificationType,
|
|
notificationController,
|
|
} from '$lib/components/shared-components/notification/notification';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { api } from '@api';
|
|
import DeleteOutline from 'svelte-material-icons/DeleteOutline.svelte';
|
|
import TimerSand from 'svelte-material-icons/TimerSand.svelte';
|
|
|
|
import MenuOption from '../../shared-components/context-menu/menu-option.svelte';
|
|
import { OnAssetDelete, getAssetControlContext } from '../asset-select-control-bar.svelte';
|
|
import { createEventDispatcher } from 'svelte';
|
|
import { featureFlags } from '$lib/stores/server-config.store';
|
|
|
|
export let onAssetDelete: OnAssetDelete;
|
|
export let menuItem = false;
|
|
export let force = !$featureFlags.trash;
|
|
|
|
const { getAssets, clearSelect } = getAssetControlContext();
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
let isShowConfirmation = false;
|
|
let loading = false;
|
|
|
|
const handleTrash = async () => {
|
|
if (force) {
|
|
isShowConfirmation = true;
|
|
return;
|
|
}
|
|
|
|
await handleDelete();
|
|
};
|
|
|
|
const handleDelete = async () => {
|
|
loading = true;
|
|
|
|
try {
|
|
const ids = Array.from(getAssets())
|
|
.filter((a) => !a.isExternal)
|
|
.map((a) => a.id);
|
|
await api.assetApi.deleteAssets({ assetBulkDeleteDto: { ids, force } });
|
|
for (const id of ids) {
|
|
onAssetDelete(id);
|
|
}
|
|
|
|
notificationController.show({
|
|
message: `${force ? 'Permanently deleted' : 'Trashed'} ${ids.length} assets`,
|
|
type: NotificationType.Info,
|
|
});
|
|
|
|
clearSelect();
|
|
} catch (e) {
|
|
handleError(e, 'Error deleting assets');
|
|
} finally {
|
|
isShowConfirmation = false;
|
|
loading = false;
|
|
}
|
|
};
|
|
|
|
const escape = () => {
|
|
dispatch('escape');
|
|
isShowConfirmation = false;
|
|
};
|
|
</script>
|
|
|
|
{#if menuItem}
|
|
<MenuOption text={force ? 'Permanently Delete' : 'Delete'} on:click={handleTrash} />
|
|
{:else if loading}
|
|
<CircleIconButton title="Loading" logo={TimerSand} />
|
|
{:else}
|
|
<CircleIconButton title="Delete" logo={DeleteOutline} on:click={handleTrash} />
|
|
{/if}
|
|
|
|
{#if isShowConfirmation}
|
|
<ConfirmDialogue
|
|
title="Permanently Delete Asset{getAssets().size > 1 ? 's' : ''}"
|
|
confirmText="Delete"
|
|
on:confirm={handleDelete}
|
|
on:cancel={() => (isShowConfirmation = false)}
|
|
on:escape={escape}
|
|
>
|
|
<svelte:fragment slot="prompt">
|
|
<p>
|
|
Are you sure you want to permanently delete
|
|
{#if getAssets().size > 1}
|
|
these <b>{getAssets().size}</b> assets? This will also remove them from their album(s).
|
|
{:else}
|
|
this asset? This will also remove it from its album(s).
|
|
{/if}
|
|
</p>
|
|
<p><b>You cannot undo this action!</b></p>
|
|
</svelte:fragment>
|
|
</ConfirmDialogue>
|
|
{/if}
|