vhb-table
Version:
一个基于 vue 的 PC 端表格组件,支持增删改查、虚拟列表、虚拟树、懒加载、快捷菜单、数据校验、树形结构、打印导出、表单渲染、数据分页、弹窗、自定义模板、渲染器、贼灵活的配置项、扩展接口等...
103 lines (99 loc) • 3.6 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _utils = require("../../tools/utils");
var _default = {
name: 'VhbTableContextMenu',
props: {
ctxMenuStore: Object,
ctxMenuOpts: Object
},
mounted: function mounted() {
document.body.appendChild(this.$el);
},
beforeDestroy: function beforeDestroy() {
var $el = this.$el;
if ($el.parentNode) {
$el.parentNode.removeChild($el);
}
},
render: function render(h) {
var $xetable = this.$parent;
var _e = this._e,
ctxMenuOpts = this.ctxMenuOpts,
ctxMenuStore = this.ctxMenuStore;
return h('div', {
class: ['vhb-table--context-menu-wrapper', ctxMenuOpts.className],
style: ctxMenuStore.style
}, ctxMenuStore.list.map(function (options, gIndex) {
return options.every(function (item) {
return item.visible === false;
}) ? _e() : h('ul', {
class: 'vhb-context-menu--option-wrapper',
key: gIndex
}, options.map(function (item, index) {
var hasChildMenus = item.children && item.children.some(function (child) {
return child.visible !== false;
});
return item.visible === false ? null : h('li', {
class: [item.className, {
'link--disabled': item.disabled,
'link--active': item === ctxMenuStore.selected
}],
key: "".concat(gIndex, "_").concat(index)
}, [h('a', {
class: 'vhb-context-menu--link',
on: {
click: function click(evnt) {
$xetable.ctxMenuLinkEvent(evnt, item);
},
mouseover: function mouseover(evnt) {
$xetable.ctxMenuMouseoverEvent(evnt, item);
},
mouseout: function mouseout(evnt) {
$xetable.ctxMenuMouseoutEvent(evnt, item);
}
}
}, [h('i', {
class: ['vhb-context-menu--link-prefix', item.prefixIcon]
}), h('span', {
class: 'vhb-context-menu--link-content'
}, (0, _utils.getFuncText)(item.name)), h('i', {
class: ['vhb-context-menu--link-suffix', hasChildMenus ? item.suffixIcon || 'suffix--haschild' : item.suffixIcon]
})]), hasChildMenus ? h('ul', {
class: ['vhb-table--context-menu-clild-wrapper', {
'is--show': item === ctxMenuStore.selected && ctxMenuStore.showChild
}]
}, item.children.map(function (child, cIndex) {
return child.visible === false ? null : h('li', {
class: [child.className, {
'link--disabled': child.disabled,
'link--active': child === ctxMenuStore.selectChild
}],
key: "".concat(gIndex, "_").concat(index, "_").concat(cIndex)
}, [h('a', {
class: 'vhb-context-menu--link',
on: {
click: function click(evnt) {
$xetable.ctxMenuLinkEvent(evnt, child);
},
mouseover: function mouseover(evnt) {
$xetable.ctxMenuMouseoverEvent(evnt, item, child);
},
mouseout: function mouseout(evnt) {
$xetable.ctxMenuMouseoutEvent(evnt, item, child);
}
}
}, [h('i', {
class: ['vhb-context-menu--link-prefix', child.prefixIcon]
}), h('span', {
class: 'vhb-context-menu--link-content'
}, (0, _utils.getFuncText)(child.name))])]);
})) : null]);
}));
}));
}
};
exports.default = _default;