mirror of
https://github.com/immich-app/immich.git
synced 2025-12-03 11:09:50 +09:00
* chore(web): another missing translations * unused removed * more keys * lint fix * test fixed * dynamic translation fix * fixes * people search translation * params fixed * keep filter setting fix * lint fix * $t fixes * Update web/src/lib/i18n/en.json Co-authored-by: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com> * another missing * activity translation * link sharing translations * expiration dropdown fix - didn't work localized * notification title * device logout * search results * reset to default * unsaved change * select from computer * selected * select-2 * select-3 * unmerge * pluralize, force icu message * Update web/src/lib/components/asset-viewer/asset-viewer.svelte Co-authored-by: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com> * review fixes * remove user * plural fixes * ffmpeg settings * fixes * error title * plural fixes * onboarding * change password * more more * console log fix * another * api key desc * map marker * format fix * key fix * asset-utils * utils * misc --------- Co-authored-by: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com>
65 lines
2.3 KiB
Svelte
65 lines
2.3 KiB
Svelte
<script lang="ts">
|
|
import { updateAlbumInfo, type AlbumResponseDto } from '@immich/sdk';
|
|
import { handleError } from '$lib/utils/handle-error';
|
|
import Button from '$lib/components/elements/buttons/button.svelte';
|
|
import AlbumCover from '$lib/components/album-page/album-cover.svelte';
|
|
import FullScreenModal from '$lib/components/shared-components/full-screen-modal.svelte';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
export let album: AlbumResponseDto;
|
|
export let onEditSuccess: ((album: AlbumResponseDto) => unknown) | undefined = undefined;
|
|
export let onCancel: (() => unknown) | undefined = undefined;
|
|
export let onClose: () => void;
|
|
|
|
let albumName = album.albumName;
|
|
let description = album.description;
|
|
|
|
let isSubmitting = false;
|
|
|
|
const handleUpdateAlbumInfo = async () => {
|
|
isSubmitting = true;
|
|
try {
|
|
await updateAlbumInfo({
|
|
id: album.id,
|
|
updateAlbumDto: {
|
|
albumName,
|
|
description,
|
|
},
|
|
});
|
|
album.albumName = albumName;
|
|
album.description = description;
|
|
onEditSuccess?.(album);
|
|
} catch (error) {
|
|
handleError(error, $t('errors.unable_to_update_album_info'));
|
|
} finally {
|
|
isSubmitting = false;
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<FullScreenModal title={$t('edit_album')} width="wide" {onClose}>
|
|
<form on:submit|preventDefault={handleUpdateAlbumInfo} autocomplete="off" id="edit-album-form">
|
|
<div class="flex items-center">
|
|
<div class="hidden sm:flex">
|
|
<AlbumCover {album} class="h-[200px] w-[200px] m-4 shadow-lg" />
|
|
</div>
|
|
|
|
<div class="flex-grow">
|
|
<div class="m-4 flex flex-col gap-2">
|
|
<label class="immich-form-label" for="name">{$t('name')}</label>
|
|
<input class="immich-form-input" id="name" type="text" bind:value={albumName} />
|
|
</div>
|
|
|
|
<div class="m-4 flex flex-col gap-2">
|
|
<label class="immich-form-label" for="description">{$t('description')}</label>
|
|
<textarea class="immich-form-input" id="description" bind:value={description} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<svelte:fragment slot="sticky-bottom">
|
|
<Button color="gray" fullwidth on:click={() => onCancel?.()}>{$t('cancel')}</Button>
|
|
<Button type="submit" fullwidth disabled={isSubmitting} form="edit-album-form">{$t('ok')}</Button>
|
|
</svelte:fragment>
|
|
</FullScreenModal>
|