mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
48 lines
1.4 KiB
Svelte
48 lines
1.4 KiB
Svelte
<script lang="ts">
|
|
import Button from '../elements/buttons/button.svelte';
|
|
import FullScreenModal from '../shared-components/full-screen-modal.svelte';
|
|
import { mdiCake } from '@mdi/js';
|
|
import DateInput from '../elements/date-input.svelte';
|
|
import { t } from 'svelte-i18n';
|
|
|
|
interface Props {
|
|
birthDate: string;
|
|
onClose: () => void;
|
|
onUpdate: (birthDate: string) => void;
|
|
}
|
|
|
|
let { birthDate = $bindable(), onClose, onUpdate }: Props = $props();
|
|
|
|
const todayFormatted = new Date().toISOString().split('T')[0];
|
|
|
|
const onSubmit = (event: Event) => {
|
|
event.preventDefault();
|
|
onUpdate(birthDate);
|
|
};
|
|
</script>
|
|
|
|
<FullScreenModal title={$t('set_date_of_birth')} icon={mdiCake} {onClose}>
|
|
<div class="text-immich-primary dark:text-immich-dark-primary">
|
|
<p class="text-sm dark:text-immich-dark-fg">
|
|
{$t('birthdate_set_description')}
|
|
</p>
|
|
</div>
|
|
|
|
<form onsubmit={(e) => onSubmit(e)} autocomplete="off" id="set-birth-date-form">
|
|
<div class="my-4 flex flex-col gap-2">
|
|
<DateInput
|
|
class="immich-form-input"
|
|
id="birthDate"
|
|
name="birthDate"
|
|
type="date"
|
|
bind:value={birthDate}
|
|
max={todayFormatted}
|
|
/>
|
|
</div>
|
|
</form>
|
|
|
|
{#snippet stickyBottom()}
|
|
<Button color="gray" fullwidth onclick={onClose}>{$t('cancel')}</Button>
|
|
<Button type="submit" fullwidth form="set-birth-date-form">{$t('set')}</Button>
|
|
{/snippet}
|
|
</FullScreenModal>
|