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
|
"use client";
import React, { useState } from "react";
import {
useReactTable,
getCoreRowModel,
getExpandedRowModel,
flexRender,
ExpandedState,
} from "@tanstack/react-table";
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogDescription,
} from "@/components/ui/dialog";
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from "@/components/ui/table";
import { Button } from "@/components/ui/button";
import { Loader2 } from "lucide-react";
import { swpRevisionColumns, swpFileColumns, type RevisionRow, type FileRow } from "./swp-table-columns";
import type { SwpDocumentWithStats } from "../actions";
interface SwpRevisionListDialogProps {
open: boolean;
onOpenChange: (open: boolean) => void;
document: SwpDocumentWithStats | null;
revisions: RevisionRow[];
fileData: Record<number, FileRow[]>;
loadingRevisions: boolean;
loadingFiles: Set<number>;
onLoadFiles: (revisionId: number) => void;
onLoadAllFiles: () => void;
}
export function SwpRevisionListDialog({
open,
onOpenChange,
document,
revisions,
fileData,
loadingRevisions,
loadingFiles,
onLoadFiles,
onLoadAllFiles,
}: SwpRevisionListDialogProps) {
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="max-w-6xl max-h-[90vh]">
<DialogHeader>
<DialogTitle>문서 상세</DialogTitle>
{document && (
<DialogDescription>
{document.DOC_NO} - {document.DOC_TITLE}
</DialogDescription>
)}
</DialogHeader>
{document && (
<div className="space-y-4 overflow-y-auto">
{/* 문서 정보 */}
<div className="grid grid-cols-1 md:grid-cols-4 gap-4 p-4 bg-muted/30 rounded-lg">
<div>
<span className="text-sm font-semibold">프로젝트:</span>
<div className="text-sm">{document.PROJ_NO}</div>
{document.PROJ_NM && (
<div className="text-xs text-muted-foreground">{document.PROJ_NM}</div>
)}
</div>
<div>
<span className="text-sm font-semibold">패키지:</span>
<div className="text-sm">{document.PKG_NO || "-"}</div>
</div>
<div>
<span className="text-sm font-semibold">업체:</span>
<div className="text-sm">{document.CPY_NM || "-"}</div>
{document.VNDR_CD && (
<div className="text-xs text-muted-foreground">{document.VNDR_CD}</div>
)}
</div>
<div>
<span className="text-sm font-semibold">마지막 리비전 넘버:</span>
<div className="text-sm">{document.LTST_REV_NO || "-"}</div>
</div>
</div>
{/* 리비전 및 파일 목록 */}
{loadingRevisions ? (
<div className="flex items-center justify-center p-8">
<Loader2 className="h-6 w-6 animate-spin" />
<span className="ml-2">리비전 로딩 중...</span>
</div>
) : revisions.length ? (
<DocumentDetailView
revisions={revisions}
fileData={fileData}
loadingFiles={loadingFiles}
onLoadFiles={onLoadFiles}
onLoadAllFiles={onLoadAllFiles}
/>
) : (
<div className="p-8 text-center text-muted-foreground">
리비전 없음
</div>
)}
</div>
)}
</DialogContent>
</Dialog>
);
}
// ============================================================================
// 문서 상세 뷰 (Dialog용)
// ============================================================================
interface DocumentDetailViewProps {
revisions: RevisionRow[];
fileData: Record<number, FileRow[]>;
loadingFiles: Set<number>;
onLoadFiles: (revisionId: number) => void;
onLoadAllFiles: () => void;
}
function DocumentDetailView({
revisions,
fileData,
loadingFiles,
onLoadFiles,
onLoadAllFiles,
}: DocumentDetailViewProps) {
const [expandedRevisions, setExpandedRevisions] = useState<ExpandedState>({});
const [allExpanded, setAllExpanded] = useState(false);
const revisionTable = useReactTable({
data: revisions,
columns: swpRevisionColumns,
state: {
expanded: expandedRevisions,
},
onExpandedChange: setExpandedRevisions,
getCoreRowModel: getCoreRowModel(),
getExpandedRowModel: getExpandedRowModel(),
getRowCanExpand: () => true,
});
const handleExpandAll = () => {
if (allExpanded) {
setExpandedRevisions({});
} else {
const expanded: ExpandedState = {};
revisions.forEach((_, index) => {
expanded[index] = true;
});
setExpandedRevisions(expanded);
onLoadAllFiles();
}
setAllExpanded(!allExpanded);
};
const handleRevisionExpand = (revisionId: number) => {
onLoadFiles(revisionId);
};
return (
<div className="space-y-4">
{/* 전체 펼치기/접기 버튼 */}
<div className="flex justify-end">
<Button
variant="outline"
size="sm"
onClick={handleExpandAll}
>
{allExpanded ? "모두 접기" : "모두 펼치기"}
</Button>
</div>
{/* 리비전 테이블 */}
<div className="rounded-md border">
<Table>
<TableHeader>
{revisionTable.getHeaderGroups().map((headerGroup) => (
<TableRow key={headerGroup.id} className="bg-muted/50">
{headerGroup.headers.map((header) => (
<TableHead key={header.id} className="font-semibold">
{header.isPlaceholder
? null
: flexRender(
header.column.columnDef.header,
header.getContext()
)}
</TableHead>
))}
</TableRow>
))}
</TableHeader>
<TableBody>
{revisionTable.getRowModel().rows.map((row) => (
<React.Fragment key={row.id}>
{/* 리비전 행 */}
<TableRow className="bg-muted/20">
{row.getVisibleCells().map((cell) => (
<TableCell key={cell.id}>
{cell.column.id === "expander" ? (
<div
onClick={() => {
row.toggleExpanded();
if (!row.getIsExpanded()) {
handleRevisionExpand(row.original.id);
}
}}
className="cursor-pointer"
>
{flexRender(
cell.column.columnDef.cell,
cell.getContext()
)}
</div>
) : (
flexRender(cell.column.columnDef.cell, cell.getContext())
)}
</TableCell>
))}
</TableRow>
{/* 파일 행들 (확장 시) */}
{row.getIsExpanded() && (
<TableRow>
<TableCell colSpan={swpRevisionColumns.length} className="p-0 bg-blue-50/30">
{loadingFiles.has(row.original.id) ? (
<div className="flex items-center justify-center p-4">
<Loader2 className="h-5 w-5 animate-spin" />
<span className="ml-2 text-sm">파일 로딩 중...</span>
</div>
) : fileData[row.original.id]?.length ? (
<FileSubTable files={fileData[row.original.id]} />
) : (
<div className="p-4 text-center text-sm text-muted-foreground">
파일 없음
</div>
)}
</TableCell>
</TableRow>
)}
</React.Fragment>
))}
</TableBody>
</Table>
</div>
</div>
);
}
// ============================================================================
// 파일 서브 테이블
// ============================================================================
interface FileSubTableProps {
files: FileRow[];
}
function FileSubTable({ files }: FileSubTableProps) {
const fileTable = useReactTable({
data: files,
columns: swpFileColumns,
getCoreRowModel: getCoreRowModel(),
});
return (
<div className="border-l-4 border-green-200">
<Table>
<TableHeader>
{fileTable.getHeaderGroups().map((headerGroup) => (
<TableRow key={headerGroup.id} className="bg-blue-50/50">
{headerGroup.headers.map((header) => (
<TableHead key={header.id} className="font-semibold text-xs">
{header.isPlaceholder
? null
: flexRender(
header.column.columnDef.header,
header.getContext()
)}
</TableHead>
))}
</TableRow>
))}
</TableHeader>
<TableBody>
{fileTable.getRowModel().rows.map((row) => (
<TableRow key={row.id} className="bg-green-50/20 hover:bg-green-50/40">
{row.getVisibleCells().map((cell) => (
<TableCell key={cell.id} className="py-2">
{flexRender(cell.column.columnDef.cell, cell.getContext())}
</TableCell>
))}
</TableRow>
))}
</TableBody>
</Table>
</div>
);
}
|