mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
* chore(web): automatically generate unique IDs * fix: revert changes to Slider * chore: add test for id store
63 lines
2.2 KiB
Svelte
63 lines
2.2 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';
|
|
|
|
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, 'Unable to update album info');
|
|
} finally {
|
|
isSubmitting = false;
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<FullScreenModal title="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} css="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">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">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?.()}>Cancel</Button>
|
|
<Button type="submit" fullwidth disabled={isSubmitting} form="edit-album-form">OK</Button>
|
|
</svelte:fragment>
|
|
</FullScreenModal>
|