import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; export interface DownloadProgressState { filesTotal: number; filesDownloaded: number; currentFile: string; totalBytesDownloaded: number; bytesDownloadedPerSecond: number; isDiscoveringFiles: boolean; } interface DownloadProgressProps { progress: DownloadProgressState; onCancel: () => void; } export function DownloadProgress({ progress, onCancel, }: DownloadProgressProps) { const { t } = useTranslation(); const formatBytes = (bytes: number) => { const units = ["B", "KB", "MB", "GB"]; let size = bytes; let unitIndex = 0; while (size >= 1024 && unitIndex < units.length - 1) { size /= 1024; unitIndex += 1; } return `${size.toFixed(1)} ${units[unitIndex]}`; }; return (

{progress.isDiscoveringFiles ? t(I18nKey.DOWNLOAD$PREPARING) : t(I18nKey.DOWNLOAD$DOWNLOADING)}

{progress.isDiscoveringFiles ? t(I18nKey.DOWNLOAD$FOUND_FILES, { count: progress.filesTotal }) : progress.currentFile}

{progress.isDiscoveringFiles ? (
) : (
)}
{progress.isDiscoveringFiles ? t(I18nKey.DOWNLOAD$SCANNING) : t(I18nKey.DOWNLOAD$FILES_PROGRESS, { downloaded: progress.filesDownloaded, total: progress.filesTotal, })} {!progress.isDiscoveringFiles && ( {formatBytes(progress.bytesDownloadedPerSecond)}/s )}
); }