INIT
This commit is contained in:
+98
@@ -0,0 +1,98 @@
|
||||
<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}
|
||||
Reference in New Issue
Block a user