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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
|
'use client'
import * as React from 'react'
import {
Dialog,
DialogContent,
DialogDescription,
DialogHeader,
DialogTitle,
} from '@/components/ui/dialog'
import { Button } from '@/components/ui/button'
import { Input } from '@/components/ui/input'
import { Label } from '@/components/ui/label'
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
import { Textarea } from '@/components/ui/textarea'
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
import { Badge } from '@/components/ui/badge'
import {
Table,
TableBody,
TableCell,
TableHead,
TableHeader,
TableRow,
} from '@/components/ui/table'
import {
Upload,
FileText,
Download,
Trash2
} from 'lucide-react'
import { useToast } from '@/hooks/use-toast'
import { useTransition } from 'react'
import { downloadFile } from '@/lib/file-download'
import {
uploadBiddingDocument,
getBiddingDocuments,
deleteBiddingDocument
} from '../service'
interface UploadedDocument {
id: number
biddingId: number
companyId: number | null
documentType: string
fileName: string
originalFileName: string
fileSize: number | null
filePath: string
title: string | null
description: string | null
uploadedAt: string
uploadedBy: string
}
interface BiddingDocumentUploadDialogProps {
open: boolean
onOpenChange: (open: boolean) => void
biddingId: number
userId: string
onSuccess?: () => void
}
const documentTypes = [
{ value: 'notice', label: '입찰공고서' },
{ value: 'specification', label: '사양서' },
{ value: 'specification_meeting', label: '사양설명회' },
{ value: 'contract_draft', label: '계약서 초안' },
{ value: 'financial_doc', label: '재무 관련 문서' },
{ value: 'technical_doc', label: '기술 관련 문서' },
{ value: 'certificate', label: '인증서류' },
{ value: 'pr_document', label: 'PR 문서' },
{ value: 'spec_document', label: 'SPEC 문서' },
{ value: 'evaluation_doc', label: '평가 관련 문서' },
{ value: 'bid_attachment', label: '입찰 첨부파일' },
{ value: 'other', label: '기타' }
]
export function BiddingDocumentUploadDialog({
open,
onOpenChange,
biddingId,
userId,
onSuccess
}: BiddingDocumentUploadDialogProps) {
const { toast } = useToast()
const [isPending, startTransition] = useTransition()
const [documents, setDocuments] = React.useState<UploadedDocument[]>([])
const [isLoading, setIsLoading] = React.useState(false)
// 업로드 폼 상태
const [selectedFile, setSelectedFile] = React.useState<File | null>(null)
const [documentType, setDocumentType] = React.useState<string>('')
const [title, setTitle] = React.useState('')
const [description, setDescription] = React.useState('')
// 다이얼로그가 열릴 때 문서 목록 로드
React.useEffect(() => {
if (open) {
loadDocuments()
resetForm()
}
}, [open, biddingId])
const resetForm = () => {
setSelectedFile(null)
setDocumentType('')
setTitle('')
setDescription('')
}
const loadDocuments = async () => {
setIsLoading(true)
try {
// 서버 액션 직접 호출
const docs = await getBiddingDocuments(biddingId)
const mappedDocs = docs.map((doc: any) => ({
...doc,
uploadedAt: doc.uploadedAt?.toString() || '',
uploadedBy: doc.uploadedBy || ''
}))
setDocuments(mappedDocs)
} catch (error) {
console.error('Failed to load documents:', error)
toast({
title: '오류',
description: '문서 목록을 불러오는데 실패했습니다.',
variant: 'destructive',
})
} finally {
setIsLoading(false)
}
}
const handleFileSelect = (event: React.ChangeEvent<HTMLInputElement>) => {
const files = event.target.files
if (!files || files.length === 0) return
const file = files[0]
// 파일 크기 체크 (50MB 제한)
if (file.size > 50 * 1024 * 1024) {
toast({
title: '파일 크기 초과',
description: '파일 크기가 50MB를 초과합니다.',
variant: 'destructive',
})
return
}
// 파일 타입 체크
const allowedTypes = [
'application/pdf',
'application/msword',
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
'application/vnd.ms-excel',
'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
'image/jpeg',
'image/png',
'application/zip'
]
if (!allowedTypes.includes(file.type)) {
toast({
title: '지원하지 않는 파일 형식',
description: 'PDF, Word, Excel, 이미지, ZIP 파일만 업로드 가능합니다.',
variant: 'destructive',
})
return
}
setSelectedFile(file)
}
const handleUpload = async () => {
if (!selectedFile || !documentType) {
toast({
title: '입력 오류',
description: '파일과 문서 타입을 선택해주세요.',
variant: 'destructive',
})
return
}
startTransition(async () => {
try {
// 서버 액션 직접 호출
const result = await uploadBiddingDocument(
biddingId,
selectedFile,
documentType,
title,
description,
userId
)
if (result.success) {
toast({
title: '업로드 완료',
description: result.message || '문서가 성공적으로 업로드되었습니다.',
})
resetForm()
await loadDocuments()
onSuccess?.()
} else {
toast({
title: '업로드 실패',
description: result.error || '문서 업로드에 실패했습니다.',
variant: 'destructive',
})
}
} catch (error) {
console.error('Upload error:', error)
toast({
title: '업로드 실패',
description: '문서 업로드 중 오류가 발생했습니다.',
variant: 'destructive',
})
}
})
}
// 파일 다운로드
const handleDownload = (document: UploadedDocument) => {
startTransition(async () => {
try {
await downloadFile(document.filePath, document.originalFileName, {
showToast: true
})
} catch (error) {
toast({
title: '다운로드 실패',
description: '파일 다운로드에 실패했습니다.',
variant: 'destructive',
})
}
})
}
// 파일 삭제
const handleDelete = (document: UploadedDocument) => {
if (!confirm(`"${document.originalFileName}" 파일을 삭제하시겠습니까?`)) {
return
}
startTransition(async () => {
try {
// 서버 액션 직접 호출
const result = await deleteBiddingDocument(document.id, biddingId, userId)
if (result.success) {
toast({
title: '삭제 완료',
description: result.message || '문서가 성공적으로 삭제되었습니다.',
})
await loadDocuments()
onSuccess?.()
} else {
toast({
title: '삭제 실패',
description: result.error || '문서 삭제에 실패했습니다.',
variant: 'destructive',
})
}
} catch (error) {
console.error('Delete error:', error)
toast({
title: '삭제 실패',
description: '문서 삭제 중 오류가 발생했습니다.',
variant: 'destructive',
})
}
})
}
// 파일 크기 포맷팅
const formatFileSize = (bytes: number | null) => {
if (!bytes) return '-'
if (bytes === 0) return '0 Bytes'
const k = 1024
const sizes = ['Bytes', 'KB', 'MB', 'GB']
const i = Math.floor(Math.log(bytes) / Math.log(k))
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i]
}
const getDocumentTypeLabel = (type: string) => {
return documentTypes.find(dt => dt.value === type)?.label || type
}
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="max-w-4xl max-h-[90vh] overflow-y-auto">
<DialogHeader>
<DialogTitle className="flex items-center gap-2">
<FileText className="w-5 h-5" />
입찰 문서 등록
</DialogTitle>
<DialogDescription>
입찰 관련 문서를 업로드하고 관리할 수 있습니다.
</DialogDescription>
</DialogHeader>
<div className="space-y-6">
{/* 파일 업로드 섹션 */}
<Card>
<CardHeader>
<CardTitle className="text-lg">새 문서 업로드</CardTitle>
</CardHeader>
<CardContent className="space-y-4">
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div className="space-y-2">
<Label htmlFor="document-type">문서 타입 *</Label>
<Select value={documentType} onValueChange={setDocumentType}>
<SelectTrigger>
<SelectValue placeholder="문서 타입을 선택하세요" />
</SelectTrigger>
<SelectContent>
{documentTypes.map((type) => (
<SelectItem key={type.value} value={type.value}>
{type.label}
</SelectItem>
))}
</SelectContent>
</Select>
</div>
<div className="space-y-2">
<Label htmlFor="file-upload">파일 선택 *</Label>
<Input
id="file-upload"
type="file"
accept=".pdf,.doc,.docx,.xls,.xlsx,.jpg,.jpeg,.png,.zip"
onChange={handleFileSelect}
disabled={isPending}
/>
<p className="text-xs text-muted-foreground">
지원 형식: PDF, Word, Excel, 이미지, ZIP (최대 50MB)
</p>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="title">제목</Label>
<Input
id="title"
placeholder="문서 제목을 입력하세요"
value={title}
onChange={(e) => setTitle(e.target.value)}
/>
</div>
<div className="space-y-2">
<Label htmlFor="description">설명</Label>
<Textarea
id="description"
placeholder="문서에 대한 설명을 입력하세요"
value={description}
onChange={(e) => setDescription(e.target.value)}
rows={3}
/>
</div>
<div className="flex justify-end">
<Button
onClick={handleUpload}
disabled={!selectedFile || !documentType || isPending}
>
<Upload className="w-4 h-4 mr-2" />
업로드
</Button>
</div>
</CardContent>
</Card>
{/* 업로드된 문서 목록 */}
{isLoading ? (
<div className="text-center py-4">
<p className="text-muted-foreground">문서 목록을 불러오는 중...</p>
</div>
) : documents.length > 0 ? (
<Card>
<CardHeader>
<CardTitle className="text-lg flex items-center gap-2">
업로드된 문서
<Badge variant="secondary">{documents.length}개</Badge>
</CardTitle>
</CardHeader>
<CardContent>
<Table>
<TableHeader>
<TableRow>
<TableHead>문서 타입</TableHead>
<TableHead>파일명</TableHead>
<TableHead>크기</TableHead>
<TableHead>업로드일</TableHead>
<TableHead className="w-24">작업</TableHead>
</TableRow>
</TableHeader>
<TableBody>
{documents.map((doc) => (
<TableRow key={doc.id}>
<TableCell>
<Badge variant="outline">
{getDocumentTypeLabel(doc.documentType)}
</Badge>
</TableCell>
<TableCell>
<div className="flex items-center gap-2">
<FileText className="w-4 h-4 text-gray-500" />
<span className="truncate max-w-48" title={doc.originalFileName}>
{doc.originalFileName}
</span>
</div>
</TableCell>
<TableCell className="text-sm text-gray-500">
{formatFileSize(doc.fileSize)}
</TableCell>
<TableCell className="text-sm text-gray-500">
{new Date(doc.uploadedAt).toLocaleDateString('ko-KR')}
</TableCell>
<TableCell>
<div className="flex items-center gap-1">
<Button
variant="outline"
size="sm"
onClick={() => handleDownload(doc)}
disabled={isPending}
title="다운로드"
>
<Download className="w-3 h-3" />
</Button>
<Button
variant="outline"
size="sm"
onClick={() => handleDelete(doc)}
disabled={isPending}
title="삭제"
className="text-red-600 hover:text-red-700"
>
<Trash2 className="w-3 h-3" />
</Button>
</div>
</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</CardContent>
</Card>
) : (
<Card>
<CardContent className="text-center py-8">
<FileText className="w-12 h-12 mx-auto mb-4 opacity-50" />
<p className="text-gray-500">업로드된 문서가 없습니다</p>
</CardContent>
</Card>
)}
</div>
</DialogContent>
</Dialog>
)
}
|