Files
gpx.studio/website/src/lib/components/ui/date-picker/DatePicker.svelte
2025-10-24 20:07:15 +02:00

51 lines
1.6 KiB
Svelte

<script lang="ts">
import CalendarIcon from '@lucide/svelte/icons/calendar';
import { DateFormatter, type DateValue, getLocalTimeZone } from '@internationalized/date';
import { cn } from '$lib/utils.js';
import { buttonVariants } from '$lib/components/ui/button/index.js';
import { Calendar } from '$lib/components/ui/calendar/index.js';
import * as Popover from '$lib/components/ui/popover/index.js';
let {
value = $bindable<DateValue | undefined>(),
placeholder = 'Pick a date',
disabled = false,
locale,
class: className = '',
onchange = () => {},
}: {
value?: DateValue;
placeholder?: string;
disabled?: boolean;
locale: string;
class?: string;
onchange?: (date: DateValue | undefined) => void;
} = $props();
const df = new DateFormatter(locale, {
dateStyle: 'long',
});
let contentRef = $state<HTMLElement | null>(null);
</script>
<Popover.Root>
<Popover.Trigger
class={cn(
buttonVariants({
variant: 'outline',
class: 'justify-start text-left font-normal',
}),
!value && 'text-muted-foreground',
className
)}
{disabled}
>
<CalendarIcon />
{value ? df.format(value.toDate(getLocalTimeZone())) : placeholder}
</Popover.Trigger>
<Popover.Content bind:ref={contentRef} class="w-auto p-0">
<Calendar type="single" captionLayout="dropdown" bind:value onValueChange={onchange} />
</Popover.Content>
</Popover.Root>