55 lines
1.4 KiB
Svelte
55 lines
1.4 KiB
Svelte
<script lang="ts">
|
|
import { boxWith, mergeProps } from "svelte-toolbelt";
|
|
import type { CalendarMonthSelectProps } from "../types.js";
|
|
import { CalendarMonthSelectState } from "../calendar.svelte.js";
|
|
import { createId } from "../../../internal/create-id.js";
|
|
|
|
const uid = $props.id();
|
|
|
|
let {
|
|
children,
|
|
child,
|
|
ref = $bindable(null),
|
|
id = createId(uid),
|
|
months = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12],
|
|
monthFormat = "long",
|
|
disabled = false,
|
|
"aria-label": ariaLabel = "Select a month",
|
|
...restProps
|
|
}: CalendarMonthSelectProps = $props();
|
|
|
|
const monthSelectState = CalendarMonthSelectState.create({
|
|
id: boxWith(() => id),
|
|
ref: boxWith(
|
|
() => ref,
|
|
(v) => (ref = v)
|
|
),
|
|
months: boxWith(() => months),
|
|
monthFormat: boxWith(() => monthFormat),
|
|
disabled: boxWith(() => Boolean(disabled)),
|
|
});
|
|
|
|
const mergedProps = $derived(
|
|
mergeProps(restProps, monthSelectState.props, { "aria-label": ariaLabel })
|
|
);
|
|
</script>
|
|
|
|
{#if child}
|
|
{@render child({ props: mergedProps, ...monthSelectState.snippetProps })}
|
|
{:else}
|
|
<select {...mergedProps}>
|
|
{#if children}
|
|
{@render children?.(monthSelectState.snippetProps)}
|
|
{:else}
|
|
{#each monthSelectState.monthItems as month (month.value)}
|
|
<option
|
|
value={month.value}
|
|
selected={month.value === monthSelectState.currentMonth}
|
|
>
|
|
{month.label}
|
|
</option>
|
|
{/each}
|
|
{/if}
|
|
</select>
|
|
{/if}
|