177 lines
4.9 KiB
Svelte
177 lines
4.9 KiB
Svelte
<script lang="ts">
|
|
import { afterTick, boxWith, mergeProps } from "svelte-toolbelt";
|
|
import type { MenuSubContentStaticProps } from "../types.js";
|
|
import { 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,
|
|
trapFocus = false,
|
|
style,
|
|
...restProps
|
|
}: MenuSubContentStaticProps = $props();
|
|
|
|
const subContentState = MenuContentState.create({
|
|
id: boxWith(() => id),
|
|
loop: boxWith(() => loop),
|
|
ref: boxWith(
|
|
() => ref,
|
|
(v) => (ref = v)
|
|
),
|
|
onCloseAutoFocus: boxWith(() => handleCloseAutoFocus),
|
|
isSub: true,
|
|
});
|
|
|
|
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, {
|
|
onkeydown,
|
|
[dataAttr]: "",
|
|
})
|
|
);
|
|
|
|
function handleOpenAutoFocus(e: Event) {
|
|
onOpenAutoFocusProp(e);
|
|
if (e.defaultPrevented) return;
|
|
afterTick(() => {
|
|
e.preventDefault();
|
|
if (subContentState.parentMenu.root.isUsingKeyboard) {
|
|
const subContentEl = subContentState.parentMenu.contentNode;
|
|
subContentEl?.focus();
|
|
}
|
|
});
|
|
}
|
|
|
|
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}
|
|
isStatic
|
|
shouldRender={subContentState.shouldRender}
|
|
>
|
|
{#snippet popper({ props })}
|
|
{@const finalProps = mergeProps(
|
|
props,
|
|
mergedProps,
|
|
{ style: getFloatingContentCSSVars("menu") },
|
|
{ style }
|
|
)}
|
|
{#if child}
|
|
{@render child({ props: finalProps, ...subContentState.snippetProps })}
|
|
{:else}
|
|
<div {...finalProps}>
|
|
{@render children?.()}
|
|
</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}
|
|
isStatic
|
|
shouldRender={subContentState.shouldRender}
|
|
>
|
|
{#snippet popper({ props })}
|
|
{@const finalProps = mergeProps(
|
|
props,
|
|
mergedProps,
|
|
{ style: getFloatingContentCSSVars("menu") },
|
|
{ style }
|
|
)}
|
|
{#if child}
|
|
{@render child({ props: finalProps, ...subContentState.snippetProps })}
|
|
{:else}
|
|
<div {...finalProps}>
|
|
{@render children?.()}
|
|
</div>
|
|
{/if}
|
|
{/snippet}
|
|
</PopperLayer>
|
|
{/if}
|