mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
* refactor(web): asset select actions * remaining pages/components + data flow changes * fix check
34 lines
1.1 KiB
Svelte
34 lines
1.1 KiB
Svelte
<script lang="ts">
|
|
import CircleIconButton from '$lib/components/elements/buttons/circle-icon-button.svelte';
|
|
import { AssetResponseDto, SharedLinkResponseDto, api } from '@api';
|
|
import DeleteOutline from 'svelte-material-icons/DeleteOutline.svelte';
|
|
import { getAssetControlContext } from '../asset-select-control-bar.svelte';
|
|
|
|
export let sharedLink: SharedLinkResponseDto;
|
|
export let allAssets: AssetResponseDto[];
|
|
|
|
const { getAssets, clearSelect } = getAssetControlContext();
|
|
|
|
const handleRemoveAssetsFromSharedLink = async () => {
|
|
if (window.confirm('Do you want to remove selected assets from the shared link?')) {
|
|
// TODO: Rename API method or change functionality. The assetIds passed
|
|
// in are kept instead of removed.
|
|
const assetsToKeep = allAssets.filter((a) => !getAssets().has(a));
|
|
await api.assetApi.removeAssetsFromSharedLink(
|
|
{
|
|
assetIds: assetsToKeep.map((a) => a.id)
|
|
},
|
|
sharedLink?.key
|
|
);
|
|
|
|
sharedLink.assets = assetsToKeep;
|
|
clearSelect();
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<CircleIconButton
|
|
title="Remove from album"
|
|
on:click={handleRemoveAssetsFromSharedLink}
|
|
logo={DeleteOutline}
|
|
/>
|