1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
"use client"
import * as React from "react"
import { type DataTableRowAction } from "@/types/table"
import { type ColumnDef } from "@tanstack/react-table"
import { formatDateTime } from "@/lib/utils"
import { Badge } from "@/components/ui/badge"
import { Checkbox } from "@/components/ui/checkbox"
import { DataTableColumnHeaderSimple } from "@/components/data-table/data-table-column-simple-header"
import {
FileActionsDropdown,
FileNameLink
} from "@/components/ui/file-actions"
import { basicContractColumnsConfig } from "@/config/basicContractColumnsConfig"
import { BasicContractView } from "@/db/schema"
interface GetColumnsProps {
setRowAction: React.Dispatch<React.SetStateAction<DataTableRowAction<BasicContractView> | null>>
}
/**
* 공용 파일 다운로드 유틸리티를 사용하는 간소화된 컬럼 정의
*/
export function getColumns({ setRowAction }: GetColumnsProps): ColumnDef<BasicContractView>[] {
// ----------------------------------------------------------------
// 1) select 컬럼 (체크박스)
// ----------------------------------------------------------------
const selectColumn: ColumnDef<BasicContractView> = {
id: "select",
header: ({ table }) => (
<Checkbox
checked={
table.getIsAllPageRowsSelected() ||
(table.getIsSomePageRowsSelected() && "indeterminate")
}
onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}
aria-label="Select all"
className="translate-y-0.5"
/>
),
cell: ({ row }) => (
<Checkbox
checked={row.getIsSelected()}
onCheckedChange={(value) => row.toggleSelected(!!value)}
aria-label="Select row"
className="translate-y-0.5"
/>
),
maxSize: 30,
enableSorting: false,
enableHiding: false,
}
// ----------------------------------------------------------------
// 2) 파일 다운로드 컬럼 (공용 컴포넌트 사용)
// ----------------------------------------------------------------
const downloadColumn: ColumnDef<BasicContractView> = {
id: "download",
header: "",
cell: ({ row }) => {
const template = row.original;
if (!template.filePath || !template.fileName) {
return null;
}
return (
<FileActionsDropdown
filePath={template.filePath}
fileName={template.fileName}
variant="ghost"
size="icon"
/>
);
},
maxSize: 30,
enableSorting: false,
}
// ----------------------------------------------------------------
// 3) 일반 컬럼들을 "그룹"별로 묶어 중첩 columns 생성
// ----------------------------------------------------------------
const groupMap: Record<string, ColumnDef<BasicContractView>[]> = {}
basicContractColumnsConfig.forEach((cfg) => {
const groupName = cfg.group || "_noGroup"
if (!groupMap[groupName]) {
groupMap[groupName] = []
}
const childCol: ColumnDef<BasicContractView> = {
accessorKey: cfg.id,
enableResizing: true,
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title={cfg.label} />
),
meta: {
excelHeader: cfg.excelHeader,
group: cfg.group,
type: cfg.type,
},
cell: ({ row, cell }) => {
// 날짜 형식 처리
if (cfg.id === "createdAt" || cfg.id === "updatedAt") {
const dateVal = cell.getValue() as Date
return formatDateTime(dateVal)
}
// Status 컬럼에 Badge 적용 (확장)
if (cfg.id === "status") {
const status = row.getValue(cfg.id) as string
let variant: "default" | "secondary" | "destructive" | "outline" = "secondary";
let label = status;
switch (status) {
case "ACTIVE":
variant = "default";
label = "활성";
break;
case "INACTIVE":
variant = "secondary";
label = "비활성";
break;
case "PENDING":
variant = "outline";
label = "대기중";
break;
case "COMPLETED":
variant = "default";
label = "완료";
break;
default:
variant = "secondary";
label = status;
}
return <Badge variant={variant}>{label}</Badge>
}
// ✅ 파일 이름 컬럼 (공용 컴포넌트 사용)
if (cfg.id === "fileName") {
const fileName = cell.getValue() as string;
const filePath = row.original.filePath;
if (fileName && filePath) {
return (
<FileNameLink
filePath={filePath}
fileName={fileName}
maxLength={200}
showIcon={true}
/>
);
}
return fileName || "";
}
// 나머지 컬럼은 그대로 값 표시
return row.getValue(cfg.id) ?? ""
},
minSize: 80,
}
groupMap[groupName].push(childCol)
})
// ----------------------------------------------------------------
// 4) groupMap에서 실제 상위 컬럼(그룹)을 만들기
// ----------------------------------------------------------------
const nestedColumns: ColumnDef<BasicContractView>[] = []
Object.entries(groupMap).forEach(([groupName, colDefs]) => {
if (groupName === "_noGroup") {
nestedColumns.push(...colDefs)
} else {
nestedColumns.push({
id: groupName,
header: groupName,
columns: colDefs,
})
}
})
// ----------------------------------------------------------------
// 5) 최종 컬럼 배열
// ----------------------------------------------------------------
return [
selectColumn,
downloadColumn, // ✅ 공용 파일 액션 컴포넌트 사용
...nestedColumns,
]
}
|