summaryrefslogtreecommitdiff
path: root/lib/dolce/dialogs/b4-bulk-upload-dialog-v3.tsx
blob: e34b76c74b7eecf8c2d9b367402cadd7d6302f60 (plain)
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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
"use client";

import * as React from "react";
import { useState } from "react";
import {
  Dialog,
  DialogContent,
  DialogDescription,
  DialogFooter,
  DialogHeader,
  DialogTitle,
} from "@/components/ui/dialog";
import { Button } from "@/components/ui/button";
import { FolderOpen, Loader2, ChevronRight, CheckCircle2 } from "lucide-react";
import { toast } from "sonner";
import { Progress } from "@/components/ui/progress";
import { useTranslation } from "@/i18n/client";
import {
  validateB4FileName,
  B4UploadValidationDialog,
  type FileValidationResult,
} from "./b4-upload-validation-dialog";
import {
  checkB4MappingStatus,
  saveB4MappingBatch,
  type MappingCheckResult,
  type B4BulkUploadResult,
  type B4MappingSaveItem,
} from "../actions";
import { uploadFilesWithProgress } from "../utils/upload-with-progress";
import { FileUploadProgressList } from "../components/file-upload-progress-list";
import type { FileUploadProgress } from "../hooks/use-file-upload-with-progress";
import { v4 as uuidv4 } from "uuid";

interface B4BulkUploadDialogV3Props {
  open: boolean;
  onOpenChange: (open: boolean) => void;
  projectNo: string;
  userId: string;
  userName: string;
  userEmail: string;
  vendorCode: string;
  onUploadComplete?: () => void;
  lng: string;
}

type UploadStep = "files" | "validation" | "uploading" | "complete";

export function B4BulkUploadDialogV3({
  open,
  onOpenChange,
  projectNo,
  userId,
  userName,
  userEmail,
  vendorCode,
  onUploadComplete,
  lng,
}: B4BulkUploadDialogV3Props) {
  const { t } = useTranslation(lng, "dolce");
  const [currentStep, setCurrentStep] = useState<UploadStep>("files");
  const [selectedFiles, setSelectedFiles] = useState<File[]>([]);
  const [isUploading, setIsUploading] = useState(false);
  const [validationResults, setValidationResults] = useState<FileValidationResult[]>([]);
  const [mappingResultsMap, setMappingResultsMap] = useState<Map<string, MappingCheckResult>>(new Map());
  const [showValidationDialog, setShowValidationDialog] = useState(false);
  const [isDragging, setIsDragging] = useState(false);
  const [uploadProgress, setUploadProgress] = useState(0);
  const [uploadResult, setUploadResult] = useState<B4BulkUploadResult | null>(null);
  const [fileProgresses, setFileProgresses] = useState<FileUploadProgress[]>([]);

  // Reset on close
  React.useEffect(() => {
    if (!open) {
      setCurrentStep("files");
      setSelectedFiles([]);
      setValidationResults([]);
      setMappingResultsMap(new Map());
      setShowValidationDialog(false);
      setIsDragging(false);
      setUploadProgress(0);
      setUploadResult(null);
      setFileProgresses([]);
    }
  }, [open]);

  // File Selection Handler
  const handleFilesChange = (files: File[]) => {
    if (files.length === 0) return;

    const existingNames = new Set(selectedFiles.map((f) => f.name));
    const newFiles = files.filter((f) => !existingNames.has(f.name));

    if (newFiles.length === 0) {
      toast.error(t("bulkUpload.duplicateFileError"));
      return;
    }

    setSelectedFiles((prev) => [...prev, ...newFiles]);
    toast.success(t("bulkUpload.filesSelectedSuccess", { count: newFiles.length }));
  };

  // Drag & Drop Handlers
  const handleDragEnter = (e: React.DragEvent) => {
    e.preventDefault();
    e.stopPropagation();
    setIsDragging(true);
  };

  const handleDragLeave = (e: React.DragEvent) => {
    e.preventDefault();
    e.stopPropagation();
    if (e.currentTarget === e.target) {
      setIsDragging(false);
    }
  };

  const handleDragOver = (e: React.DragEvent) => {
    e.preventDefault();
    e.stopPropagation();
    e.dataTransfer.dropEffect = "copy";
  };

  const handleDrop = (e: React.DragEvent) => {
    e.preventDefault();
    e.stopPropagation();
    setIsDragging(false);

    const droppedFiles = Array.from(e.dataTransfer.files);
    if (droppedFiles.length > 0) {
      handleFilesChange(droppedFiles);
    }
  };

  const handleRemoveFile = (index: number) => {
    setSelectedFiles((prev) => prev.filter((_, i) => i !== index));
  };

  // Step 1 Next: Validation
  const handleFilesNext = () => {
    if (selectedFiles.length === 0) {
      toast.error(t("bulkUpload.selectFilesError"));
      return;
    }
    setCurrentStep("validation");
    handleValidate();
  };

  // Validation Process (V3)
  const handleValidate = async () => {
    try {
      console.log("[V3 Dialog] Validation started");

      // 1. Parse Filenames (Format check only)
      const parseResults: FileValidationResult[] = selectedFiles.map((file) => {
        const validation = validateB4FileName(file.name);
        return {
          file,
          valid: validation.valid,
          parsed: validation.parsed,
          error: validation.error,
        };
      });

      // 2. Call MatchBatchFileDwg to check mapping status for ALL files
      // Even if local parsing failed, we send the filename to the server
      const mappingCheckItems = parseResults.map((r) => ({
        DrawingNo: r.parsed?.drawingNo ?? "",
        RevNo: r.parsed?.revNo ?? "",
        FileNm: r.file.name,
      }));

      console.log(`[V3 Dialog] Checking mapping for ${mappingCheckItems.length} files`);

      const mappingResults = await checkB4MappingStatus(
        projectNo,
        mappingCheckItems
      );

      // Store mapping results for later use (upload/save)
      // Use the original file name from our request list as the key to ensure we can look it up later.
      // The API response 'FileNm' might differ (e.g., missing extension), so we rely on the array index order (1:1).
      const newMappingResultsMap = new Map<string, MappingCheckResult>();
      parseResults.forEach((parseResult, index) => {
        const result = mappingResults[index];
        if (result) {
           newMappingResultsMap.set(parseResult.file.name, result);
        }
      });
      setMappingResultsMap(newMappingResultsMap);

      // 3. Merge results
      const finalResults: FileValidationResult[] = parseResults.map((parseResult) => {
        // Retrieve by file name (now reliably mapped)
        const mappingResult = newMappingResultsMap.get(parseResult.file.name);

        // If mapping exists and is valid, it overrides local validation errors
        if (mappingResult && mappingResult.MappingYN === "Y" && mappingResult.DrawingMoveGbn === "도면입수") {
             return {
                file: parseResult.file,
                valid: true, // Valid because server recognized it
                parsed: {
                    drawingNo: mappingResult.DrawingNo,
                    revNo: mappingResult.RevNo || "",
                    fileName: parseResult.file.name
                },
                mappingStatus: "available" as const,
                drawingName: mappingResult.DrawingName || undefined,
                registerGroupId: mappingResult.RegisterGroupId,
             };
        }

        // If server didn't validate it, fall back to local validation error or server error
        if (!parseResult.valid || !parseResult.parsed) {
            // It was invalid locally, and server didn't save it
            return parseResult;
        }

        if (!mappingResult) {
          return {
            ...parseResult,
            mappingStatus: "not_found" as const,
            error: t("validation.notFound"),
          };
        }

        if (mappingResult.MappingYN !== "Y") {
           return {
            ...parseResult,
            mappingStatus: "not_found" as const,
            error: t("validation.notRegistered"), 
          };
        }
        
        if (mappingResult.DrawingMoveGbn !== "도면입수") {
            return {
                ...parseResult,
                mappingStatus: "not_found" as const,
                error: t("validation.notGttDeliverables"),
            };
        }

        return {
          ...parseResult,
          mappingStatus: "available" as const,
          drawingName: mappingResult.DrawingName || undefined,
          registerGroupId: mappingResult.RegisterGroupId,
        };
      });

      console.log("[V3 Dialog] Validation complete");
      setValidationResults(finalResults);
      setShowValidationDialog(true);
    } catch (error) {
      console.error("[V3 Dialog] Validation failed:", error);
      toast.error(
        error instanceof Error ? error.message : t("bulkUpload.validationError")
      );
      // Go back to files step if validation crashes completely
      setCurrentStep("files");
    }
  };

  // Confirm Upload & Save (V3)
  const handleConfirmUpload = async (validFiles: FileValidationResult[]) => {
    setIsUploading(true);
    setCurrentStep("uploading");
    setShowValidationDialog(false);

    try {
      console.log(`[V3 Dialog] Upload started: ${validFiles.length} files`);

      // 0. Initialize progress
      const initialProgresses: FileUploadProgress[] = validFiles.map((fileResult) => ({
        file: fileResult.file,
        progress: 0,
        status: "pending" as const,
      }));
      setFileProgresses(initialProgresses);

      // 1. Group by DrawingNo + RevNo (to share UploadId if needed)
      const uploadGroups = new Map<
        string,
        Array<{
            file: File;
            fileIndex: number; // Index in validFiles
            mappingData: MappingCheckResult;
        }>
      >();

      // Pre-process groups
      validFiles.forEach((fileResult, index) => {
          const mappingData = mappingResultsMap.get(fileResult.file.name);
          if (!mappingData) return; // Should not happen for valid files

          const groupKey = `${mappingData.DrawingNo}_${mappingData.RevNo}`;
          if (!uploadGroups.has(groupKey)) {
              uploadGroups.set(groupKey, []);
          }
          uploadGroups.get(groupKey)!.push({
              file: fileResult.file,
              fileIndex: index,
              mappingData
          });
      });

      let successCount = 0;
      let failCount = 0;
      let completedGroups = 0;
      const results: B4BulkUploadResult["results"] = [];

      // 2. Process each group
      for (const [groupKey, groupItems] of uploadGroups.entries()) {
          // Reuse UploadId from the first item's mapping data if available, else generate new
          const firstItemMapping = groupItems[0].mappingData;
          // Reuse existing UploadId if present in API response, otherwise generate new one
          // UploadId는 있으면 재활용하고, 없으면 UUID로 만들어서 사용
          const uploadId = firstItemMapping.UploadId || uuidv4();
          
          console.log(`[V3 Dialog] Processing group ${groupKey}, UploadId: ${uploadId}`);

          try {
             // Update status to uploading
             setFileProgresses((prev) => 
                prev.map((fp, idx) => 
                    groupItems.some(item => item.fileIndex === idx)
                        ? { ...fp, status: "uploading" as const }
                        : fp
                )
             );

             // A. Upload Files (Physical Upload)
             const uploadResult = await uploadFilesWithProgress({
                uploadId: uploadId,
                userId: userId,
                files: groupItems.map(item => item.file),
                callbacks: {
                    onProgress: (fileIndexInGroup, progress) => {
                        const globalFileIndex = groupItems[fileIndexInGroup].fileIndex;
                        setFileProgresses((prev) =>
                            prev.map((fp, idx) =>
                                idx === globalFileIndex
                                ? { ...fp, progress, status: "uploading" as const }
                                : fp
                            )
                        );

                        // Overall progress approximation
                        const groupProgress = (completedGroups / uploadGroups.size) * 100;
                        const currentGroupProgress = (progress / 100) * (100 / uploadGroups.size);
                        setUploadProgress(Math.round(groupProgress + currentGroupProgress));
                    },
                    onFileComplete: (fileIndexInGroup) => {
                        const globalFileIndex = groupItems[fileIndexInGroup].fileIndex;
                        setFileProgresses((prev) =>
                            prev.map((fp, idx) =>
                                idx === globalFileIndex
                                ? { ...fp, progress: 100, status: "completed" as const }
                                : fp
                            )
                        );
                    },
                    onFileError: (fileIndexInGroup, error) => {
                        const globalFileIndex = groupItems[fileIndexInGroup].fileIndex;
                        console.error(`[V3 Dialog] File upload error:`, error);
                         setFileProgresses((prev) =>
                            prev.map((fp, idx) =>
                                idx === globalFileIndex
                                ? { ...fp, status: "error" as const, error }
                                : fp
                            )
                        );
                    }
                }
             });

             if (!uploadResult.success) {
                 throw new Error(uploadResult.error || "File upload failed");
             }

             // B. Save Metadata (MatchBatchFileDwgEdit)
             // Construct payload from mappingData + generated UploadId + hardcoded values as per prompt
             const mappingSaveLists: B4MappingSaveItem[] = groupItems.map(item => {
                 const m = item.mappingData;
                 return {
                    CGbn: m.CGbn,
                    Category: "TS", // Hardcoded fixed value is required!
                    CheckBox: m.CheckBox,
                    DGbn: m.DGbn,
                    DegreeGbn: m.DegreeGbn,
                    DeptGbn: m.DeptGbn,
                    Discipline: m.Discipline,
                    DrawingKind: m.DrawingKind,
                    DrawingMoveGbn: m.DrawingMoveGbn,
                    DrawingName: m.DrawingName,
                    DrawingNo: m.DrawingNo,
                    DrawingUsage: m.DrawingUsage,
                    FileNm: item.file.name,
                    JGbn: m.JGbn,
                    Manager: m.Manager,
                    MappingYN: m.MappingYN,
                    NewOrNot: m.NewOrNot,
                    ProjectNo: projectNo,
                    RegisterGroup: m.RegisterGroup,
                    RegisterGroupId: m.RegisterGroupId,
                    RegisterKindCode: m.RegisterKindCode,
                    RegisterSerialNo: m.RegisterSerialNo,
                    RevNo: m.RevNo,
                    SGbn: m.SGbn,
                    UploadId: uploadId, // Used for all files in this group
                    status: "Standby", // Hardcoded fixed value is required!
                 };
             });

             await saveB4MappingBatch(mappingSaveLists, {
                userId,
                userName,
                vendorCode,
                email: userEmail,
             });

             console.log(`[V3 Dialog] Group ${groupKey} complete`);
             successCount += groupItems.length;
             
             groupItems.forEach(item => {
                 results.push({
                     drawingNo: item.mappingData.DrawingNo,
                     revNo: item.mappingData.RevNo || "",
                     fileName: item.file.name,
                     success: true
                 });
             });

          } catch (error) {
              console.error(`[V3 Dialog] Group ${groupKey} failed:`, error);
              failCount += groupItems.length;
              const errorMessage = error instanceof Error ? error.message : "Unknown error";
              
              groupItems.forEach(item => {
                 results.push({
                     drawingNo: item.mappingData.DrawingNo,
                     revNo: item.mappingData.RevNo || "",
                     fileName: item.file.name,
                     success: false,
                     error: errorMessage
                 });
             });
          }

          completedGroups++;
          setUploadProgress(Math.round((completedGroups / uploadGroups.size) * 100));
      }

      // Finalize
      const result: B4BulkUploadResult = {
        success: successCount > 0,
        successCount,
        failCount,
        results,
      };

      setUploadResult(result);
      setCurrentStep("complete");

      if (result.success) {
        toast.success(
          t("bulkUpload.uploadSuccessToast", {
            successCount: result.successCount,
            total: validFiles.length,
          })
        );
      } else {
        toast.error(result.error || t("bulkUpload.uploadError"));
      }

    } catch (error) {
      console.error("[V3 Dialog] Upload process failed:", error);
      toast.error(
        error instanceof Error ? error.message : t("bulkUpload.uploadError")
      );
      setCurrentStep("files");
    } finally {
      setIsUploading(false);
    }
  };

  return (
    <>
      <Dialog open={open} onOpenChange={onOpenChange}>
        <DialogContent className="max-w-2xl max-h-[85vh] overflow-y-auto">
          <DialogHeader>
            <DialogTitle>{t("bulkUpload.title")} (V3)</DialogTitle>
            <DialogDescription>
              {currentStep === "files" && t("bulkUpload.stepFiles")}
              {currentStep === "validation" && t("bulkUpload.stepValidation")}
            </DialogDescription>
          </DialogHeader>

          <div className="space-y-4">
            {/* Step 1: Files */}
            {currentStep === "files" && (
              <>
                <div
                  className={`border-2 border-dashed rounded-lg p-8 transition-all duration-200 ${
                    isDragging
                      ? "border-primary bg-primary/5 scale-[1.02]"
                      : "border-muted-foreground/30 hover:border-muted-foreground/50"
                  }`}
                  onDragEnter={handleDragEnter}
                  onDragLeave={handleDragLeave}
                  onDragOver={handleDragOver}
                  onDrop={handleDrop}
                >
                  <input
                    type="file"
                    multiple
                    accept=".pdf,.doc,.docx,.xls,.xlsx,.dwg,.dxf,.zip"
                    onChange={(e) => handleFilesChange(Array.from(e.target.files || []))}
                    className="hidden"
                    id="b4-file-upload-v3"
                  />
                  <label
                    htmlFor="b4-file-upload-v3"
                    className="flex flex-col items-center justify-center cursor-pointer"
                  >
                    <FolderOpen
                      className={`h-12 w-12 mb-3 transition-colors ${
                        isDragging ? "text-primary" : "text-muted-foreground"
                      }`}
                    />
                    <p
                      className={`text-sm transition-colors ${
                        isDragging
                          ? "text-primary font-medium"
                          : "text-muted-foreground"
                      }`}
                    >
                      {isDragging
                        ? t("bulkUpload.fileDropHere")
                        : t("bulkUpload.fileSelectArea")}
                    </p>
                    <p className="text-xs text-muted-foreground mt-1">
                      {t("bulkUpload.fileTypes")}
                    </p>
                  </label>
                </div>

                {selectedFiles.length > 0 && (
                  <div className="border rounded-lg p-4">
                    <div className="flex items-center justify-between mb-3">
                      <h4 className="text-sm font-medium">
                        {t("bulkUpload.selectedFiles", { count: selectedFiles.length })}
                      </h4>
                      <Button
                        variant="ghost"
                        size="sm"
                        onClick={() => setSelectedFiles([])}
                      >
                        {t("bulkUpload.removeAll")}
                      </Button>
                    </div>
                    <div className="max-h-60 overflow-y-auto space-y-2">
                      {selectedFiles.map((file, index) => (
                        <div
                          key={index}
                          className="flex items-center justify-between p-2 rounded bg-muted/50"
                        >
                          <div className="flex-1 min-w-0">
                            <p className="text-sm truncate">{file.name}</p>
                            <p className="text-xs text-muted-foreground">
                              {(file.size / 1024 / 1024).toFixed(2)} MB
                            </p>
                          </div>
                          <Button
                            variant="ghost"
                            size="sm"
                            onClick={() => handleRemoveFile(index)}
                          >
                            {t("bulkUpload.removeFile")}
                          </Button>
                        </div>
                      ))}
                    </div>
                  </div>
                )}
              </>
            )}

            {/* Loading Indicator */}
            {currentStep === "validation" && (
              <div className="flex flex-col items-center justify-center py-12">
                <Loader2 className="h-12 w-12 animate-spin text-primary mb-4" />
                <p className="text-sm text-muted-foreground">
                  {t("bulkUpload.validating")}
                </p>
              </div>
            )}

            {/* Uploading Progress */}
            {currentStep === "uploading" && (
              <div className="space-y-6 py-4">
                <div className="flex flex-col items-center">
                  <Loader2 className="h-12 w-12 animate-spin text-primary mb-4" />
                  <h3 className="text-lg font-semibold mb-2">{t("bulkUpload.uploading")}</h3>
                  <p className="text-sm text-muted-foreground">
                    {t("bulkUpload.uploadingWait")}
                  </p>
                </div>
                
                <div className="space-y-2">
                  <div className="flex justify-between text-sm">
                    <span>{t("bulkUpload.uploadProgress")}</span>
                    <span>{uploadProgress}%</span>
                  </div>
                  <Progress value={uploadProgress} className="h-2" />
                </div>

                {fileProgresses.length > 0 && (
                  <div className="border rounded-lg p-4 max-h-96 overflow-y-auto">
                    <FileUploadProgressList fileProgresses={fileProgresses} />
                  </div>
                )}
              </div>
            )}

            {/* Completion Screen */}
            {currentStep === "complete" && uploadResult && (
              <div className="space-y-6 py-8">
                <div className="flex flex-col items-center">
                  <CheckCircle2 className="h-16 w-16 text-green-500 mb-4" />
                  <h3 className="text-lg font-semibold mb-2">{t("bulkUpload.uploadComplete")}</h3>
                  <p className="text-sm text-muted-foreground">
                    {t("bulkUpload.uploadSuccessMessage", { count: uploadResult.successCount })}
                  </p>
                </div>
                
                {uploadResult.failCount && uploadResult.failCount > 0 && (
                  <div className="bg-yellow-50 dark:bg-yellow-950/30 border border-yellow-200 dark:border-yellow-800 rounded-lg p-4">
                    <p className="text-sm text-yellow-800 dark:text-yellow-200">
                      {t("bulkUpload.uploadFailMessage", { count: uploadResult.failCount })}
                    </p>
                  </div>
                )}

                <div className="flex justify-center">
                  <Button
                    onClick={() => {
                      onOpenChange(false);
                      onUploadComplete?.();
                    }}
                  >
                    {t("bulkUpload.confirmButton")}
                  </Button>
                </div>
              </div>
            )}
          </div>

          {/* Footer */}
          {currentStep !== "uploading" && currentStep !== "complete" && currentStep !== "validation" && (
            <DialogFooter>
              {currentStep === "files" && (
                <>
                   <Button
                    variant="outline"
                    onClick={() => onOpenChange(false)}
                  >
                    {t("bulkUpload.cancelButton")}
                  </Button>
                  <Button
                    onClick={handleFilesNext}
                    disabled={selectedFiles.length === 0}
                  >
                    {t("bulkUpload.validateButton")}
                    <ChevronRight className="ml-2 h-4 w-4" />
                  </Button>
                </>
              )}
            </DialogFooter>
          )}
        </DialogContent>
      </Dialog>

      {/* Validation Dialog */}
      <B4UploadValidationDialog
        open={showValidationDialog}
        onOpenChange={(open) => {
          setShowValidationDialog(open);
          if (!open && currentStep !== "uploading" && currentStep !== "complete") {
            // If canceled during validation view (and not proceeding to upload), go back to file selection or close?
            // Usually just close the validation dialog allows user to fix files in the main dialog, 
            // but here the main dialog is in "validation" state which is just a loader.
            // So we should reset main dialog to "files" step.
             setCurrentStep("files");
          }
        }}
        validationResults={validationResults}
        onConfirmUpload={handleConfirmUpload}
        isUploading={isUploading}
      />
    </>
  );
}