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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
|
"use client"
import * as React from "react"
import { type ColumnDef } from "@tanstack/react-table"
import { ArrowUpDown, Copy, MoreHorizontal } from "lucide-react"
import { Badge } from "@/components/ui/badge"
import { Button } from "@/components/ui/button"
import { Checkbox } from "@/components/ui/checkbox"
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuSeparator,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu"
import { toast } from "sonner"
import { formatDate } from "@/lib/utils"
import { OcrRow } from "@/db/schema"
import { type DataTableRowAction } from "@/types/table"
import { DataTableColumnHeaderSimple } from "@/components/data-table/data-table-column-simple-header"
interface GetColumnsProps {
setRowAction: React.Dispatch<React.SetStateAction<DataTableRowAction<OcrRow> | null>>
}
export function getColumns({ setRowAction }: GetColumnsProps): ColumnDef<OcrRow>[] {
return [
// 체크박스 컬럼
{
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"
/>
),
enableSorting: false,
enableHiding: false,
},
// Report No 컬럼
{
accessorKey: "reportNo",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="Report No" />
),
cell: ({ getValue }) => {
const reportNo = getValue() as string
return (
<div className="flex items-center gap-2">
{/* <Badge variant="outline" className="font-mono text-xs"> */}
{reportNo || "N/A"}
{/* </Badge> */}
</div>
)
},
enableSorting: true,
enableHiding: false,
},
// No 컬럼
{
accessorKey: "no",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="No" />
),
cell: ({ getValue }) => {
const no = getValue() as string
return (
<div className="font-medium">
{no || "-"}
</div>
)
},
enableSorting: true,
},
// Identification No 컬럼
{
accessorKey: "identificationNo",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="Identification No" />
),
cell: ({ getValue }) => {
const identificationNo = getValue() as string
return (
<div className="max-w-[200px] truncate font-mono text-sm" title={identificationNo}>
{identificationNo || "-"}
</div>
)
},
enableSorting: true,
},
// Tag No 컬럼
{
accessorKey: "tagNo",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="Tag No" />
),
cell: ({ getValue }) => {
const tagNo = getValue() as string
return (
<div className="font-mono text-sm">
{tagNo || "-"}
</div>
)
},
enableSorting: true,
},
// Joint No 컬럼
{
accessorKey: "jointNo",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="Joint No" />
),
cell: ({ getValue }) => {
const jointNo = getValue() as string
return (
<div className="font-mono text-sm">
{jointNo || "-"}
</div>
)
},
enableSorting: true,
},
// Joint Type 컬럼
{
accessorKey: "jointType",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="Joint Type" />
),
cell: ({ getValue }) => {
const jointType = getValue() as string
return (
<Badge variant={jointType === "B" ? "default" : "secondary"}>
{jointType || "N/A"}
</Badge>
)
},
enableSorting: true,
},
// Welding Date 컬럼
{
accessorKey: "weldingDate",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="Welding Date" />
),
cell: ({ getValue }) => {
const weldingDate = getValue() as string
return (
<div className="text-sm">
{weldingDate || "-"}
</div>
)
},
enableSorting: true,
},
// Confidence 컬럼
{
accessorKey: "confidence",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="Confidence" />
),
cell: ({ getValue }) => {
const confidence = parseFloat(getValue() as string) || 0
const percentage = Math.round(confidence * 100)
let variant: "default" | "secondary" | "destructive" = "default"
if (percentage < 70) variant = "destructive"
else if (percentage < 90) variant = "secondary"
return (
<Badge variant={variant}>
{percentage}%
</Badge>
)
},
enableSorting: true,
},
// Source Table 컬럼
// {
// accessorKey: "sourceTable",
// header: ({ column }) => (
// <DataTableColumnHeaderSimple column={column} title="Table" />
// ),
// cell: ({ getValue }) => {
// const sourceTable = getValue() as number
// return (
// <div className="text-center">
// <Badge variant="outline" className="text-xs">
// T{sourceTable}
// </Badge>
// </div>
// )
// },
// enableSorting: true,
// },
// // Source Row 컬럼
// {
// accessorKey: "sourceRow",
// header: ({ column }) => (
// <DataTableColumnHeaderSimple column={column} title="Row" />
// ),
// cell: ({ getValue }) => {
// const sourceRow = getValue() as number
// return (
// <div className="text-center text-sm text-muted-foreground">
// {sourceRow}
// </div>
// )
// },
// enableSorting: true,
// },
{
accessorKey: "userName",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="User Name" />
),
cell: ({ getValue }) => {
const userName = getValue() as string
return (
<div className="text-sm">
{userName || "-"}
</div>
)
},
enableSorting: true,
},
{
accessorKey: "userEmail",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="User Email" />
),
cell: ({ getValue }) => {
const userEmail = getValue() as string
return (
<div className="text-sm">
{userEmail || "-"}
</div>
)
},
enableSorting: true,
size:100
},
// Created At 컬럼
{
accessorKey: "createdAt",
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="생성일" />
),
cell: ({ cell }) => {
const date = cell.getValue() as Date
return (
<div className="text-sm text-muted-foreground">
{formatDate(date)}
</div>
)
},
enableSorting: true,
},
// Actions 컬럼
{
id: "actions",
cell: ({ row }) => (
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button
aria-label="Open menu"
variant="ghost"
className="flex size-8 p-0 data-[state=open]:bg-muted"
>
<MoreHorizontal className="size-4" aria-hidden="true" />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end" className="w-40">
<DropdownMenuItem
onClick={() => {
setRowAction({ type: "update", row })
}}
// className="text-destructive focus:text-destructive"
>
Update
</DropdownMenuItem>
<DropdownMenuSeparator />
<DropdownMenuItem
onClick={() => {
setRowAction({ type: "delete", row })
}}
className="text-destructive focus:text-destructive"
>
Delete
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
),
enableSorting: false,
enableHiding: false,
},
]
}
|