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
|
"use client"
import * as React from "react"
import { type DataTableRowAction } from "@/types/table"
import { type ColumnDef, type Row, type Column } from "@tanstack/react-table"
import { Ellipsis } from "lucide-react"
import { formatDate } from "@/lib/utils"
import { Button } from "@/components/ui/button"
import { Checkbox } from "@/components/ui/checkbox"
import { Badge } from "@/components/ui/badge"
import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuItem,
DropdownMenuShortcut,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu"
import { ContactPossibleItemDetail } from "../service"
import { DataTableColumnHeaderSimple } from "@/components/data-table/data-table-column-simple-header"
import { contactPossibleItemsColumnsConfig } from "@/config/contactPossibleItemsColumnsConfig"
interface GetColumnsProps {
setRowAction: React.Dispatch<React.SetStateAction<DataTableRowAction<ContactPossibleItemDetail> | null>>;
}
/**
* tanstack table 컬럼 정의 (중첩 헤더 버전)
*/
export function getColumns({ setRowAction }: GetColumnsProps): ColumnDef<ContactPossibleItemDetail>[] {
// ----------------------------------------------------------------
// 1) select 컬럼 (체크박스)
// ----------------------------------------------------------------
const selectColumn: ColumnDef<ContactPossibleItemDetail> = {
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,
}
// ----------------------------------------------------------------
// 2) actions 컬럼 (Dropdown 메뉴)
// ----------------------------------------------------------------
const actionsColumn: ColumnDef<ContactPossibleItemDetail> = {
id: "actions",
enableHiding: false,
cell: function Cell({ row }) {
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="true" />
</Button>
</DropdownMenuTrigger>
<DropdownMenuContent align="end" className="w-40">
<DropdownMenuItem
onSelect={() => setRowAction({ row, type: "delete" })}
>
삭제
<DropdownMenuShortcut>⌘⌫</DropdownMenuShortcut>
</DropdownMenuItem>
</DropdownMenuContent>
</DropdownMenu>
)
},
size: 40,
}
// ----------------------------------------------------------------
// 3) config를 기반으로 컬럼 그룹들을 동적으로 생성
// ----------------------------------------------------------------
// 특수한 셀 렌더링이 필요한 컬럼들을 위한 헬퍼 함수
const getCellRenderer = (accessorKey: keyof ContactPossibleItemDetail) => {
switch (accessorKey) {
case 'createdAt':
case 'updatedAt':
return function DateCell({ row }: { row: Row<ContactPossibleItemDetail> }) {
const dateVal = row.getValue(accessorKey) as Date
return formatDate(dateVal, "ko-KR")
}
case 'isPrimary':
return function PrimaryCell({ row }: { row: Row<ContactPossibleItemDetail> }) {
const isPrimary = row.original.isPrimary
return isPrimary ? "Y" : "N"
}
case 'techVendorType':
return function VendorTypeCell({ row }: { row: Row<ContactPossibleItemDetail> }) {
const techVendorType = row.original.techVendorType
// 벤더 타입 파싱 개선 - null/undefined 안전 처리
let types: string[] = [];
if (!techVendorType) {
types = [];
} else if (techVendorType.startsWith('[') && techVendorType.endsWith(']')) {
// JSON 배열 형태
try {
const parsed = JSON.parse(techVendorType);
types = Array.isArray(parsed) ? parsed.filter(Boolean) : [techVendorType];
} catch {
types = [techVendorType];
}
} else if (techVendorType.includes(',')) {
// 콤마로 구분된 문자열
types = techVendorType.split(',').map(t => t.trim()).filter(Boolean);
} else {
// 단일 문자열
types = [techVendorType.trim()].filter(Boolean);
}
// 벤더 타입 정렬 - 조선 > 해양TOP > 해양HULL 순
const typeOrder = ["조선", "해양TOP", "해양HULL"];
types.sort((a, b) => {
const indexA = typeOrder.indexOf(a);
const indexB = typeOrder.indexOf(b);
// 정의된 순서에 있는 경우 우선순위 적용
if (indexA !== -1 && indexB !== -1) {
return indexA - indexB;
}
return a.localeCompare(b);
});
return (
<div className="flex flex-wrap gap-1">
{types.length > 0 ? types.map((type, index) => (
<Badge key={`${type}-${index}`} variant="secondary" className="text-xs">
{type}
</Badge>
)) : (
<span className="text-muted-foreground">-</span>
)}
</div>
)
}
case 'vendorCountry':
case 'contactName':
case 'contactPosition':
case 'contactTitle':
case 'contactEmail':
case 'contactPhone':
case 'contactCountry':
return function OptionalCell({ row }: { row: Row<ContactPossibleItemDetail> }) {
const value = row.original[accessorKey]
return value || <span className="text-muted-foreground">-</span>
}
default:
return function DefaultCell({ row }: { row: Row<ContactPossibleItemDetail> }) {
return row.original[accessorKey] ?? ""
}
}
}
const baseColumns: ColumnDef<ContactPossibleItemDetail>[] = contactPossibleItemsColumnsConfig.map(group => ({
id: group.id,
header: group.header,
columns: group.columns.map(colConfig => ({
accessorKey: colConfig.accessorKey,
enableResizing: colConfig.enableResizing,
enableSorting: colConfig.enableSorting,
size: colConfig.size,
minSize: colConfig.minSize,
maxSize: colConfig.maxSize,
header: function HeaderCell({ column }: { column: Column<ContactPossibleItemDetail> }) {
return <DataTableColumnHeaderSimple column={column} title={colConfig.title} />
},
cell: getCellRenderer(colConfig.accessorKey),
})),
}))
// ----------------------------------------------------------------
// 4) 최종 컬럼 배열: select, baseColumns, actions
// ----------------------------------------------------------------
return [
selectColumn,
...baseColumns,
actionsColumn,
]
}
|