114 lines
3.1 KiB
JavaScript
114 lines
3.1 KiB
JavaScript
import { useForwardExpose } from "../shared/useForwardExpose.js";
|
|
import { Primitive } from "../Primitive/Primitive.js";
|
|
import { useCollection } from "../Collection/Collection.js";
|
|
import { injectNavigationMenuContext, provideNavigationMenuContext } from "./NavigationMenuRoot.js";
|
|
import { createBlock, createVNode, defineComponent, openBlock, ref, renderSlot, unref, watchEffect, withCtx } from "vue";
|
|
import { useVModel } from "@vueuse/core";
|
|
|
|
//#region src/NavigationMenu/NavigationMenuSub.vue?vue&type=script&setup=true&lang.ts
|
|
var NavigationMenuSub_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
|
|
__name: "NavigationMenuSub",
|
|
props: {
|
|
modelValue: {
|
|
type: String,
|
|
required: false
|
|
},
|
|
defaultValue: {
|
|
type: String,
|
|
required: false
|
|
},
|
|
orientation: {
|
|
type: String,
|
|
required: false,
|
|
default: "horizontal"
|
|
},
|
|
asChild: {
|
|
type: Boolean,
|
|
required: false
|
|
},
|
|
as: {
|
|
type: null,
|
|
required: false
|
|
}
|
|
},
|
|
emits: ["update:modelValue"],
|
|
setup(__props, { emit: __emit }) {
|
|
const props = __props;
|
|
const emits = __emit;
|
|
const modelValue = useVModel(props, "modelValue", emits, {
|
|
defaultValue: props.defaultValue ?? "",
|
|
passive: props.modelValue === void 0
|
|
});
|
|
const previousValue = ref("");
|
|
const menuContext = injectNavigationMenuContext();
|
|
const { forwardRef, currentElement } = useForwardExpose();
|
|
const indicatorTrack = ref();
|
|
const viewport = ref();
|
|
const activeTrigger = ref();
|
|
const { getItems, CollectionSlot } = useCollection({
|
|
key: "NavigationMenu",
|
|
isProvider: true
|
|
});
|
|
watchEffect(() => {
|
|
if (!modelValue.value) return;
|
|
const items = getItems().map((i) => i.ref);
|
|
activeTrigger.value = items.find((item) => item.id.includes(modelValue.value));
|
|
});
|
|
provideNavigationMenuContext({
|
|
...menuContext,
|
|
isRootMenu: false,
|
|
modelValue,
|
|
previousValue,
|
|
activeTrigger,
|
|
orientation: props.orientation,
|
|
rootNavigationMenu: currentElement,
|
|
indicatorTrack,
|
|
onIndicatorTrackChange: (val) => {
|
|
indicatorTrack.value = val;
|
|
},
|
|
viewport,
|
|
onViewportChange: (val) => {
|
|
viewport.value = val;
|
|
},
|
|
onTriggerEnter: (val) => {
|
|
modelValue.value = val;
|
|
},
|
|
onTriggerLeave: () => {},
|
|
onContentEnter: () => {},
|
|
onContentLeave: () => {},
|
|
onItemSelect: (val) => {
|
|
modelValue.value = val;
|
|
},
|
|
onItemDismiss: () => {
|
|
modelValue.value = "";
|
|
}
|
|
});
|
|
return (_ctx, _cache) => {
|
|
return openBlock(), createBlock(unref(CollectionSlot), null, {
|
|
default: withCtx(() => [createVNode(unref(Primitive), {
|
|
ref: unref(forwardRef),
|
|
"data-orientation": _ctx.orientation,
|
|
"as-child": props.asChild,
|
|
as: _ctx.as,
|
|
"data-reka-navigation-menu": ""
|
|
}, {
|
|
default: withCtx(() => [renderSlot(_ctx.$slots, "default", { modelValue: unref(modelValue) })]),
|
|
_: 3
|
|
}, 8, [
|
|
"data-orientation",
|
|
"as-child",
|
|
"as"
|
|
])]),
|
|
_: 3
|
|
});
|
|
};
|
|
}
|
|
});
|
|
|
|
//#endregion
|
|
//#region src/NavigationMenu/NavigationMenuSub.vue
|
|
var NavigationMenuSub_default = NavigationMenuSub_vue_vue_type_script_setup_true_lang_default;
|
|
|
|
//#endregion
|
|
export { NavigationMenuSub_default };
|
|
//# sourceMappingURL=NavigationMenuSub.js.map
|