mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
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";
|
|
|
|
export function ReverseVideoSettings() {
|
|
const { t } = useTranslation();
|
|
const s = t.toolSettings["reverse-video"];
|
|
const { files } = useFileStore();
|
|
const { processFiles, processAllFiles, processing, error, progress } =
|
|
useToolProcessor("reverse-video");
|
|
|
|
const hasFile = files.length > 0;
|
|
const hasMultiple = files.length > 1;
|
|
|
|
const handleProcess = () => {
|
|
const settings = {};
|
|
if (hasMultiple) {
|
|
processAllFiles(files, settings);
|
|
} else {
|
|
processFiles(files, settings);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
<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="reverse-video-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>
|
|
);
|
|
}
|