Files
Stackq/node_modules/bits-ui/dist/bits/toolbar/components/toolbar-group.svelte
T
eewing cf73cd3b4c INIT
2026-02-17 14:10:16 -06:00

67 lines
1.4 KiB
Svelte

<script lang="ts">
import { type WritableBox, boxWith } from "svelte-toolbelt";
import { mergeProps } from "svelte-toolbelt";
import type { ToolbarGroupProps } from "../types.js";
import { ToolbarGroupState } from "../toolbar.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,
child,
children,
...restProps
}: ToolbarGroupProps = $props();
function handleDefaultValue() {
if (value !== undefined) return;
value = type === "single" ? "" : [];
}
// SSR
handleDefaultValue();
watch.pre(
() => value,
() => {
handleDefaultValue();
}
);
const groupState = ToolbarGroupState.create({
id: boxWith(() => id),
disabled: boxWith(() => disabled),
type,
value: boxWith(
() => value!,
(v) => {
value = v;
// @ts-expect-error - we know
onValueChange(v);
}
) as WritableBox<string> | WritableBox<string[]>,
ref: boxWith(
() => ref,
(v) => (ref = v)
),
});
const mergedProps = $derived(mergeProps(restProps, groupState.props));
</script>
{#if child}
{@render child({ props: mergedProps })}
{:else}
<div {...mergedProps}>
{@render children?.()}
</div>
{/if}