vxe-table-demonic
Version:
一个基于 vue 的 PC 端表单/表格组件,支持增删改查、虚拟列表、虚拟树、懒加载、快捷菜单、数据校验、树形结构、打印导出、表单渲染、数据分页、弹窗、自定义模板、渲染器、JSON 配置式...
126 lines (114 loc) • 4.66 kB
text/typescript
import { defineComponent, h, Teleport, inject, ref, Ref, createCommentVNode } from 'vue'
import { getFuncText } from '../../tools/utils'
import XEUtils from 'xe-utils'
import { VxeTablePrivateMethods, VxeTableConstructor, VxeTableMethods, VxeMenuPanelConstructor, VxeMenuPanelPrivateRef } from '../../../types/all'
export default defineComponent({
name: 'VxeTableContextMenu',
setup (props, context) {
const xID = XEUtils.uniqueId()
const $xetable = inject('$xetable', {} as VxeTableConstructor & VxeTableMethods & VxeTablePrivateMethods)
const { reactData: tableReactData } = $xetable
const refElem = ref() as Ref<HTMLDivElement>
const refMaps: VxeMenuPanelPrivateRef = {
refElem
}
const $xemenupanel = {
xID,
props,
context,
getRefMaps: () => refMaps
} as VxeMenuPanelConstructor
const renderVN = () => {
const { ctxMenuStore } = tableReactData
const { computeMenuOpts } = $xetable.getComputeMaps()
const menuOpts = computeMenuOpts.value
return h(Teleport, {
to: 'body',
disabled: false
}, [
h('div', {
ref: refElem,
class: ['vxe-table--context-menu-wrapper', menuOpts.className, {
'is--visible': ctxMenuStore.visible
}],
style: ctxMenuStore.style
}, ctxMenuStore.list.map((options, gIndex) => {
return options.every(item => item.visible === false) ? createCommentVNode() : h('ul', {
class: 'vxe-context-menu--option-wrapper',
key: gIndex
}, options.map((item, index) => {
const hasChildMenus = item.children && item.children.some((child: any) => child.visible !== false)
return item.visible === false ? null : h('li', {
class: [item.className, {
'link--disabled': item.disabled,
'link--active': item === ctxMenuStore.selected
}],
key: `${gIndex}_${index}`
}, [
h('a', {
class: 'vxe-context-menu--link',
onClick (evnt: Event) {
$xetable.ctxMenuLinkEvent(evnt, item)
},
onMouseover (evnt: Event) {
$xetable.ctxMenuMouseoverEvent(evnt, item)
},
onMouseout (evnt: Event) {
$xetable.ctxMenuMouseoutEvent(evnt, item)
}
}, [
h('i', {
class: ['vxe-context-menu--link-prefix', item.prefixIcon]
}),
h('span', {
class: 'vxe-context-menu--link-content'
}, getFuncText(item.name)),
h('i', {
class: ['vxe-context-menu--link-suffix', hasChildMenus ? item.suffixIcon || 'suffix--haschild' : item.suffixIcon]
})
]),
hasChildMenus ? h('ul', {
class: ['vxe-table--context-menu-clild-wrapper', {
'is--show': item === ctxMenuStore.selected && ctxMenuStore.showChild
}]
}, item.children.map((child: any, cIndex: any) => {
return child.visible === false ? null : h('li', {
class: [child.className, {
'link--disabled': child.disabled,
'link--active': child === ctxMenuStore.selectChild
}],
key: `${gIndex}_${index}_${cIndex}`
}, [
h('a', {
class: 'vxe-context-menu--link',
onClick (evnt: Event) {
$xetable.ctxMenuLinkEvent(evnt, child)
},
onMouseover (evnt: Event) {
$xetable.ctxMenuMouseoverEvent(evnt, item, child)
},
onMouseout (evnt: Event) {
$xetable.ctxMenuMouseoutEvent(evnt, item)
}
}, [
h('i', {
class: ['vxe-context-menu--link-prefix', child.prefixIcon]
}),
h('span', {
class: 'vxe-context-menu--link-content'
}, getFuncText(child.name))
])
])
})) : null
])
}))
}))
])
}
$xemenupanel.renderVN = renderVN
return $xemenupanel
},
render () {
return this.renderVN()
}
})