xdesign-vue-next
Version:
XDesign Component for vue-next
174 lines (170 loc) • 7.29 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
import _defineProperty from '@babel/runtime/helpers/defineProperty';
import { defineComponent, toRefs, inject, ref, computed, onMounted, createVNode, getCurrentInstance, isVNode } from 'vue';
import props from './menu-item-props.js';
import { renderTNodeJSX, renderContent } from '../utils/render-tnode.js';
import { emitEvent } from '../utils/event.js';
import useRipple from '../hooks/useRipple.js';
import { usePrefixClass } from '../hooks/useConfig.js';
import { Tooltip } from '../tooltip/index.js';
import 'lodash/isEmpty';
import 'lodash/isString';
import 'lodash/isFunction';
import 'lodash/isObject';
import 'lodash/camelCase';
import 'lodash/kebabCase';
import '../utils/helper.js';
import '@babel/runtime/helpers/objectWithoutProperties';
import '@babel/runtime/helpers/slicedToArray';
import 'lodash/isUndefined';
import 'lodash/isNull';
import 'lodash/isArray';
import 'lodash/isNumber';
import '../hooks/useKeepAnimation.js';
import '../config-provider/useConfig.js';
import 'lodash/cloneDeep';
import '../config-provider/context.js';
import 'lodash/mergeWith';
import 'lodash/merge';
import '../_common/js/global-config/default-config.js';
import '../_common/js/global-config/locale/en_US.js';
import '../_chunks/dep-3a1cce9f.js';
import '../utils/set-style.js';
import '../tooltip/tooltip.js';
import 'lodash/omit';
import '../tooltip/props.js';
import '../popup/props.js';
import '../popup/index.js';
import '../popup/popup.js';
import '@popperjs/core';
import 'lodash/debounce';
import '../hooks/useVModel.js';
import '../utils/dom.js';
import '../utils/easing.js';
import '../_common/js/utils/set-style.js';
import '../popup/container.js';
import '@babel/runtime/helpers/toConsumableArray';
import '../hooks/useResizeObserver.js';
import '../hooks/tnode.js';
import '../utils/withInstall.js';
import '../tooltip/util.js';
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
function _isSlot(s) {
return typeof s === 'function' || Object.prototype.toString.call(s) === '[object Object]' && !isVNode(s);
}
var _MenuItem = defineComponent({
name: "XMenuItem",
props: _objectSpread({}, props),
emits: ["click"],
setup: function setup(props2, ctx) {
var _toRefs = toRefs(props2),
href = _toRefs.href,
_toRefs$target = _toRefs.target,
target = _toRefs$target === void 0 ? "_self" : _toRefs$target;
var classPrefix = usePrefixClass();
var menu = inject("TdMenu");
var itemRef = ref();
useRipple(itemRef);
var submenu = inject("TdSubmenu", null);
var active = computed(function () {
return menu.activeValue.value === props2.value;
});
var collapsed = computed(function () {
var _menu$collapsed;
return (_menu$collapsed = menu.collapsed) === null || _menu$collapsed === void 0 ? void 0 : _menu$collapsed.value;
});
var classes = computed(function () {
var _ref;
return ["".concat(classPrefix.value, "-menu__item"), (_ref = {}, _defineProperty(_ref, "".concat(classPrefix.value, "-is-active"), active.value), _defineProperty(_ref, "".concat(classPrefix.value, "-is-disabled"), props2.disabled), _defineProperty(_ref, "".concat(classPrefix.value, "-menu__item--plain"), !ctx.slots.icon && !props2.icon), _defineProperty(_ref, "".concat(classPrefix.value, "-submenu__item"), !!submenu && !menu.isHead), _ref)];
});
onMounted(function () {
var _menu$vMenu;
menu === null || menu === void 0 || (_menu$vMenu = menu.vMenu) === null || _menu$vMenu === void 0 ? void 0 : _menu$vMenu.add({
value: props2.value,
parent: submenu === null || submenu === void 0 ? void 0 : submenu.value,
vnode: ctx.slots["default"]
});
});
return {
classPrefix: classPrefix,
menu: menu,
active: active,
collapsed: collapsed,
classes: classes,
itemRef: itemRef,
href: href,
target: target
};
},
methods: {
handleClick: function handleClick(e) {
e.stopPropagation();
if (this.disabled) return;
this.menu.select(this.value);
emitEvent(this, "click", {
e: e,
value: this.value
});
if (this.to || this.routerLink && this.href) {
var router = this.router || this.$router;
var methods = this.replace ? "replace" : "push";
router[methods](this.to || this.href)["catch"](function (err) {
if (err.name !== "NavigationDuplicated" && !err.message.includes("Avoided redundant navigation to current location")) {
throw err;
}
});
}
}
},
render: function render() {
var _this = this;
var router = this.router || this.$router;
var liContent = createVNode("li", {
"ref": "itemRef",
"class": this.classes,
"onClick": this.handleClick
}, [renderTNodeJSX(this, "icon"), this.routerLink ? createVNode("a", {
"href": this.href ? this.href : this.to ? router === null || router === void 0 ? void 0 : router.resolve(this.to).href : "",
"target": this.target,
"class": "".concat(this.classPrefix, "-menu__item-link"),
"onClick": function onClick(e) {
return e.preventDefault();
}
}, [createVNode("span", {
"class": "".concat(this.classPrefix, "-menu__content")
}, [renderContent(this, "default", "content")])]) : this.href ? createVNode("a", {
"href": this.href,
"target": this.target,
"class": "".concat(this.classPrefix, "-menu__item-link"),
"onClick": function onClick(e) {
return _this.disabled && e.preventDefault();
}
}, [createVNode("span", {
"class": "".concat(this.classPrefix, "-menu__content")
}, [renderContent(this, "default", "content")])]) : createVNode("span", {
"class": "".concat(this.classPrefix, "-menu__content")
}, [renderContent(this, "default", "content")])]);
var instance = getCurrentInstance();
var node = instance.parent;
if (this.collapsed && /tmenu/i.test(node === null || node === void 0 ? void 0 : node.type.name)) {
return createVNode(Tooltip, {
"content": function content() {
return renderContent(_this, "default", "content");
},
"placement": "right"
}, _isSlot(liContent) ? liContent : {
"default": function _default() {
return [liContent];
}
});
}
return liContent;
}
});
export { _MenuItem as default };
//# sourceMappingURL=menu-item.js.map