INIT
This commit is contained in:
+43
@@ -0,0 +1,43 @@
|
||||
<script lang="ts">
|
||||
import { boxWith, mergeProps } from "svelte-toolbelt";
|
||||
import type { SliderThumbProps } from "../types.js";
|
||||
import { SliderThumbState } 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,
|
||||
disabled = false,
|
||||
...restProps
|
||||
}: SliderThumbProps = $props();
|
||||
|
||||
const thumbState = SliderThumbState.create({
|
||||
id: boxWith(() => id),
|
||||
ref: boxWith(
|
||||
() => ref,
|
||||
(v) => (ref = v)
|
||||
),
|
||||
index: boxWith(() => index),
|
||||
disabled: boxWith(() => disabled),
|
||||
});
|
||||
|
||||
const mergedProps = $derived(mergeProps(restProps, thumbState.props));
|
||||
</script>
|
||||
|
||||
{#if child}
|
||||
{@render child({
|
||||
active: thumbState.root.isThumbActive(thumbState.opts.index.current),
|
||||
props: mergedProps,
|
||||
})}
|
||||
{:else}
|
||||
<span {...mergedProps}>
|
||||
{@render children?.({
|
||||
active: thumbState.root.isThumbActive(thumbState.opts.index.current),
|
||||
})}
|
||||
</span>
|
||||
{/if}
|
||||
Reference in New Issue
Block a user