mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
42 lines
1.1 KiB
Svelte
42 lines
1.1 KiB
Svelte
<script lang="ts">
|
|
import { PersonResponseDto, api } from '@api';
|
|
import { createEventDispatcher } from 'svelte';
|
|
import ImageThumbnail from '../assets/thumbnail/image-thumbnail.svelte';
|
|
import Button from '../elements/buttons/button.svelte';
|
|
|
|
export let person: PersonResponseDto;
|
|
let name = person.name;
|
|
|
|
const dispatch = createEventDispatcher<{ change: string }>();
|
|
const handleNameChange = () => dispatch('change', name);
|
|
</script>
|
|
|
|
<div
|
|
class="flex place-items-center max-w-lg rounded-lg border dark:border-transparent p-2 bg-gray-100 dark:bg-gray-700"
|
|
>
|
|
<ImageThumbnail
|
|
circle
|
|
shadow
|
|
url={api.getPeopleThumbnailUrl(person.id)}
|
|
altText={person.name}
|
|
widthStyle="2rem"
|
|
heightStyle="2rem"
|
|
/>
|
|
<form
|
|
class="ml-4 flex justify-between w-full gap-16"
|
|
autocomplete="off"
|
|
on:submit|preventDefault={handleNameChange}
|
|
>
|
|
<!-- svelte-ignore a11y-autofocus -->
|
|
<input
|
|
autofocus
|
|
class="gap-2 w-full bg-gray-100 dark:bg-gray-700 dark:text-white"
|
|
type="text"
|
|
placeholder="New name or nickname"
|
|
required
|
|
bind:value={name}
|
|
on:blur
|
|
/>
|
|
<Button size="sm" type="submit">Done</Button>
|
|
</form>
|
|
</div>
|