56 lines
1.5 KiB
Svelte
56 lines
1.5 KiB
Svelte
<script lang="ts" context="module">
|
|
type TListboxLabelProps<
|
|
TSlotProps extends {},
|
|
TAsProp extends SupportedAs
|
|
> = TPassThroughProps<TSlotProps, TAsProp, "label"> & {};
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import { ListboxStates, useListboxContext } from "./Listbox.svelte";
|
|
import { useId } from "$lib/hooks/use-id";
|
|
import Render, { type TPassThroughProps } from "$lib/utils/Render.svelte";
|
|
import { forwardEventsBuilder } from "$lib/internal/forwardEventsBuilder";
|
|
import type { SupportedAs } from "$lib/internal/elements";
|
|
import type { HTMLActionArray } from "$lib/hooks/use-actions";
|
|
import { get_current_component } from "svelte/internal";
|
|
|
|
/***** Props *****/
|
|
type TAsProp = $$Generic<SupportedAs>;
|
|
type $$Props = TListboxLabelProps<typeof slotProps, TAsProp>;
|
|
|
|
export let as: SupportedAs = "label";
|
|
export let use: HTMLActionArray = [];
|
|
|
|
/***** Events *****/
|
|
const forwardEvents = forwardEventsBuilder(get_current_component());
|
|
|
|
/***** Component *****/
|
|
let id = `headlessui-listbox-label-${useId()}`;
|
|
let api = useListboxContext("ListboxLabel");
|
|
|
|
let labelRef = $api.labelRef;
|
|
let buttonRef = $api.buttonRef;
|
|
|
|
function handleClick(): void {
|
|
$buttonRef?.focus({ preventScroll: true });
|
|
}
|
|
|
|
$: slotProps = {
|
|
open: $api.listboxState === ListboxStates.Open,
|
|
disabled: $api.disabled,
|
|
};
|
|
</script>
|
|
|
|
<Render
|
|
{...$$restProps}
|
|
{id}
|
|
{as}
|
|
{slotProps}
|
|
use={[...use, forwardEvents]}
|
|
name={"ListboxLabel"}
|
|
bind:el={$labelRef}
|
|
on:click={handleClick}
|
|
>
|
|
<slot {...slotProps} />
|
|
</Render>
|