mirror of
https://github.com/immich-app/immich.git
synced 2025-12-18 01:11:07 +03:00
62 lines
2.0 KiB
Svelte
62 lines
2.0 KiB
Svelte
<script lang="ts">
|
|
import MenuOption from '$lib/components/shared-components/context-menu/menu-option.svelte';
|
|
|
|
import { AssetAction } from '$lib/constants';
|
|
import { modalManager } from '$lib/managers/modal-manager.svelte';
|
|
import type { TimelineAsset } from '$lib/stores/assets-store.svelte';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { AssetVisibility, updateAssets } from '@immich/sdk';
|
|
import { mdiLockOpenVariantOutline, mdiLockOutline } from '@mdi/js';
|
|
import { t } from 'svelte-i18n';
|
|
import type { OnAction, PreAction } from './action';
|
|
|
|
interface Props {
|
|
asset: TimelineAsset;
|
|
onAction: OnAction;
|
|
preAction: PreAction;
|
|
}
|
|
|
|
let { asset, onAction, preAction }: Props = $props();
|
|
const isLocked = asset.visibility === AssetVisibility.Locked;
|
|
|
|
const toggleLockedVisibility = async () => {
|
|
const isConfirmed = await modalManager.showDialog({
|
|
title: isLocked ? $t('remove_from_locked_folder') : $t('move_to_locked_folder'),
|
|
prompt: isLocked ? $t('remove_from_locked_folder_confirmation') : $t('move_to_locked_folder_confirmation'),
|
|
confirmText: $t('move'),
|
|
confirmColor: isLocked ? 'danger' : 'primary',
|
|
});
|
|
|
|
if (!isConfirmed) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
preAction({
|
|
type: isLocked ? AssetAction.SET_VISIBILITY_TIMELINE : AssetAction.SET_VISIBILITY_LOCKED,
|
|
asset,
|
|
});
|
|
|
|
await updateAssets({
|
|
assetBulkUpdateDto: {
|
|
ids: [asset.id],
|
|
visibility: isLocked ? AssetVisibility.Timeline : AssetVisibility.Locked,
|
|
},
|
|
});
|
|
|
|
onAction({
|
|
type: isLocked ? AssetAction.SET_VISIBILITY_TIMELINE : AssetAction.SET_VISIBILITY_LOCKED,
|
|
asset,
|
|
});
|
|
} catch (error) {
|
|
handleError(error, $t('errors.unable_to_save_settings'));
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<MenuOption
|
|
onClick={() => toggleLockedVisibility()}
|
|
text={isLocked ? $t('move_off_locked_folder') : $t('add_to_locked_folder')}
|
|
icon={isLocked ? mdiLockOpenVariantOutline : mdiLockOutline}
|
|
/>
|