Files
vxe-table/packages/table/module/custom/hook.ts
2024-06-09 17:27:51 +08:00

124 lines
4.1 KiB
TypeScript

import { nextTick } from 'vue'
import { VxeUI } from '../../../ui'
import XEUtils from 'xe-utils'
import type { TableCustomMethods, TableCustomPrivateMethods, VxeColumnPropTypes, VxeTableDefines } from '../../../../types'
const tableCustomMethodKeys: (keyof TableCustomMethods)[] = ['openCustom', 'closeCustom']
VxeUI.hooks.add('tableCustomModule', {
setupTable ($xeTable) {
const { reactData, internalData } = $xeTable
const { computeCustomOpts } = $xeTable.getComputeMaps()
const { refElem } = $xeTable.getRefMaps()
const $xeGrid = $xeTable.xegrid
const calcMaxHeight = () => {
const { customStore } = reactData
const el = refElem.value
// 判断面板不能大于表格高度
let tableHeight = 0
if (el) {
tableHeight = el.clientHeight - 30
}
customStore.maxHeight = Math.max(4, tableHeight)
}
const openCustom = () => {
const { initStore, customStore } = reactData
const { collectColumn } = internalData
const sortMaps: Record<string, number> = {}
const fixedMaps: Record<string, VxeColumnPropTypes.Fixed> = {}
const visibleMaps: Record<string, boolean> = {}
XEUtils.eachTree(collectColumn, column => {
const colid = column.getKey()
column.renderFixed = column.fixed
column.renderVisible = column.visible
column.renderResizeWidth = column.renderWidth
sortMaps[colid] = column.renderSortNumber
fixedMaps[colid] = column.fixed
visibleMaps[colid] = column.visible
}, { children: 'children' })
customStore.oldSortMaps = sortMaps
customStore.oldFixedMaps = fixedMaps
customStore.oldVisibleMaps = visibleMaps
reactData.customColumnList = collectColumn.slice(0)
customStore.visible = true
initStore.custom = true
checkCustomStatus()
calcMaxHeight()
return nextTick().then(() => calcMaxHeight())
}
const closeCustom = () => {
const { customStore } = reactData
const customOpts = computeCustomOpts.value
if (customStore.visible) {
customStore.visible = false
if (!customOpts.immediate) {
$xeTable.handleCustom()
}
}
return nextTick()
}
const customMethods: TableCustomMethods = {
openCustom,
closeCustom
}
const checkCustomStatus = () => {
const { customStore } = reactData
const { collectColumn } = internalData
const customOpts = computeCustomOpts.value
const { checkMethod } = customOpts
customStore.isAll = collectColumn.every((column) => (checkMethod ? !checkMethod({ column }) : false) || column.renderVisible)
customStore.isIndeterminate = !customStore.isAll && collectColumn.some((column) => (!checkMethod || checkMethod({ column })) && (column.renderVisible || column.halfVisible))
}
const emitCustomEvent = (type: VxeTableDefines.CustomType, evnt: Event) => {
const comp = $xeGrid || $xeTable
comp.dispatchEvent('custom', { type }, evnt)
}
const customPrivateMethods: TableCustomPrivateMethods = {
checkCustomStatus,
emitCustomEvent,
triggerCustomEvent (evnt) {
const { customStore } = $xeTable.reactData
if (customStore.visible) {
closeCustom()
emitCustomEvent('close', evnt)
} else {
customStore.btnEl = evnt.target as HTMLDivElement
openCustom()
emitCustomEvent('open', evnt)
}
},
customOpenEvent (evnt) {
const { customStore } = reactData
if (!customStore.visible) {
customStore.activeBtn = true
customStore.btnEl = evnt.target as HTMLDivElement
$xeTable.openCustom()
$xeTable.emitCustomEvent('open', evnt)
}
},
customCloseEvent (evnt) {
const { customStore } = reactData
if (customStore.visible) {
customStore.activeBtn = false
$xeTable.closeCustom()
$xeTable.emitCustomEvent('close', evnt)
}
}
}
return { ...customMethods, ...customPrivateMethods }
},
setupGrid ($xeGrid) {
return $xeGrid.extendTableMethods(tableCustomMethodKeys)
}
})