Files
SnapOtter/apps/web/src/components/tools/convert-spreadsheet-settings.tsx
T
SnapOtterandGitHub a53038ed96 feat(automate): make the pipeline builder fully multi-modal (#335)
* feat(shared): add outputModality to Tool metadata for crossing tools

* feat(shared): add modalityForExtension, toolInputModality, toolOutputModality

* fix(pipeline): route finalize and parent jobs to the pipeline's modality pool

* feat(automate): add ConvertAudioControls pipeline step (exemplar)

* feat(automate): add video tool settings controls to pipelines

* feat(automate): add audio tool settings controls to pipelines

* feat(automate): add document tool settings controls to pipelines

* feat(automate): add chart-maker settings control to pipelines

* feat(automate): warn on modality-incompatible pipeline steps

* feat(automate): add single-file download button for pipeline results

* refactor(automate): modality-aware icons, nav handler rename, mobile size bar

* test(pipeline): cover audio, document, file, and cross-modality chains

* i18n(automate): translate the modality-warning tooltip

* test(pipeline): gate media-pool routing assertion on ffmpeg availability
2026-06-24 00:21:41 +08:00

144 lines
4.5 KiB
TypeScript

import { useEffect, useRef, 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";
const ALL_FORMATS: { value: SheetFormat; label: string }[] = [
{ value: "xlsx", label: "XLSX" },
{ value: "ods", label: "ODS" },
{ value: "csv", label: "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");
// Never offer the input's own format as a target. LibreOffice rejects a
// same-format conversion ("already in that format"), so drop it from the
// options and keep the current selection valid.
const inputExt = files[0]?.name.split(".").pop()?.toLowerCase();
const formats = ALL_FORMATS.filter((f) => f.value !== inputExt);
const selected = formats.some((f) => f.value === outFormat)
? outFormat
: (formats[0]?.value ?? outFormat);
const hasFile = files.length > 0;
const hasMultiple = files.length > 1;
const handleProcess = () => {
const settings = { format: selected };
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={selected}
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"
>
{formats.map((f) => (
<option key={f.value} value={f.value}>
{f.label}
</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>
);
}
export interface ConvertSpreadsheetControlsProps {
settings?: Record<string, unknown>;
onChange?: (settings: Record<string, unknown>) => void;
}
export function ConvertSpreadsheetControls({
settings: initial,
onChange,
}: ConvertSpreadsheetControlsProps) {
const { t } = useTranslation();
const s = t.toolSettings["convert-spreadsheet"];
const [outFormat, setOutFormat] = useState<SheetFormat>("xlsx");
const initializedRef = useRef(false);
useEffect(() => {
if (!initial || initializedRef.current) return;
initializedRef.current = true;
if (initial.format != null) setOutFormat(initial.format as SheetFormat);
}, [initial]);
const onChangeRef = useRef(onChange);
useEffect(() => {
onChangeRef.current = onChange;
});
useEffect(() => {
onChangeRef.current?.({ format: outFormat });
}, [outFormat]);
return (
<div className="space-y-4">
<div>
<label htmlFor="csc-format" className="text-xs text-muted-foreground">
{s.format}
</label>
<select
id="csc-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"
>
{ALL_FORMATS.map((f) => (
<option key={f.value} value={f.value}>
{f.label}
</option>
))}
</select>
</div>
</div>
);
}