99 lines
2.1 KiB
Svelte
99 lines
2.1 KiB
Svelte
<script lang="ts">
|
|
import { boxWith, mergeProps } from "svelte-toolbelt";
|
|
import type { MenuCheckboxItemProps } from "../types.js";
|
|
import { MenuCheckboxGroupContext, MenuCheckboxItemState } from "../menu.svelte.js";
|
|
import { createId } from "../../../internal/create-id.js";
|
|
import { noop } from "../../../internal/noop.js";
|
|
import { watch } from "runed";
|
|
|
|
const uid = $props.id();
|
|
|
|
let {
|
|
child,
|
|
children,
|
|
ref = $bindable(null),
|
|
checked = $bindable(false),
|
|
id = createId(uid),
|
|
onCheckedChange = noop,
|
|
disabled = false,
|
|
onSelect = noop,
|
|
closeOnSelect = true,
|
|
indeterminate = $bindable(false),
|
|
onIndeterminateChange = noop,
|
|
value = "",
|
|
...restProps
|
|
}: MenuCheckboxItemProps = $props();
|
|
|
|
const group = MenuCheckboxGroupContext.getOr(null);
|
|
|
|
if (group && value) {
|
|
if (group.opts.value.current.includes(value)) {
|
|
checked = true;
|
|
} else {
|
|
checked = false;
|
|
}
|
|
}
|
|
|
|
watch.pre(
|
|
() => value,
|
|
() => {
|
|
if (group && value) {
|
|
if (group.opts.value.current.includes(value)) {
|
|
checked = true;
|
|
} else {
|
|
checked = false;
|
|
}
|
|
}
|
|
}
|
|
);
|
|
|
|
const checkboxItemState = MenuCheckboxItemState.create(
|
|
{
|
|
checked: boxWith(
|
|
() => checked,
|
|
(v) => {
|
|
if (v !== checked) {
|
|
checked = v;
|
|
onCheckedChange(v);
|
|
}
|
|
}
|
|
),
|
|
id: boxWith(() => id),
|
|
disabled: boxWith(() => disabled),
|
|
onSelect: boxWith(() => handleSelect),
|
|
ref: boxWith(
|
|
() => ref,
|
|
(v) => (ref = v)
|
|
),
|
|
closeOnSelect: boxWith(() => closeOnSelect),
|
|
indeterminate: boxWith(
|
|
() => indeterminate,
|
|
(v) => {
|
|
if (v !== indeterminate) {
|
|
indeterminate = v;
|
|
onIndeterminateChange(v);
|
|
}
|
|
}
|
|
),
|
|
value: boxWith(() => value),
|
|
},
|
|
group
|
|
);
|
|
|
|
function handleSelect(e: Event) {
|
|
onSelect(e);
|
|
if (e.defaultPrevented) return;
|
|
checkboxItemState.toggleChecked();
|
|
}
|
|
|
|
const mergedProps = $derived(mergeProps(restProps, checkboxItemState.props));
|
|
</script>
|
|
|
|
{#if child}
|
|
{@render child({ checked, indeterminate, props: mergedProps })}
|
|
{:else}
|
|
<div {...mergedProps}>
|
|
{@render children?.({ checked, indeterminate })}
|
|
</div>
|
|
{/if}
|