Phase 1:
- S0: Fix open redirect (safeNavigate), delete AuthContext/legacy auth, encrypt API keys, gitignore .env files
- S1: Split client.ts god object into 5 modules, unify toast system, delete unused Sidebar
- S2: Add glass button variant, migrate 32 z-index to SUMI tokens, fix card dark mode
- S3: Skip nav link, aria-hidden on icons, focus-visible ring fixes, alt attrs, aria-live regions
- S4: React.memo on list items, fix key={index}, loading=lazy on images
- S5: Branded loading screen, page transitions respect reduced-motion, LikeButton micro-interaction, i18n sidebar/header
Phase 2 Sprint 6:
- Wire Tailwind shadow utilities to SUMI tokens in @theme block (fixes 50+ files)
- Define shadow-card/shadow-card-hover tokens
- Remove dark:shadow-none workarounds from card.tsx (SUMI handles per-theme shadows)
Co-authored-by: Cursor <cursoragent@cursor.com>
118 lines
4.1 KiB
TypeScript
118 lines
4.1 KiB
TypeScript
import React from 'react';
|
|
import { X, Play, Upload, Layers } from 'lucide-react';
|
|
import { Button } from '../ui/button';
|
|
import { FilePreviewCard, UploadFile } from './FilePreviewCard';
|
|
|
|
interface BulkUploadModalProps {
|
|
files: UploadFile[];
|
|
onClose: () => void;
|
|
onStartUpload: () => void;
|
|
onCancelFile: (id: string) => void;
|
|
onPauseFile: (id: string) => void;
|
|
onResumeFile: (id: string) => void;
|
|
}
|
|
|
|
export const BulkUploadModal: React.FC<BulkUploadModalProps> = ({
|
|
files,
|
|
onClose,
|
|
onStartUpload,
|
|
onCancelFile,
|
|
onPauseFile,
|
|
onResumeFile,
|
|
}) => {
|
|
const totalProgress =
|
|
files.reduce((acc, f) => acc + f.progress, 0) / (files.length || 1);
|
|
const uploadingCount = files.filter((f) => f.status === 'uploading').length;
|
|
const completedCount = files.filter((f) => f.status === 'completed').length;
|
|
|
|
return (
|
|
<div className="fixed inset-0 z-[var(--sumi-z-modal)] flex items-center justify-center p-4">
|
|
<div
|
|
className="absolute inset-0 bg-background/90 backdrop-blur-sm"
|
|
onClick={onClose}
|
|
></div>
|
|
<div className="relative w-full max-w-3xl bg-card border border-border rounded-2xl shadow-2xl overflow-hidden flex flex-col max-h-layout-modal-sm animate-scaleIn">
|
|
{/* Header */}
|
|
<div className="p-8 border-b border-border bg-muted flex justify-between items-center">
|
|
<div>
|
|
<h3 className="font-heading font-bold text-xl text-foreground flex items-center gap-2">
|
|
<Layers className="w-5 h-5 text-muted-foreground" /> Bulk Upload Manager
|
|
</h3>
|
|
<p className="text-xs text-muted-foreground mt-1">
|
|
{completedCount} / {files.length} files uploaded •{' '}
|
|
{files.length - completedCount} remaining
|
|
</p>
|
|
</div>
|
|
<Button variant="ghost" size="icon" onClick={onClose}>
|
|
<X className="w-5 h-5" />
|
|
</Button>
|
|
</div>
|
|
|
|
{/* Global Progress */}
|
|
<div className="px-6 py-2 bg-muted/30 border-b border-border">
|
|
<div className="flex justify-between text-xs font-bold text-muted-foreground uppercase mb-1">
|
|
<span>Overall Progress</span>
|
|
<span>{Math.round(totalProgress)}%</span>
|
|
</div>
|
|
<div className="h-1 bg-muted rounded-full overflow-hidden">
|
|
<div
|
|
className="h-full bg-primary transition-all duration-[var(--sumi-duration-normal)]"
|
|
style={{ width: `${totalProgress}%` }}
|
|
></div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* File List */}
|
|
<div className="flex-1 overflow-y-auto p-8 space-y-4 bg-muted/50">
|
|
{files.map((file) => (
|
|
<FilePreviewCard
|
|
key={file.id}
|
|
fileData={file}
|
|
onCancel={() => onCancelFile(file.id)}
|
|
onPause={() => onPauseFile(file.id)}
|
|
onResume={() => onResumeFile(file.id)}
|
|
/>
|
|
))}
|
|
</div>
|
|
|
|
{/* Footer Actions */}
|
|
<div className="p-8 border-t border-border bg-muted flex justify-between items-center">
|
|
<div className="flex gap-2">
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
className="text-muted-foreground hover:text-foreground"
|
|
onClick={onClose}
|
|
>
|
|
Cancel All
|
|
</Button>
|
|
</div>
|
|
<div className="flex gap-4">
|
|
<Button
|
|
variant="secondary"
|
|
size="sm"
|
|
icon={<Upload className="w-4 h-4" />}
|
|
>
|
|
Apply Metadata to All
|
|
</Button>
|
|
{uploadingCount === 0 && completedCount < files.length && (
|
|
<Button
|
|
variant="primary"
|
|
size="sm"
|
|
icon={<Play className="w-4 h-4" />}
|
|
onClick={onStartUpload}
|
|
>
|
|
Start Upload
|
|
</Button>
|
|
)}
|
|
{completedCount === files.length && (
|
|
<Button variant="primary" size="sm" onClick={onClose}>
|
|
Done
|
|
</Button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|