78f4aa83e0
- Extract API helpers from UploadZone into lib/upload-api.ts (FormData builder, checkFolderDiffs, uploadDrive, uploadGit)
- Extract upload orchestration into hooks/useUploadOrchestrator.ts (UploadZone: 489 → 162 lines)
- Extract file diff classification into lib/diff-files.ts (from git route)
- Extract shared SVG icons into components/ui/icons.tsx (7 icons, 0 duplication)
- Extract shared modal wrapper into components/ui/Modal.tsx + ModalActions
- Extract DriveStatusLine sub-component from FolderCard
- Fix checkFolderDiffs silently swallowing auth/network errors (now throws)
- Fix type safety: remove as never casts, add isHttpError type guard, use discriminated union for validateFolder
- Fix nextcloud: cache getConfig, add max bound to findNextVersion, optimize mkdirRecursive (skip PROPFIND)
- Fix drive route: remove req.clone(), extend parseMultiUpload to return extra fields
- Fix commit message: model shown as unchanged with ↔️ on updates (not falsely marked as modified)
- Clean dead code: unused folderExists import, FileStatus/DriveStatus exports, ParsedFile.textureName, getConfig basePath
- Add security headers in next.config.ts (HSTS, X-Content-Type-Options, X-Frame-Options, etc.)
- Update README with new project structure
45 lines
1.5 KiB
TypeScript
45 lines
1.5 KiB
TypeScript
// ---------------------------------------------------------------------------
|
|
// Drive/Git status sub-line for FolderCard
|
|
// ---------------------------------------------------------------------------
|
|
|
|
import { SpinnerIcon, XIcon, InfoIcon } from '@/components/ui/icons'
|
|
import type { FolderEntry } from '@/lib/client-types'
|
|
|
|
interface DriveStatusLineProps {
|
|
driveStatus: NonNullable<FolderEntry['driveStatus']>
|
|
driveError?: string
|
|
}
|
|
|
|
export default function DriveStatusLine({ driveStatus, driveError }: DriveStatusLineProps) {
|
|
if (driveStatus === 'pending') return null
|
|
|
|
return (
|
|
<div className="flex items-center gap-1.5 mt-0.5">
|
|
{driveStatus === 'uploading' && (
|
|
<>
|
|
<SpinnerIcon className="w-3 h-3 text-gray-400" />
|
|
<span className="text-xs text-gray-400">Upload Drive en cours...</span>
|
|
</>
|
|
)}
|
|
{driveStatus === 'success' && (
|
|
<>
|
|
<SpinnerIcon className="w-3 h-3 text-gray-400" />
|
|
<span className="text-xs text-gray-400">Upload Git en cours...</span>
|
|
</>
|
|
)}
|
|
{driveStatus === 'error' && (
|
|
<>
|
|
<XIcon className="w-3 h-3 text-red-400" />
|
|
<span className="text-xs text-red-400 truncate">Drive echoue{driveError ? ` : ${driveError}` : ''}</span>
|
|
</>
|
|
)}
|
|
{driveStatus === 'skipped' && (
|
|
<>
|
|
<InfoIcon className="w-3 h-3 text-yellow-400" />
|
|
<span className="text-xs text-yellow-400">Drive ignore</span>
|
|
</>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|