53 lines
1.1 KiB
Svelte
53 lines
1.1 KiB
Svelte
<script lang="ts">
|
|
import { boxWith, mergeProps } from "svelte-toolbelt";
|
|
import type { TabsRootProps } from "../types.js";
|
|
import { TabsRootState } from "../tabs.svelte.js";
|
|
import { createId } from "../../../internal/create-id.js";
|
|
import { noop } from "../../../internal/noop.js";
|
|
|
|
const uid = $props.id();
|
|
|
|
let {
|
|
id = createId(uid),
|
|
ref = $bindable(null),
|
|
value = $bindable(""),
|
|
onValueChange = noop,
|
|
orientation = "horizontal",
|
|
loop = true,
|
|
activationMode = "automatic",
|
|
disabled = false,
|
|
children,
|
|
child,
|
|
...restProps
|
|
}: TabsRootProps = $props();
|
|
|
|
const rootState = TabsRootState.create({
|
|
id: boxWith(() => id),
|
|
value: boxWith(
|
|
() => value,
|
|
(v) => {
|
|
value = v;
|
|
onValueChange(v);
|
|
}
|
|
),
|
|
orientation: boxWith(() => orientation),
|
|
loop: boxWith(() => loop),
|
|
activationMode: boxWith(() => activationMode),
|
|
disabled: boxWith(() => disabled),
|
|
ref: boxWith(
|
|
() => ref,
|
|
(v) => (ref = v)
|
|
),
|
|
});
|
|
|
|
const mergedProps = $derived(mergeProps(restProps, rootState.props));
|
|
</script>
|
|
|
|
{#if child}
|
|
{@render child({ props: mergedProps })}
|
|
{:else}
|
|
<div {...mergedProps}>
|
|
{@render children?.()}
|
|
</div>
|
|
{/if}
|