Files
SnapOtter/apps/web/src/components/tools/transcribe-audio-settings.tsx
T

137 lines
4.3 KiB
TypeScript

import { Download } from "lucide-react";
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";
const LANGUAGE_OPTIONS = [
{ value: "auto", labelKey: "autoDetect" },
{ value: "en", label: "English" },
{ value: "de", label: "German" },
{ value: "fr", label: "French" },
{ value: "es", label: "Spanish" },
{ value: "zh", label: "Chinese" },
{ value: "ja", label: "Japanese" },
{ value: "ko", label: "Korean" },
{ value: "id", label: "Indonesian" },
{ value: "th", label: "Thai" },
{ value: "vi", label: "Vietnamese" },
] as const;
const FORMAT_OPTIONS = [
{ value: "txt", labelKey: "plainText" },
{ value: "srt", label: "SRT" },
{ value: "vtt", label: "WebVTT" },
] as const;
export function TranscribeAudioSettings() {
const { t } = useTranslation();
const { files } = useFileStore();
const { processFiles, processAllFiles, processing, error, downloadUrl, progress } =
useToolProcessor("transcribe-audio");
const [language, setLanguage] = useState("auto");
const [outputFormat, setOutputFormat] = useState("txt");
const ts = t.toolSettings["transcribe-audio"];
const hasFile = files.length > 0;
const hasMultiple = files.length > 1;
const handleProcess = () => {
const settings = { language, outputFormat };
if (hasMultiple) {
processAllFiles(files, settings);
} else {
processFiles(files, settings);
}
};
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
handleProcess();
};
return (
<form onSubmit={handleSubmit} className="space-y-4">
{/* Language */}
<div>
<label htmlFor="ta-language" className="mb-1.5 block text-sm font-medium">
{ts.language}
</label>
<select
id="ta-language"
value={language}
onChange={(e) => setLanguage(e.target.value)}
className="border-border bg-background w-full rounded-md border px-3 py-2 text-sm"
>
{LANGUAGE_OPTIONS.map((opt) => (
<option key={opt.value} value={opt.value}>
{"labelKey" in opt ? (ts as Record<string, string>)[opt.labelKey] : opt.label}
</option>
))}
</select>
</div>
{/* Output Format */}
<div>
<label htmlFor="ta-output-format" className="mb-1.5 block text-sm font-medium">
{ts.outputFormat}
</label>
<select
id="ta-output-format"
value={outputFormat}
onChange={(e) => setOutputFormat(e.target.value)}
className="border-border bg-background w-full rounded-md border px-3 py-2 text-sm"
>
{FORMAT_OPTIONS.map((opt) => (
<option key={opt.value} value={opt.value}>
{"labelKey" in opt ? (ts as Record<string, string>)[opt.labelKey] : opt.label}
</option>
))}
</select>
</div>
{/* Progress / Submit */}
{processing && progress ? (
<ProgressCard
active={processing}
phase={progress.phase === "idle" ? "uploading" : progress.phase}
label={ts.progressLabel}
stage={progress.stage}
percent={progress.percent}
elapsed={progress.elapsed}
/>
) : (
<button
type="submit"
disabled={!hasFile || processing}
className="bg-primary text-primary-foreground hover:bg-primary/90 disabled:bg-muted w-full rounded-md px-4 py-2 text-sm font-medium disabled:cursor-not-allowed"
>
{hasMultiple ? format(ts.submitBatch, { count: files.length }) : ts.submit}
</button>
)}
{/* Error */}
{error && (
<div className="text-destructive rounded-md bg-red-50 p-3 text-sm dark:bg-red-950">
{error}
</div>
)}
{/* Download */}
{downloadUrl && (
<a
href={downloadUrl}
download
className="bg-primary text-primary-foreground hover:bg-primary/90 flex items-center justify-center gap-2 rounded-md px-4 py-2 text-sm font-medium"
>
<Download className="h-4 w-4" />
{t.common.download}
</a>
)}
</form>
);
}