useTableData.ts 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. import type { KeyType } from '../components/ColumnSet/index.vue'
  2. import { tableColumnInGroup } from '../components/ColumnSet/index.vue'
  3. type tableColumnsGroups = {
  4. groupTitle: string
  5. children: {
  6. key: KeyType
  7. title: string
  8. width?: number
  9. headerClass: string
  10. }[]
  11. }[]
  12. enum Alignment {
  13. LEFT = 'left',
  14. CENTER = 'center',
  15. RIGHT = 'right',
  16. }
  17. const gourpNumber = 3
  18. const groupColumnNumber = 6
  19. const headerClassReflect = ['bg-yellow', 'bg-green', 'bg-cyan']
  20. export default function useTableData() {
  21. const tableColumns = ref<tableColumnInGroup[]>([])
  22. const tableData = ref<{}[]>([])
  23. const getTableData = () => {
  24. const groups: tableColumnsGroups = Array.from({ length: gourpNumber }).map(
  25. (_, groupIndex) => ({
  26. groupTitle: `group${groupIndex + 1}`,
  27. children: Array.from({ length: groupColumnNumber }).map(
  28. (_, columnIndex) => ({
  29. key: `group${groupIndex}-column${columnIndex}`,
  30. title: `${groupIndex + 1}组-${columnIndex + 1}列`,
  31. width: 100,
  32. headerClass: headerClassReflect[groupIndex] || '',
  33. })
  34. ),
  35. })
  36. )
  37. tableColumns.value = groups.reduce(
  38. (columns: tableColumnInGroup[], group) => {
  39. columns.push(
  40. ...group.children.map(({ key, title, width, headerClass }) => ({
  41. key,
  42. dataKey: key,
  43. title,
  44. width: width ?? 80,
  45. headerClass,
  46. align: Alignment.CENTER,
  47. groupTitle: group.groupTitle,
  48. }))
  49. )
  50. return columns
  51. },
  52. []
  53. )
  54. tableData.value = Array.from({ length: 20 }).map((_, rowIndex) =>
  55. tableColumns.value.reduce((rowData, column, columnIndex) => {
  56. rowData[column.dataKey] = `${rowIndex + 1}行-${
  57. Math.floor(columnIndex / groupColumnNumber) + 1
  58. }组-${(columnIndex % groupColumnNumber) + 1}列`
  59. return rowData
  60. }, {})
  61. )
  62. }
  63. onMounted(() => {
  64. getTableData()
  65. })
  66. return {
  67. tableColumns,
  68. tableData,
  69. }
  70. }