mirror of
https://github.com/immich-app/immich.git
synced 2026-03-26 11:50:53 +03:00
51 lines
1.3 KiB
Svelte
51 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
import { shortcut } from '$lib/actions/shortcut';
|
|
import { eventManager } from '$lib/managers/event-manager.svelte';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import { updateAlbumInfo } from '@immich/sdk';
|
|
import { Textarea } from '@immich/ui';
|
|
import { t } from 'svelte-i18n';
|
|
import { fromAction } from 'svelte/attachments';
|
|
|
|
interface Props {
|
|
id: string;
|
|
description: string;
|
|
isOwned: boolean;
|
|
}
|
|
|
|
let { id, description = $bindable(), isOwned }: Props = $props();
|
|
|
|
const handleFocusOut = async () => {
|
|
try {
|
|
const response = await updateAlbumInfo({
|
|
id,
|
|
updateAlbumDto: {
|
|
description,
|
|
},
|
|
});
|
|
eventManager.emit('AlbumUpdate', response);
|
|
} catch (error) {
|
|
handleError(error, $t('errors.unable_to_save_album'));
|
|
}
|
|
};
|
|
</script>
|
|
|
|
{#if isOwned}
|
|
<Textarea
|
|
bind:value={description}
|
|
variant="ghost"
|
|
onfocusout={handleFocusOut}
|
|
placeholder={$t('add_a_description')}
|
|
data-testid="autogrow-textarea"
|
|
class="max-h-32"
|
|
{@attach fromAction(shortcut, () => ({
|
|
shortcut: { key: 'Enter', ctrl: true },
|
|
onShortcut: (e) => e.currentTarget.blur(),
|
|
}))}
|
|
/>
|
|
{:else if description}
|
|
<p class="wrap-break-words whitespace-pre-line w-full text-black dark:text-white text-base">
|
|
{description}
|
|
</p>
|
|
{/if}
|