Files
eewing cf73cd3b4c INIT
2026-02-17 14:10:16 -06:00

51 lines
1.1 KiB
Svelte

<script lang="ts">
import { boxWith, mergeProps } from "svelte-toolbelt";
import type { SliderThumbLabelProps } from "../types.js";
import { SliderRootContext, SliderThumbLabelState } from "../slider.svelte.js";
import { createId } from "../../../internal/create-id.js";
const uid = $props.id();
let {
children,
child,
ref = $bindable(null),
id = createId(uid),
index,
position: positionProp,
...restProps
}: SliderThumbLabelProps = $props();
const root = SliderRootContext.get();
const position = $derived.by(() => {
if (positionProp !== undefined) return positionProp;
switch (root.direction) {
case "lr":
case "rl":
return "top";
case "tb":
case "bt":
return "left";
}
});
const tickLabelState = SliderThumbLabelState.create({
id: boxWith(() => id),
ref: boxWith(
() => ref,
(v) => (ref = v)
),
index: boxWith(() => index),
position: boxWith(() => position),
});
const mergedProps = $derived(mergeProps(restProps, tickLabelState.props));
</script>
{#if child}
{@render child({ props: mergedProps })}
{:else}
<span {...mergedProps}>{@render children?.()}</span>
{/if}