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
|
"use client"
import * as React from "react"
import { type DataTableRowAction } from "@/types/table"
import { type ColumnDef } from "@tanstack/react-table"
import { Ellipsis, Eye } from "lucide-react"
import type { AppRouterInstance } from "next/dist/shared/lib/app-router-context.shared-runtime"
import { formatDate } from "@/lib/utils"
import { Badge } from "@/components/ui/badge"
import { Button } from "@/components/ui/button"
import { Checkbox } from "@/components/ui/checkbox"
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuSeparator,
DropdownMenuShortcut,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu"
import { DataTableColumnHeaderSimple } from "@/components/data-table/data-table-column-simple-header"
import { type GtcDocumentWithRelations } from "@/db/schema/gtc"
interface GetColumnsProps {
setRowAction: React.Dispatch<React.SetStateAction<DataTableRowAction<GtcDocumentWithRelations> | null>>
router: AppRouterInstance // ← 추가
}
/** GTC Documents 테이블 컬럼 정의 (그룹 헤더 제거) */
export function getColumns({ setRowAction, router }: GetColumnsProps): ColumnDef<GtcDocumentWithRelations>[] {
const selectColumn: ColumnDef<GtcDocumentWithRelations> = {
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"
/>
),
size: 40,
enableSorting: false,
enableHiding: false,
}
const basicInfoColumns: ColumnDef<GtcDocumentWithRelations>[] = [
{
accessorKey: "type",
header: ({ column }) => <DataTableColumnHeaderSimple column={column} title="구분" />,
cell: ({ row }) => {
const type = row.getValue("type") as string
return (
<Badge variant={type === "standard" ? "default" : "secondary"}>
{type === "standard" ? "표준" : "프로젝트"}
</Badge>
)
},
size: 100,
enableResizing: true,
meta: { excelHeader: "구분" },
},
{
accessorKey: "project",
header: ({ column }) => <DataTableColumnHeaderSimple column={column} title="프로젝트" />,
cell: ({ row }) => {
const project = row.original.project
if (!project) return <span className="text-muted-foreground">-</span>
return (
<div className="flex flex-col min-w-0">
<span className="font-medium truncate">{project.name}</span>
<span className="text-xs text-muted-foreground">{project.code}</span>
</div>
)
},
size: 200,
enableResizing: true,
meta: { excelHeader: "프로젝트" },
},
{
accessorKey: "title",
header: ({ column }) => <DataTableColumnHeaderSimple column={column} title="GTC 제목" />,
cell: ({ row }) => {
const title = row.original.title
if (!title) return <span className="text-muted-foreground">-</span>
return (
<div className="flex flex-col min-w-0">
<span className="font-medium truncate">{title}</span>
</div>
)
},
size: 200,
enableResizing: true,
meta: { excelHeader: "GTC 제목" },
},
{
accessorKey: "revision",
header: ({ column }) => <DataTableColumnHeaderSimple column={column} title="Rev." />,
cell: ({ row }) => {
const revision = row.getValue("revision") as number
return <span className="font-mono text-sm">v{revision}</span>
},
size: 80,
enableResizing: true,
meta: { excelHeader: "Rev." },
},
]
const auditColumns: ColumnDef<GtcDocumentWithRelations>[] = [
{
accessorKey: "createdAt",
header: ({ column }) => <DataTableColumnHeaderSimple column={column} title="최초등록일" />,
cell: ({ row }) => {
const date = row.getValue("createdAt") as Date
return date ? formatDate(date, "KR") : "-"
},
size: 120,
enableResizing: true,
meta: { excelHeader: "최초등록일" },
},
{
accessorKey: "createdBy",
header: ({ column }) => <DataTableColumnHeaderSimple column={column} title="최초등록자" />,
cell: ({ row }) => {
const createdBy = row.original.createdBy
return createdBy ? <span className="text-sm">{createdBy.name}</span> : <span className="text-muted-foreground">-</span>
},
size: 120,
enableResizing: true,
meta: { excelHeader: "최초등록자" },
},
{
accessorKey: "updatedAt",
header: ({ column }) => <DataTableColumnHeaderSimple column={column} title="최종수정일" />,
cell: ({ row }) => {
const date = row.getValue("updatedAt") as Date
return date ? formatDate(date, "KR") : "-"
},
size: 120,
enableResizing: true,
meta: { excelHeader: "최종수정일" },
},
{
accessorKey: "updatedBy",
header: ({ column }) => <DataTableColumnHeaderSimple column={column} title="최종수정자" />,
cell: ({ row }) => {
const updatedBy = row.original.updatedBy
return updatedBy ? <span className="text-sm">{updatedBy.name}</span> : <span className="text-muted-foreground">-</span>
},
size: 120,
enableResizing: true,
meta: { excelHeader: "최종수정자" },
},
{
accessorKey: "editReason",
header: ({ column }) => <DataTableColumnHeaderSimple column={column} title="최종 편집사유" />,
cell: ({ row }) => {
const reason = row.getValue("editReason") as string
return reason ? (
<span className="text-sm" title={reason}>
{reason.length > 30 ? `${reason.substring(0, 30)}...` : reason}
</span>
) : (
<span className="text-muted-foreground">-</span>
)
},
size: 200,
enableResizing: true,
meta: { excelHeader: "최종 편집사유" },
},
]
const actionsColumn: ColumnDef<GtcDocumentWithRelations> = {
id: "actions",
enableHiding: false,
cell: ({ row }) => {
const gtcDocument = row.original
const handleViewDetails = () => {
router.push(`/evcp/basic-contract-template/gtc/${gtcDocument.id}`)
}
const handleCreateNewRevision = () => {
setRowAction({ row, type: "createRevision" })
}
return (
<DropdownMenu>
<DropdownMenuTrigger asChild>
<Button
aria-label="Open menu"
variant="ghost"
className="flex size-8 p-0 data-[state=open]:bg-muted"
>
<Ellipsis className="size-4" aria-hidden />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end" className="w-48">
<DropdownMenuItem onSelect={handleViewDetails}>
<Eye className="mr-2 h-4 w-4" />
상세
</DropdownMenuItem>
<DropdownMenuSeparator />
<DropdownMenuItem onSelect={() => setRowAction({ row, type: "update" })}>
수정
</DropdownMenuItem>
<DropdownMenuItem onSelect={handleCreateNewRevision}>
새 리비전 생성
</DropdownMenuItem>
<DropdownMenuSeparator />
<DropdownMenuItem onSelect={() => setRowAction({ row, type: "delete" })}>
삭제
<DropdownMenuShortcut>⌘⌫</DropdownMenuShortcut>
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
)
},
size: 40,
}
// 그룹 없이 평평한 배열 반환
return [
selectColumn,
...basicInfoColumns,
...auditColumns,
actionsColumn,
]
}
|