INIT
This commit is contained in:
+44
@@ -0,0 +1,44 @@
|
||||
<script lang="ts">
|
||||
import { boxWith, mergeProps } from "svelte-toolbelt";
|
||||
import type { MenuSubTriggerProps } from "../types.js";
|
||||
import { MenuSubTriggerState } from "../menu.svelte.js";
|
||||
import FloatingLayerAnchor from "../../utilities/floating-layer/components/floating-layer-anchor.svelte";
|
||||
import { noop } from "../../../internal/noop.js";
|
||||
import { createId } from "../../../internal/create-id.js";
|
||||
|
||||
const uid = $props.id();
|
||||
|
||||
let {
|
||||
id = createId(uid),
|
||||
disabled = false,
|
||||
ref = $bindable(null),
|
||||
children,
|
||||
child,
|
||||
onSelect = noop,
|
||||
openDelay = 100,
|
||||
...restProps
|
||||
}: MenuSubTriggerProps = $props();
|
||||
|
||||
const subTriggerState = MenuSubTriggerState.create({
|
||||
disabled: boxWith(() => disabled),
|
||||
onSelect: boxWith(() => onSelect),
|
||||
id: boxWith(() => id),
|
||||
ref: boxWith(
|
||||
() => ref,
|
||||
(v) => (ref = v)
|
||||
),
|
||||
openDelay: boxWith(() => openDelay),
|
||||
});
|
||||
|
||||
const mergedProps = $derived(mergeProps(restProps, subTriggerState.props));
|
||||
</script>
|
||||
|
||||
<FloatingLayerAnchor {id} ref={subTriggerState.opts.ref}>
|
||||
{#if child}
|
||||
{@render child({ props: mergedProps })}
|
||||
{:else}
|
||||
<div {...mergedProps}>
|
||||
{@render children?.()}
|
||||
</div>
|
||||
{/if}
|
||||
</FloatingLayerAnchor>
|
||||
Reference in New Issue
Block a user