mirror of
https://github.com/immich-app/immich.git
synced 2025-12-24 09:14:58 +03:00
38 lines
1.3 KiB
Svelte
38 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
import AssetUpdateDescriptionConfirmModal from '$lib/modals/AssetUpdateDescriptionConfirmModal.svelte';
|
|
import { user } from '$lib/stores/user.store';
|
|
import { getSelectedAssets } from '$lib/utils/asset-utils';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { updateAssets } from '@immich/sdk';
|
|
import { modalManager } from '@immich/ui';
|
|
import { mdiText } from '@mdi/js';
|
|
import { t } from 'svelte-i18n';
|
|
import MenuOption from '../../shared-components/context-menu/menu-option.svelte';
|
|
import { getAssetControlContext } from '../asset-select-control-bar.svelte';
|
|
|
|
interface Props {
|
|
menuItem?: boolean;
|
|
}
|
|
|
|
let { menuItem = false }: Props = $props();
|
|
const { clearSelect, getOwnedAssets } = getAssetControlContext();
|
|
|
|
const handleUpdateDescription = async () => {
|
|
const description = await modalManager.show(AssetUpdateDescriptionConfirmModal);
|
|
if (description) {
|
|
const ids = getSelectedAssets(getOwnedAssets(), $user);
|
|
|
|
try {
|
|
await updateAssets({ assetBulkUpdateDto: { ids, description } });
|
|
} catch (error) {
|
|
handleError(error, $t('errors.unable_to_change_description'));
|
|
}
|
|
clearSelect();
|
|
}
|
|
};
|
|
</script>
|
|
|
|
{#if menuItem}
|
|
<MenuOption text={$t('change_description')} icon={mdiText} onClick={() => handleUpdateDescription()} />
|
|
{/if}
|