vxe-table
Version:
A PC-end table component based on Vxe UI, supporting copy-paste, data pivot table, and high-performance virtual list table solution.
169 lines (156 loc) • 7.07 kB
text/typescript
import { h, Teleport, inject, ref, Ref, createCommentVNode } from 'vue'
import { defineVxeComponent } from '../../../ui/src/comp'
import { VxeUI } from '../../../ui'
import { getFuncText } from '../../../ui/src/utils'
import XEUtils from 'xe-utils'
import type { VxeTablePrivateMethods, VxeTableConstructor, VxeTableMethods } from '../../../../types'
const { getIcon } = VxeUI
export default defineVxeComponent({
name: 'VxeTableMenuPanel',
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 = {
refElem
}
const $xeMenuPanel: any = {
xID,
props,
context,
getRefMaps: () => refMaps
}
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)
const prefixOpts = Object.assign({}, item.prefixConfig)
const suffixOpts = Object.assign({}, item.suffixConfig)
const menuContent = getFuncText(item.name)
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('div', {
class: ['vxe-context-menu--link-prefix', prefixOpts.className || '']
}, [
h('i', {
class: prefixOpts.icon || item.prefixIcon
}),
prefixOpts.content ? h('span', {}, `${prefixOpts.content}`) : createCommentVNode()
]),
h('div', {
class: 'vxe-context-menu--link-content',
title: menuContent
}, menuContent),
h('div', {
class: ['vxe-context-menu--link-suffix', suffixOpts.className || '']
}, [
h('i', {
class: (suffixOpts.icon || item.suffixIcon) || (hasChildMenus ? getIcon().TABLE_MENU_OPTIONS : '')
}),
suffixOpts.content ? h('span', `${suffixOpts.content}`) : createCommentVNode()
])
]),
hasChildMenus
? h('ul', {
class: ['vxe-table--context-menu-clild-wrapper', {
'is--show': item === ctxMenuStore.selected && ctxMenuStore.showChild
}]
}, item.children.map((child: any, cIndex: any) => {
const childPrefixOpts = Object.assign({}, child.prefixConfig)
const childSuffixOpts = Object.assign({}, child.suffixConfig)
const childMenuContent = getFuncText(child.name)
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('div', {
class: ['vxe-context-menu--link-prefix', childPrefixOpts.className || '']
}, [
h('i', {
class: childPrefixOpts.icon || child.prefixIcon
}),
childPrefixOpts.content ? h('span', `${childPrefixOpts.content}`) : createCommentVNode()
]),
h('div', {
class: 'vxe-context-menu--link-content',
title: childMenuContent
}, childMenuContent),
h('div', {
class: ['vxe-context-menu--link-suffix', childSuffixOpts.className || '']
}, [
h('i', {
class: childSuffixOpts.icon
}),
childSuffixOpts.content ? h('span', `${childSuffixOpts.content}`) : createCommentVNode()
])
])
])
}))
: null
])
}))
}))
])
}
$xeMenuPanel.renderVN = renderVN
return $xeMenuPanel
},
render () {
return this.renderVN()
}
})