You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

176 lines
5.5 KiB

/* eslint-disable @typescript-eslint/await-thenable */
import type { WatchStopHandle } from 'vue'
import { onUnmounted, ref, toRaw, unref, watch } from 'vue'
import type { BasicColumn, BasicTableProps, FetchParams, TableActionType } from '../types/table'
import type { PaginationProps } from '../types/pagination'
import type { DynamicProps } from '@/types/utils'
import type { FormActionType } from '@/components/Form'
import { getDynamicProps } from '@/utils'
import { isProdMode } from '@/utils/env'
import { error } from '@/utils/log'
type Props = Partial<DynamicProps<BasicTableProps>>
type UseTableMethod = TableActionType & {
getForm: () => FormActionType
}
export function useTable(tableProps?: Props): [
(instance: TableActionType, formInstance: UseTableMethod) => void,
TableActionType & {
getForm: () => FormActionType
},
] {
const tableRef = ref<Nullable<TableActionType>>(null)
const loadedRef = ref<Nullable<boolean>>(false)
const formRef = ref<Nullable<UseTableMethod>>(null)
let stopWatch: WatchStopHandle
function register(instance: TableActionType, formInstance: UseTableMethod) {
isProdMode()
&& onUnmounted(() => {
tableRef.value = null
loadedRef.value = null
})
if (unref(loadedRef) && isProdMode() && instance === unref(tableRef))
return
tableRef.value = instance
formRef.value = formInstance
tableProps && instance.setProps(getDynamicProps(tableProps))
loadedRef.value = true
stopWatch?.()
stopWatch = watch(
() => tableProps,
() => {
tableProps && instance.setProps(getDynamicProps(tableProps))
},
{
immediate: true,
deep: true,
},
)
}
function getTableInstance(): TableActionType {
const table = unref(tableRef)
if (!table)
error('The table instance has not been obtained yet, please make sure the table is presented when performing the table operation!')
return table as TableActionType
}
const methods: TableActionType & {
getForm: () => FormActionType
} = {
reload: async (opt?: FetchParams) => {
return await getTableInstance().reload(opt)
},
setProps: (props: Partial<BasicTableProps>) => {
getTableInstance().setProps(props)
},
redoHeight: () => {
getTableInstance().redoHeight()
},
setSelectedRows: (rows: Recordable[]) => {
return toRaw(getTableInstance().setSelectedRows(rows))
},
setLoading: (loading: boolean) => {
getTableInstance().setLoading(loading)
},
getDataSource: () => {
return getTableInstance().getDataSource()
},
getRawDataSource: () => {
return getTableInstance().getRawDataSource()
},
getColumns: ({ ignoreIndex = false }: { ignoreIndex?: boolean } = {}) => {
const columns = getTableInstance().getColumns({ ignoreIndex }) || []
return toRaw(columns)
},
setColumns: (columns: BasicColumn[]) => {
getTableInstance().setColumns(columns)
},
setTableData: (values: any[]) => {
return getTableInstance().setTableData(values)
},
setPagination: (info: Partial<PaginationProps>) => {
return getTableInstance().setPagination(info)
},
deleteSelectRowByKey: (key: string) => {
getTableInstance().deleteSelectRowByKey(key)
},
getSelectRowKeys: () => {
return toRaw(getTableInstance().getSelectRowKeys())
},
getSelectRows: () => {
return toRaw(getTableInstance().getSelectRows())
},
clearSelectedRowKeys: () => {
getTableInstance().clearSelectedRowKeys()
},
setSelectedRowKeys: (keys: string[] | number[]) => {
getTableInstance().setSelectedRowKeys(keys)
},
getPaginationRef: () => {
return getTableInstance().getPaginationRef()
},
getSize: () => {
return toRaw(getTableInstance().getSize())
},
updateTableData: (index: number, key: string, value: any) => {
return getTableInstance().updateTableData(index, key, value)
},
deleteTableDataRecord: (rowKey: string | number | string[] | number[]) => {
return getTableInstance().deleteTableDataRecord(rowKey)
},
insertTableDataRecord: (record: Recordable | Recordable[], index?: number) => {
return getTableInstance().insertTableDataRecord(record, index)
},
updateTableDataRecord: (rowKey: string | number, record: Recordable) => {
return getTableInstance().updateTableDataRecord(rowKey, record)
},
findTableDataRecord: (rowKey: string | number) => {
return getTableInstance().findTableDataRecord(rowKey)
},
getRowSelection: () => {
return toRaw(getTableInstance().getRowSelection())
},
getCacheColumns: () => {
return toRaw(getTableInstance().getCacheColumns())
},
getForm: () => {
return unref(formRef) as unknown as FormActionType
},
setShowPagination: async (show: boolean) => {
await getTableInstance().setShowPagination(show)
},
getShowPagination: () => {
return toRaw(getTableInstance().getShowPagination())
},
expandAll: () => {
getTableInstance().expandAll()
},
expandRows: (keys: string[]) => {
getTableInstance().expandRows(keys)
},
collapseAll: () => {
getTableInstance().collapseAll()
},
scrollTo: (pos: string) => {
getTableInstance().scrollTo(pos)
},
setShowForm: async (flag: boolean) => {
await getTableInstance().setShowForm(flag)
},
getShowForm: () => {
return toRaw(getTableInstance().getShowForm())
},
}
return [register, methods]
}