Files
SnapOtter/apps/web/src/components/tools/convert-spreadsheet-settings.tsx
T

76 lines
2.4 KiB
TypeScript

import { useState } from "react";
import { ProgressCard } from "@/components/common/progress-card";
import { useTranslation } from "@/contexts/i18n-context";
import { useToolProcessor } from "@/hooks/use-tool-processor";
import { format } from "@/lib/format";
import { useFileStore } from "@/stores/file-store";
type SheetFormat = "xlsx" | "ods" | "csv";
export function ConvertSpreadsheetSettings() {
const { t } = useTranslation();
const s = t.toolSettings["convert-spreadsheet"];
const { files } = useFileStore();
const { processFiles, processAllFiles, processing, error, progress } =
useToolProcessor("convert-spreadsheet");
const [outFormat, setOutFormat] = useState<SheetFormat>("ods");
const hasFile = files.length > 0;
const hasMultiple = files.length > 1;
const handleProcess = () => {
const settings = { format: outFormat };
if (hasMultiple) {
processAllFiles(files, settings);
} else {
processFiles(files, settings);
}
};
return (
<div className="space-y-4">
<div>
<label htmlFor="cs-format" className="text-xs text-muted-foreground">
{s.format}
</label>
<select
id="cs-format"
value={outFormat}
onChange={(e) => setOutFormat(e.target.value as SheetFormat)}
className="w-full mt-0.5 px-2 py-1.5 rounded border border-border bg-background text-sm text-foreground"
>
<option value="xlsx">XLSX</option>
<option value="ods">ODS</option>
<option value="csv">CSV</option>
</select>
</div>
<p className="text-[10px] text-muted-foreground">{s.hint}</p>
{error && <p className="text-xs text-red-500">{error}</p>}
{processing ? (
<ProgressCard
active={processing}
phase={progress.phase === "idle" ? "uploading" : progress.phase}
label={s.progressLabel}
stage={progress.stage}
percent={progress.percent}
elapsed={progress.elapsed}
/>
) : (
<button
type="button"
data-testid="convert-spreadsheet-submit"
onClick={handleProcess}
disabled={!hasFile || processing}
className="w-full py-2.5 rounded-lg bg-primary text-primary-foreground font-medium disabled:opacity-50 disabled:cursor-not-allowed"
>
{hasMultiple ? format(s.submitBatch, { count: files.length }) : s.submit}
</button>
)}
</div>
);
}