You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.5 KiB
104 lines
3.5 KiB
import { defineComponent, getCurrentInstance, inject, toRef, computed, reactive, onMounted, onBeforeUnmount, resolveComponent, openBlock, createElementBlock, normalizeClass, createBlock, withCtx, renderSlot, createElementVNode, Fragment } from 'vue';
|
|
import { ElTooltip } from '../../tooltip/index.mjs';
|
|
import '../../../utils/index.mjs';
|
|
import '../../../hooks/index.mjs';
|
|
import useMenu from './use-menu.mjs';
|
|
import { menuItemProps, menuItemEmits } from './menu-item.mjs';
|
|
import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
|
|
import { useNamespace } from '../../../hooks/use-namespace/index.mjs';
|
|
import { throwError } from '../../../utils/error.mjs';
|
|
|
|
const COMPONENT_NAME = "ElMenuItem";
|
|
const _sfc_main = defineComponent({
|
|
name: COMPONENT_NAME,
|
|
components: {
|
|
ElTooltip
|
|
},
|
|
props: menuItemProps,
|
|
emits: menuItemEmits,
|
|
setup(props, { emit }) {
|
|
const instance = getCurrentInstance();
|
|
const rootMenu = inject("rootMenu");
|
|
const nsMenu = useNamespace("menu");
|
|
const nsMenuItem = useNamespace("menu-item");
|
|
if (!rootMenu)
|
|
throwError(COMPONENT_NAME, "can not inject root menu");
|
|
const { parentMenu, indexPath } = useMenu(instance, toRef(props, "index"));
|
|
const subMenu = inject(`subMenu:${parentMenu.value.uid}`);
|
|
if (!subMenu)
|
|
throwError(COMPONENT_NAME, "can not inject sub menu");
|
|
const active = computed(() => props.index === rootMenu.activeIndex);
|
|
const item = reactive({
|
|
index: props.index,
|
|
indexPath,
|
|
active
|
|
});
|
|
const handleClick = () => {
|
|
if (!props.disabled) {
|
|
rootMenu.handleMenuItemClick({
|
|
index: props.index,
|
|
indexPath: indexPath.value,
|
|
route: props.route
|
|
});
|
|
emit("click", item);
|
|
}
|
|
};
|
|
onMounted(() => {
|
|
subMenu.addSubMenu(item);
|
|
rootMenu.addMenuItem(item);
|
|
});
|
|
onBeforeUnmount(() => {
|
|
subMenu.removeSubMenu(item);
|
|
rootMenu.removeMenuItem(item);
|
|
});
|
|
return {
|
|
parentMenu,
|
|
rootMenu,
|
|
active,
|
|
nsMenu,
|
|
nsMenuItem,
|
|
handleClick
|
|
};
|
|
}
|
|
});
|
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
const _component_el_tooltip = resolveComponent("el-tooltip");
|
|
return openBlock(), createElementBlock("li", {
|
|
class: normalizeClass([
|
|
_ctx.nsMenuItem.b(),
|
|
_ctx.nsMenuItem.is("active", _ctx.active),
|
|
_ctx.nsMenuItem.is("disabled", _ctx.disabled)
|
|
]),
|
|
role: "menuitem",
|
|
tabindex: "-1",
|
|
onClick: _ctx.handleClick
|
|
}, [
|
|
_ctx.parentMenu.type.name === "ElMenu" && _ctx.rootMenu.props.collapse && _ctx.$slots.title ? (openBlock(), createBlock(_component_el_tooltip, {
|
|
key: 0,
|
|
effect: _ctx.rootMenu.props.popperEffect,
|
|
placement: "right",
|
|
"fallback-placements": ["left"],
|
|
persistent: ""
|
|
}, {
|
|
content: withCtx(() => [
|
|
renderSlot(_ctx.$slots, "title")
|
|
]),
|
|
default: withCtx(() => [
|
|
createElementVNode("div", {
|
|
class: normalizeClass(_ctx.nsMenu.be("tooltip", "trigger"))
|
|
}, [
|
|
renderSlot(_ctx.$slots, "default")
|
|
], 2)
|
|
]),
|
|
_: 3
|
|
}, 8, ["effect"])) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
|
|
renderSlot(_ctx.$slots, "default"),
|
|
renderSlot(_ctx.$slots, "title")
|
|
], 64))
|
|
], 10, ["onClick"]);
|
|
}
|
|
var MenuItem = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "menu-item.vue"]]);
|
|
|
|
export { MenuItem as default };
|
|
//# sourceMappingURL=menu-item2.mjs.map
|