INIT
This commit is contained in:
+50
@@ -0,0 +1,50 @@
|
||||
<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}
|
||||
Reference in New Issue
Block a user