159 lines
5.7 KiB
JavaScript
159 lines
5.7 KiB
JavaScript
import { useForwardExpose } from "../shared/useForwardExpose.js";
|
|
import { Presence_default } from "../Presence/Presence.js";
|
|
import { Primitive } from "../Primitive/Primitive.js";
|
|
import { injectNavigationMenuContext } from "./NavigationMenuRoot.js";
|
|
import { getOpenState, whenMouse } from "./utils.js";
|
|
import { computed, createBlock, createVNode, defineComponent, mergeProps, openBlock, ref, renderSlot, unref, watch, withCtx } from "vue";
|
|
import { useResizeObserver } from "@vueuse/core";
|
|
|
|
//#region src/NavigationMenu/NavigationMenuViewport.vue?vue&type=script&setup=true&lang.ts
|
|
var NavigationMenuViewport_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
|
|
inheritAttrs: false,
|
|
__name: "NavigationMenuViewport",
|
|
props: {
|
|
forceMount: {
|
|
type: Boolean,
|
|
required: false
|
|
},
|
|
align: {
|
|
type: String,
|
|
required: false,
|
|
default: "center"
|
|
},
|
|
asChild: {
|
|
type: Boolean,
|
|
required: false
|
|
},
|
|
as: {
|
|
type: null,
|
|
required: false
|
|
}
|
|
},
|
|
setup(__props) {
|
|
const props = __props;
|
|
const { forwardRef, currentElement } = useForwardExpose();
|
|
const menuContext = injectNavigationMenuContext();
|
|
const { activeTrigger, rootNavigationMenu, modelValue } = menuContext;
|
|
const size = ref();
|
|
const position = ref();
|
|
const open = computed(() => !!menuContext.modelValue.value);
|
|
watch(currentElement, () => {
|
|
menuContext.onViewportChange(currentElement.value);
|
|
});
|
|
const content = ref();
|
|
watch([modelValue, open], () => {
|
|
if (!currentElement.value) return;
|
|
requestAnimationFrame(() => {
|
|
const el = currentElement.value?.querySelector("[data-state=open]");
|
|
content.value = el;
|
|
});
|
|
}, {
|
|
immediate: true,
|
|
flush: "post"
|
|
});
|
|
function updatePosition() {
|
|
if (content.value && activeTrigger.value && rootNavigationMenu.value) {
|
|
const bodyWidth = document.documentElement.offsetWidth;
|
|
const bodyHeight = document.documentElement.offsetHeight;
|
|
const rootRect = rootNavigationMenu.value.getBoundingClientRect();
|
|
const rect = activeTrigger.value.getBoundingClientRect();
|
|
const { offsetWidth, offsetHeight } = content.value;
|
|
const startPositionLeft = rect.left - rootRect.left;
|
|
const startPositionTop = rect.top - rootRect.top;
|
|
let posLeft = null;
|
|
let posTop = null;
|
|
switch (props.align) {
|
|
case "start":
|
|
posLeft = startPositionLeft;
|
|
posTop = startPositionTop;
|
|
break;
|
|
case "end":
|
|
posLeft = startPositionLeft - offsetWidth + rect.width;
|
|
posTop = startPositionTop - offsetHeight + rect.height;
|
|
break;
|
|
default:
|
|
posLeft = startPositionLeft - offsetWidth / 2 + rect.width / 2;
|
|
posTop = startPositionTop - offsetHeight / 2 + rect.height / 2;
|
|
}
|
|
const screenOffset = 10;
|
|
if (posLeft + rootRect.left < screenOffset) posLeft = screenOffset - rootRect.left;
|
|
const rightOffset = posLeft + rootRect.left + offsetWidth;
|
|
if (rightOffset > bodyWidth - screenOffset) {
|
|
posLeft -= rightOffset - bodyWidth + screenOffset;
|
|
if (posLeft < screenOffset - rootRect.left) posLeft = screenOffset - rootRect.left;
|
|
}
|
|
if (posTop + rootRect.top < screenOffset) posTop = screenOffset - rootRect.top;
|
|
const bottomOffset = posTop + rootRect.top + offsetHeight;
|
|
if (bottomOffset > bodyHeight - screenOffset) {
|
|
posTop -= bottomOffset - bodyHeight + screenOffset;
|
|
if (posTop < screenOffset - rootRect.top) posTop = screenOffset - rootRect.top;
|
|
}
|
|
posLeft = Math.round(posLeft);
|
|
posTop = Math.round(posTop);
|
|
position.value = {
|
|
left: posLeft,
|
|
top: posTop
|
|
};
|
|
}
|
|
}
|
|
useResizeObserver(content, () => {
|
|
if (content.value) {
|
|
size.value = {
|
|
width: content.value.offsetWidth,
|
|
height: content.value.offsetHeight
|
|
};
|
|
updatePosition();
|
|
}
|
|
});
|
|
useResizeObserver([globalThis.document?.body, rootNavigationMenu], () => {
|
|
updatePosition();
|
|
});
|
|
return (_ctx, _cache) => {
|
|
return openBlock(), createBlock(unref(Presence_default), {
|
|
present: _ctx.forceMount || open.value,
|
|
"force-mount": !unref(menuContext).unmountOnHide.value,
|
|
onAfterLeave: _cache[2] || (_cache[2] = () => {
|
|
size.value = void 0;
|
|
position.value = void 0;
|
|
})
|
|
}, {
|
|
default: withCtx(({ present }) => [createVNode(unref(Primitive), mergeProps(_ctx.$attrs, {
|
|
ref: unref(forwardRef),
|
|
as: _ctx.as,
|
|
"as-child": _ctx.asChild,
|
|
"data-state": unref(getOpenState)(open.value),
|
|
"data-orientation": unref(menuContext).orientation,
|
|
style: {
|
|
pointerEvents: !open.value && unref(menuContext).isRootMenu ? "none" : void 0,
|
|
["--reka-navigation-menu-viewport-width"]: size.value ? `${size.value?.width}px` : void 0,
|
|
["--reka-navigation-menu-viewport-height"]: size.value ? `${size.value?.height}px` : void 0,
|
|
["--reka-navigation-menu-viewport-left"]: position.value ? `${position.value?.left}px` : void 0,
|
|
["--reka-navigation-menu-viewport-top"]: position.value ? `${position.value?.top}px` : void 0
|
|
},
|
|
hidden: !present,
|
|
onPointerenter: _cache[0] || (_cache[0] = ($event) => unref(menuContext).onContentEnter(unref(menuContext).modelValue.value)),
|
|
onPointerleave: _cache[1] || (_cache[1] = ($event) => unref(whenMouse)(() => unref(menuContext).onContentLeave())($event))
|
|
}), {
|
|
default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
|
|
_: 2
|
|
}, 1040, [
|
|
"as",
|
|
"as-child",
|
|
"data-state",
|
|
"data-orientation",
|
|
"style",
|
|
"hidden"
|
|
])]),
|
|
_: 3
|
|
}, 8, ["present", "force-mount"]);
|
|
};
|
|
}
|
|
});
|
|
|
|
//#endregion
|
|
//#region src/NavigationMenu/NavigationMenuViewport.vue
|
|
var NavigationMenuViewport_default = NavigationMenuViewport_vue_vue_type_script_setup_true_lang_default;
|
|
|
|
//#endregion
|
|
export { NavigationMenuViewport_default };
|
|
//# sourceMappingURL=NavigationMenuViewport.js.map
|