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
|
"use client"
import * as React from "react"
import { useRouter } from "next/navigation"
import type {
DataTableAdvancedFilterField,
DataTableFilterField,
DataTableRowAction,
} from "@/types/table"
import { cn } from "@/lib/utils"
import { PanelLeftClose, PanelLeftOpen } from "lucide-react"
import { useDataTable } from "@/hooks/use-data-table"
import { DataTable } from "@/components/data-table/data-table"
import { DataTableAdvancedToolbar } from "@/components/data-table/data-table-advanced-toolbar"
import { Button } from "@/components/ui/button"
import { getColumns } from "./tech-vendors-table-columns"
import { getTechVendors, getTechVendorStatusCounts } from "../service"
import { TechVendor, techVendors, TechVendorWithAttachments } from "@/db/schema/techVendors"
import { TechVendorsTableToolbarActions } from "./tech-vendors-table-toolbar-actions"
import { UpdateVendorSheet } from "./update-vendor-sheet"
import { getVendorStatusIcon } from "../utils"
import { TechVendorsFilterSheet } from "./tech-vendors-filter-sheet"
// import { ViewTechVendorLogsDialog } from "./view-tech-vendors-logs-dialog"
// 필터 패널 관련 상수
const FILTER_PANEL_WIDTH = 400;
const LAYOUT_HEADER_HEIGHT = 60;
const LOCAL_HEADER_HEIGHT = 60;
const FIXED_FILTER_HEIGHT = "calc(100vh - 120px)";
interface TechVendorsTableProps {
promises: Promise<
[
Awaited<ReturnType<typeof getTechVendors>>,
Awaited<ReturnType<typeof getTechVendorStatusCounts>>
]
>
className?: string;
calculatedHeight?: string;
}
export function TechVendorsTable({
promises,
className,
calculatedHeight
}: TechVendorsTableProps) {
// Suspense로 받아온 데이터
const [{ data, pageCount }, statusCounts] = React.use(promises)
const [isCompact, setIsCompact] = React.useState<boolean>(false)
const [rowAction, setRowAction] = React.useState<DataTableRowAction<TechVendor> | null>(null)
// 필터 패널 상태
const [isFilterPanelOpen, setIsFilterPanelOpen] = React.useState(false)
// **router** 획득
const router = useRouter()
// getColumns() 호출 시, router를 주입
const columns = React.useMemo(
() => getColumns({ setRowAction, router }),
[setRowAction, router]
)
// 상태 한글 변환 유틸리티 함수
const getStatusDisplay = (status: string): string => {
const statusMap: Record<string, string> = {
"ACTIVE": "활성 상태",
"INACTIVE": "비활성 상태",
"BLACKLISTED": "거래 금지",
"PENDING_INVITE": "초대 대기",
"INVITED": "초대 완료",
"QUOTE_COMPARISON": "견적 비교",
};
return statusMap[status] || status;
};
const filterFields: DataTableFilterField<TechVendorWithAttachments>[] = [
{
id: "status",
label: "상태",
options: techVendors.status.enumValues.map((status) => ({
label: getStatusDisplay(status),
value: status,
count: statusCounts[status],
})),
},
{ id: "vendorCode", label: "업체 코드" },
]
const advancedFilterFields: DataTableAdvancedFilterField<TechVendorWithAttachments>[] = [
{ id: "vendorName", label: "업체명", type: "text" },
{ id: "vendorCode", label: "업체코드", type: "text" },
{ id: "email", label: "이메일", type: "text" },
{ id: "country", label: "국가", type: "text" },
{
id: "status",
label: "업체승인상태",
type: "multi-select",
options: techVendors.status.enumValues.map((status) => ({
label: getStatusDisplay(status),
value: status,
count: statusCounts[status],
icon: getVendorStatusIcon(status),
})),
},
{
id: "techVendorType",
label: "벤더 타입",
type: "multi-select",
options: [
{ label: "조선", value: "조선" },
{ label: "해양TOP", value: "해양TOP" },
{ label: "해양HULL", value: "해양HULL" },
],
},
{
id: "workTypes",
label: "Work Type",
type: "multi-select",
options: [
// 조선 workTypes
{ label: "기장", value: "기장" },
{ label: "전장", value: "전장" },
{ label: "선실", value: "선실" },
{ label: "배관", value: "배관" },
{ label: "철의", value: "철의" },
{ label: "선체", value: "선체" },
// 해양TOP workTypes
{ label: "TM", value: "TM" },
{ label: "TS", value: "TS" },
{ label: "TE", value: "TE" },
{ label: "TP", value: "TP" },
{ label: "TA", value: "TA" },
// 해양HULL workTypes
{ label: "HA", value: "HA" },
{ label: "HE", value: "HE" },
{ label: "HH", value: "HH" },
{ label: "HM", value: "HM" },
{ label: "NC", value: "NC" },
{ label: "HP", value: "HP" },
{ label: "HO", value: "HO" },
],
},
{ id: "createdAt", label: "등록일", type: "date" },
{ id: "updatedAt", label: "수정일", type: "date" },
]
const { table } = useDataTable({
data,
columns,
pageCount,
filterFields,
enablePinning: true,
enableAdvancedFilter: true,
initialState: {
sorting: [{ id: "createdAt", desc: true }],
columnPinning: { right: ["actions"] },
},
getRowId: (originalRow) => String(originalRow.id),
shallow: false,
clearOnDefault: true,
})
const handleCompactChange = React.useCallback((compact: boolean) => {
setIsCompact(compact)
}, [])
// 테이블 새로고침 핸들러
const handleRefresh = React.useCallback(() => {
router.refresh()
}, [router])
// 필터 패널 검색 핸들러
const handleSearch = React.useCallback(() => {
router.refresh()
}, [router])
return (
<div
className={cn("flex flex-col relative", className)}
style={{ height: calculatedHeight }}
>
{/* Filter Panel */}
<div
className={cn(
"fixed left-0 bg-background border-r z-30 flex flex-col transition-all duration-300 ease-in-out overflow-hidden",
isFilterPanelOpen ? "border-r shadow-lg" : "border-r-0"
)}
style={{
width: isFilterPanelOpen ? `${FILTER_PANEL_WIDTH}px` : '0px',
top: `${LAYOUT_HEADER_HEIGHT*2}px`,
height: FIXED_FILTER_HEIGHT
}}
>
{/* Filter Content */}
<div className="h-full">
<TechVendorsFilterSheet
isOpen={isFilterPanelOpen}
onClose={() => setIsFilterPanelOpen(false)}
onSearch={handleSearch}
isLoading={false}
/>
</div>
</div>
{/* Main Content */}
<div
className="flex flex-col transition-all duration-300 ease-in-out"
style={{
width: isFilterPanelOpen ? `calc(100% - ${FILTER_PANEL_WIDTH}px)` : '100%',
marginLeft: isFilterPanelOpen ? `${FILTER_PANEL_WIDTH}px` : '0px',
height: '100%'
}}
>
{/* Header Bar - 고정 높이 */}
<div
className="flex items-center justify-between p-4 bg-background border-b"
style={{
height: `${LOCAL_HEADER_HEIGHT}px`,
flexShrink: 0
}}
>
<div className="flex items-center gap-3">
<Button
variant="outline"
size="sm"
type='button'
onClick={() => setIsFilterPanelOpen(!isFilterPanelOpen)}
className="flex items-center shadow-sm"
>
{isFilterPanelOpen ? <PanelLeftClose className="size-4"/> : <PanelLeftOpen className="size-4"/>}
</Button>
</div>
{/* Right side info
<div className="text-sm text-muted-foreground">
{data && (
<span>총 {data.length || 0}건</span>
)}
</div> */}
</div>
{/* DataTable */}
<div className="flex-1 overflow-hidden">
<DataTable
table={table}
compact={isCompact}
// floatingBar={<TechVendorsTableFloatingBar table={table} />}
>
<DataTableAdvancedToolbar
table={table}
filterFields={advancedFilterFields}
shallow={false}
enableCompactToggle={true}
compactStorageKey="techVendorsTableCompact"
onCompactChange={handleCompactChange}
>
<TechVendorsTableToolbarActions
table={table}
onRefresh={handleRefresh}
/>
</DataTableAdvancedToolbar>
</DataTable>
</div>
</div>
<UpdateVendorSheet
open={rowAction?.type === "update"}
onOpenChange={() => setRowAction(null)}
vendor={rowAction?.row.original ?? null}
/>
</div>
)
}
|