| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- import { useState, useCallback, useRef, useEffect } from 'react';
- import { useMutation, useQueryClient } from '@tanstack/react-query';
- import { useTranslation } from 'react-i18next';
- import { Upload, X, File, CheckCircle, AlertCircle, Loader2 } from 'lucide-react';
- import { api } from '../api/client';
- import type { BulkUploadResult } from '../api/client';
- import { Card, CardContent } from './Card';
- import { Button } from './Button';
- import { useToast } from '../contexts/ToastContext';
- interface FileWithStatus {
- file: File;
- status: 'pending' | 'uploading' | 'success' | 'error';
- error?: string;
- archiveId?: number;
- }
- interface UploadModalProps {
- onClose: () => void;
- initialFiles?: File[];
- }
- export function UploadModal({ onClose, initialFiles }: UploadModalProps) {
- const { t } = useTranslation();
- const queryClient = useQueryClient();
- const { showToast } = useToast();
- const fileInputRef = useRef<HTMLInputElement>(null);
- const [files, setFiles] = useState<FileWithStatus[]>(() =>
- initialFiles?.filter(f => f.name.endsWith('.3mf')).map(file => ({ file, status: 'pending' as const })) || []
- );
- const [isDragging, setIsDragging] = useState(false);
- const [uploadResult, setUploadResult] = useState<BulkUploadResult | null>(null);
- // Close on Escape key
- useEffect(() => {
- const handleKeyDown = (e: KeyboardEvent) => {
- if (e.key === 'Escape') onClose();
- };
- window.addEventListener('keydown', handleKeyDown);
- return () => window.removeEventListener('keydown', handleKeyDown);
- }, [onClose]);
- const uploadMutation = useMutation({
- mutationFn: (filesToUpload: File[]) =>
- api.uploadArchivesBulk(filesToUpload),
- onSuccess: (result) => {
- setUploadResult(result);
- queryClient.invalidateQueries({ queryKey: ['archives'] });
- queryClient.invalidateQueries({ queryKey: ['archiveStats'] });
- // Update file statuses based on result
- setFiles((prev) =>
- prev.map((f) => {
- const success = result.results.find((r) => r.filename === f.file.name);
- const error = result.errors.find((e) => e.filename === f.file.name);
- if (success) {
- return { ...f, status: 'success', archiveId: success.id };
- }
- if (error) {
- return { ...f, status: 'error', error: error.error };
- }
- return f;
- })
- );
- // Show toast
- if (result.failed === 0) {
- showToast(`${result.uploaded} file${result.uploaded !== 1 ? 's' : ''} uploaded`);
- } else if (result.uploaded === 0) {
- showToast(`Failed to upload ${result.failed} file${result.failed !== 1 ? 's' : ''}`, 'error');
- } else {
- showToast(`${result.uploaded} uploaded, ${result.failed} failed`, 'warning');
- }
- },
- onError: () => {
- setFiles((prev) =>
- prev.map((f) => ({ ...f, status: 'error', error: 'Upload failed' }))
- );
- showToast('Upload failed', 'error');
- },
- });
- const handleDragOver = useCallback((e: React.DragEvent) => {
- e.preventDefault();
- setIsDragging(true);
- }, []);
- const handleDragLeave = useCallback((e: React.DragEvent) => {
- e.preventDefault();
- setIsDragging(false);
- }, []);
- const handleDrop = useCallback((e: React.DragEvent) => {
- e.preventDefault();
- setIsDragging(false);
- const droppedFiles = Array.from(e.dataTransfer.files).filter((f) =>
- f.name.endsWith('.3mf')
- );
- if (droppedFiles.length > 0) {
- setFiles((prev) => [
- ...prev,
- ...droppedFiles.map((file) => ({ file, status: 'pending' as const })),
- ]);
- }
- }, []);
- const handleFileSelect = useCallback((e: React.ChangeEvent<HTMLInputElement>) => {
- const selectedFiles = Array.from(e.target.files || []).filter((f) =>
- f.name.endsWith('.3mf')
- );
- if (selectedFiles.length > 0) {
- setFiles((prev) => [
- ...prev,
- ...selectedFiles.map((file) => ({ file, status: 'pending' as const })),
- ]);
- }
- // Reset input so same file can be selected again
- if (fileInputRef.current) {
- fileInputRef.current.value = '';
- }
- }, []);
- const removeFile = useCallback((index: number) => {
- setFiles((prev) => prev.filter((_, i) => i !== index));
- }, []);
- const handleUpload = () => {
- if (files.length === 0) return;
- const pendingFiles = files.filter((f) => f.status === 'pending');
- if (pendingFiles.length === 0) return;
- setFiles((prev) =>
- prev.map((f) =>
- f.status === 'pending' ? { ...f, status: 'uploading' } : f
- )
- );
- uploadMutation.mutate(pendingFiles.map((f) => f.file));
- };
- const pendingCount = files.filter((f) => f.status === 'pending').length;
- const isUploading = uploadMutation.isPending;
- return (
- <div className="fixed inset-0 bg-black/50 flex items-center justify-center z-50 p-4">
- <Card className="w-full max-w-2xl max-h-[90vh] flex flex-col">
- <CardContent className="p-0 flex flex-col h-full">
- {/* Header */}
- <div className="flex items-center justify-between p-4 border-b border-bambu-dark-tertiary">
- <h2 className="text-xl font-semibold text-white">{t('uploadModal.title')}</h2>
- <button
- onClick={onClose}
- className="text-bambu-gray hover:text-white transition-colors"
- >
- <X className="w-5 h-5" />
- </button>
- </div>
- {/* Drop Zone */}
- <div className="p-4">
- <div
- className={`border-2 border-dashed rounded-lg p-8 text-center transition-colors ${
- isDragging
- ? 'border-bambu-green bg-bambu-green/10'
- : 'border-bambu-dark-tertiary hover:border-bambu-gray'
- }`}
- onDragOver={handleDragOver}
- onDragLeave={handleDragLeave}
- onDrop={handleDrop}
- >
- <Upload className="w-12 h-12 mx-auto mb-4 text-bambu-gray" />
- <p className="text-white mb-2">
- {t('uploadModal.dragDrop')}
- </p>
- <p className="text-bambu-gray text-sm mb-4">{t('uploadModal.or')}</p>
- <Button
- variant="secondary"
- onClick={() => fileInputRef.current?.click()}
- disabled={isUploading}
- >
- {t('uploadModal.browseFiles')}
- </Button>
- <input
- ref={fileInputRef}
- type="file"
- accept=".3mf"
- multiple
- className="hidden"
- onChange={handleFileSelect}
- />
- </div>
- </div>
- {/* Info about printer model extraction */}
- <div className="px-4 pb-4">
- <p className="text-xs text-bambu-gray">
- {t('uploadModal.extractionInfo')}
- </p>
- </div>
- {/* File List */}
- {files.length > 0 && (
- <div className="px-4 pb-4 max-h-60 overflow-y-auto">
- <div className="space-y-2">
- {files.map((f, index) => (
- <div
- key={`${f.file.name}-${index}`}
- className="flex items-center gap-3 p-3 bg-bambu-dark rounded-lg"
- >
- <File className="w-5 h-5 text-bambu-gray flex-shrink-0" />
- <span className="flex-1 text-white text-sm truncate">
- {f.file.name}
- </span>
- <span className="text-xs text-bambu-gray">
- {(f.file.size / (1024 * 1024)).toFixed(1)} MB
- </span>
- {f.status === 'pending' && (
- <button
- onClick={() => removeFile(index)}
- className="text-bambu-gray hover:text-red-400 transition-colors"
- disabled={isUploading}
- >
- <X className="w-4 h-4" />
- </button>
- )}
- {f.status === 'uploading' && (
- <Loader2 className="w-4 h-4 text-bambu-green animate-spin" />
- )}
- {f.status === 'success' && (
- <CheckCircle className="w-4 h-4 text-bambu-green" />
- )}
- {f.status === 'error' && (
- <div className="flex items-center gap-2">
- <span className="text-xs text-red-400">{f.error}</span>
- <AlertCircle className="w-4 h-4 text-red-400" />
- </div>
- )}
- </div>
- ))}
- </div>
- </div>
- )}
- {/* Upload Result Summary */}
- {uploadResult && (
- <div className="px-4 pb-4">
- <div className="p-3 bg-bambu-dark rounded-lg">
- <p className="text-sm text-white">
- <span className="text-bambu-green">{uploadResult.uploaded}</span> {t('uploadModal.uploaded')}
- {uploadResult.failed > 0 && (
- <>, <span className="text-red-400">{uploadResult.failed}</span> {t('uploadModal.failed')}</>
- )}
- </p>
- </div>
- </div>
- )}
- {/* Footer */}
- <div className="flex gap-3 p-4 border-t border-bambu-dark-tertiary">
- <Button variant="secondary" onClick={onClose} className="flex-1">
- {uploadResult ? t('common.close') : t('common.cancel')}
- </Button>
- {!uploadResult && (
- <Button
- onClick={handleUpload}
- disabled={pendingCount === 0 || isUploading}
- className="flex-1"
- >
- {isUploading ? (
- <>
- <Loader2 className="w-4 h-4 animate-spin" />
- {t('uploadModal.uploading')}
- </>
- ) : (
- <>
- <Upload className="w-4 h-4" />
- {t('uploadModal.upload')} {pendingCount > 0 && `(${pendingCount})`}
- </>
- )}
- </Button>
- )}
- </div>
- </CardContent>
- </Card>
- </div>
- );
- }
|