Files
eewing ec317eb17c
CI / build (push) Has been skipped
CI / deploy (push) Successful in 1m11s
INIT
2026-02-18 15:17:47 -06:00

73 lines
1.5 KiB
Svelte

<script lang="ts">
import { type WritableBox, boxWith } from "svelte-toolbelt";
import { mergeProps } from "svelte-toolbelt";
import type { ToggleGroupRootProps } from "../types.js";
import { ToggleGroupRootState } from "../toggle-group.svelte.js";
import { createId } from "../../../internal/create-id.js";
import { noop } from "../../../internal/noop.js";
import { watch } from "runed";
const uid = $props.id();
let {
id = createId(uid),
ref = $bindable(null),
value = $bindable(),
onValueChange = noop,
type,
disabled = false,
loop = true,
orientation = "horizontal",
rovingFocus = true,
child,
children,
...restProps
}: ToggleGroupRootProps = $props();
function handleDefaultValue() {
if (value !== undefined) return;
value = type === "single" ? "" : [];
}
// SSR
handleDefaultValue();
watch.pre(
() => value,
() => {
handleDefaultValue();
}
);
const rootState = ToggleGroupRootState.create({
id: boxWith(() => id),
value: boxWith(
() => value!,
(v) => {
value = v;
// @ts-expect-error - we know
onValueChange(v);
}
) as WritableBox<string> | WritableBox<string[]>,
disabled: boxWith(() => disabled),
loop: boxWith(() => loop),
orientation: boxWith(() => orientation),
rovingFocus: boxWith(() => rovingFocus),
type,
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}