Files
eewing cf73cd3b4c INIT
2026-02-17 14:10:16 -06:00

189 lines
5.0 KiB
Svelte

<script lang="ts">
import { boxWith, mergeProps } from "svelte-toolbelt";
import type { MenuSubContentProps } from "../types.js";
import { MenuOpenEvent, MenuContentState } from "../menu.svelte.js";
import { SUB_CLOSE_KEYS } from "../utils.js";
import { createId } from "../../../internal/create-id.js";
import PopperLayer from "../../utilities/popper-layer/popper-layer.svelte";
import { noop } from "../../../internal/noop.js";
import { isHTMLElement } from "../../../internal/is.js";
import { getFloatingContentCSSVars } from "../../../internal/floating-svelte/floating-utils.svelte.js";
import PopperLayerForceMount from "../../utilities/popper-layer/popper-layer-force-mount.svelte";
const uid = $props.id();
let {
id = createId(uid),
ref = $bindable(null),
children,
child,
loop = true,
onInteractOutside = noop,
forceMount = false,
onEscapeKeydown = noop,
interactOutsideBehavior = "defer-otherwise-close",
escapeKeydownBehavior = "defer-otherwise-close",
onOpenAutoFocus: onOpenAutoFocusProp = noop,
onCloseAutoFocus: onCloseAutoFocusProp = noop,
onFocusOutside = noop,
side = "right",
trapFocus = false,
style,
...restProps
}: MenuSubContentProps = $props();
const subContentState = MenuContentState.create({
id: boxWith(() => id),
loop: boxWith(() => loop),
ref: boxWith(
() => ref,
(v) => (ref = v)
),
isSub: true,
onCloseAutoFocus: boxWith(() => handleCloseAutoFocus),
});
function onkeydown(e: KeyboardEvent) {
const isKeyDownInside = (e.currentTarget as HTMLElement).contains(e.target as HTMLElement);
const isCloseKey = SUB_CLOSE_KEYS[
subContentState.parentMenu.root.opts.dir.current
].includes(e.key);
if (isKeyDownInside && isCloseKey) {
subContentState.parentMenu.onClose();
const triggerNode = subContentState.parentMenu.triggerNode;
triggerNode?.focus();
e.preventDefault();
}
}
const dataAttr = $derived(subContentState.parentMenu.root.getBitsAttr("sub-content"));
const mergedProps = $derived(
mergeProps(restProps, subContentState.props, {
side,
onkeydown,
[dataAttr]: "",
})
);
function handleOpenAutoFocus(e: Event) {
onOpenAutoFocusProp(e);
if (e.defaultPrevented) return;
e.preventDefault();
if (
subContentState.parentMenu.root.isUsingKeyboard &&
subContentState.parentMenu.contentNode
) {
MenuOpenEvent.dispatch(subContentState.parentMenu.contentNode);
}
}
function handleCloseAutoFocus(e: Event) {
onCloseAutoFocusProp(e);
if (e.defaultPrevented) return;
e.preventDefault();
}
function handleInteractOutside(e: PointerEvent) {
onInteractOutside(e);
if (e.defaultPrevented) return;
subContentState.parentMenu.onClose();
}
function handleEscapeKeydown(e: KeyboardEvent) {
onEscapeKeydown(e);
if (e.defaultPrevented) return;
subContentState.parentMenu.onClose();
}
function handleOnFocusOutside(e: FocusEvent) {
onFocusOutside(e);
if (e.defaultPrevented) return;
// We prevent closing when the trigger is focused to avoid triggering a re-open animation
// on pointer interaction.
if (!isHTMLElement(e.target)) return;
if (e.target.id !== subContentState.parentMenu.triggerNode?.id) {
subContentState.parentMenu.onClose();
}
}
</script>
{#if forceMount}
<PopperLayerForceMount
{...mergedProps}
ref={subContentState.opts.ref}
{interactOutsideBehavior}
{escapeKeydownBehavior}
onOpenAutoFocus={handleOpenAutoFocus}
enabled={subContentState.parentMenu.opts.open.current}
onInteractOutside={handleInteractOutside}
onEscapeKeydown={handleEscapeKeydown}
onFocusOutside={handleOnFocusOutside}
preventScroll={false}
{loop}
{trapFocus}
shouldRender={subContentState.shouldRender}
>
{#snippet popper({ props, wrapperProps })}
{@const finalProps = mergeProps(
props,
mergedProps,
{ style: getFloatingContentCSSVars("menu") },
{ style }
)}
{#if child}
{@render child({
props: finalProps,
wrapperProps,
...subContentState.snippetProps,
})}
{:else}
<div {...wrapperProps}>
<div {...finalProps}>
{@render children?.()}
</div>
</div>
{/if}
{/snippet}
</PopperLayerForceMount>
{:else if !forceMount}
<PopperLayer
{...mergedProps}
ref={subContentState.opts.ref}
{interactOutsideBehavior}
{escapeKeydownBehavior}
onCloseAutoFocus={handleCloseAutoFocus}
onOpenAutoFocus={handleOpenAutoFocus}
open={subContentState.parentMenu.opts.open.current}
onInteractOutside={handleInteractOutside}
onEscapeKeydown={handleEscapeKeydown}
onFocusOutside={handleOnFocusOutside}
preventScroll={false}
{loop}
{trapFocus}
shouldRender={subContentState.shouldRender}
>
{#snippet popper({ props, wrapperProps })}
{@const finalProps = mergeProps(
props,
mergedProps,
{ style: getFloatingContentCSSVars("menu") },
{ style }
)}
{#if child}
{@render child({
props: finalProps,
wrapperProps,
...subContentState.snippetProps,
})}
{:else}
<div {...wrapperProps}>
<div {...finalProps}>
{@render children?.()}
</div>
</div>
{/if}
{/snippet}
</PopperLayer>
{/if}