2026-03-23 01:45:58 +08:00
|
|
|
import { Download } from "lucide-react";
|
2026-03-25 09:27:12 +08:00
|
|
|
import { useState } from "react";
|
2026-03-23 01:45:58 +08:00
|
|
|
import { ProgressCard } from "@/components/common/progress-card";
|
2026-03-25 09:27:12 +08:00
|
|
|
import { useToolProcessor } from "@/hooks/use-tool-processor";
|
|
|
|
|
import { useFileStore } from "@/stores/file-store";
|
2026-03-22 03:56:44 +08:00
|
|
|
|
|
|
|
|
const OUTPUT_FORMATS = ["jpg", "png", "webp", "avif", "tiff", "gif"] as const;
|
|
|
|
|
const LOSSY_FORMATS = new Set(["jpg", "webp", "avif"]);
|
|
|
|
|
|
|
|
|
|
export function ConvertSettings() {
|
|
|
|
|
const { files } = useFileStore();
|
2026-03-25 09:27:12 +08:00
|
|
|
const {
|
|
|
|
|
processFiles,
|
|
|
|
|
processAllFiles,
|
|
|
|
|
processing,
|
|
|
|
|
error,
|
|
|
|
|
downloadUrl,
|
|
|
|
|
originalSize,
|
|
|
|
|
processedSize,
|
|
|
|
|
progress,
|
|
|
|
|
} = useToolProcessor("convert");
|
2026-03-22 03:56:44 +08:00
|
|
|
|
|
|
|
|
const [format, setFormat] = useState<string>("png");
|
|
|
|
|
const [quality, setQuality] = useState(85);
|
|
|
|
|
|
|
|
|
|
// Detect source format from filename
|
|
|
|
|
const sourceFile = files[0];
|
|
|
|
|
const sourceExt = sourceFile
|
|
|
|
|
? sourceFile.name.split(".").pop()?.toLowerCase() || "unknown"
|
|
|
|
|
: "none";
|
|
|
|
|
|
|
|
|
|
const isLossy = LOSSY_FORMATS.has(format);
|
|
|
|
|
|
|
|
|
|
const handleProcess = () => {
|
|
|
|
|
const settings: Record<string, unknown> = { format };
|
|
|
|
|
if (isLossy) {
|
|
|
|
|
settings.quality = quality;
|
|
|
|
|
}
|
2026-03-23 14:11:08 +08:00
|
|
|
if (files.length > 1) {
|
|
|
|
|
processAllFiles(files, settings);
|
|
|
|
|
} else {
|
|
|
|
|
processFiles(files, settings);
|
|
|
|
|
}
|
2026-03-22 03:56:44 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const hasFile = files.length > 0;
|
|
|
|
|
|
2026-03-22 11:04:20 +08:00
|
|
|
const handleSubmit = (e: React.FormEvent) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
if (hasFile && !processing) handleProcess();
|
|
|
|
|
};
|
|
|
|
|
|
2026-03-22 03:56:44 +08:00
|
|
|
return (
|
2026-03-22 11:04:20 +08:00
|
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
2026-03-22 03:56:44 +08:00
|
|
|
{/* Source format */}
|
|
|
|
|
{hasFile && (
|
|
|
|
|
<div>
|
2026-03-26 01:10:13 +08:00
|
|
|
<p className="text-xs text-muted-foreground">Source Format</p>
|
2026-03-22 03:56:44 +08:00
|
|
|
<div className="mt-0.5 px-2 py-1.5 rounded bg-muted text-sm text-foreground uppercase font-mono">
|
|
|
|
|
{sourceExt}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{/* Target format */}
|
|
|
|
|
<div>
|
2026-03-26 01:10:13 +08:00
|
|
|
<label htmlFor="convert-target-format" className="text-xs text-muted-foreground">
|
|
|
|
|
Target Format
|
|
|
|
|
</label>
|
2026-03-22 03:56:44 +08:00
|
|
|
<select
|
2026-03-26 01:10:13 +08:00
|
|
|
id="convert-target-format"
|
2026-03-22 03:56:44 +08:00
|
|
|
value={format}
|
|
|
|
|
onChange={(e) => setFormat(e.target.value)}
|
|
|
|
|
className="w-full mt-0.5 px-2 py-1.5 rounded border border-border bg-background text-sm text-foreground"
|
|
|
|
|
>
|
|
|
|
|
{OUTPUT_FORMATS.map((f) => (
|
|
|
|
|
<option key={f} value={f}>
|
|
|
|
|
{f.toUpperCase()}
|
|
|
|
|
</option>
|
|
|
|
|
))}
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Quality slider (lossy only) */}
|
|
|
|
|
{isLossy && (
|
|
|
|
|
<div>
|
|
|
|
|
<div className="flex justify-between items-center">
|
2026-03-26 01:10:13 +08:00
|
|
|
<label htmlFor="convert-quality" className="text-xs text-muted-foreground">
|
|
|
|
|
Quality
|
|
|
|
|
</label>
|
2026-03-22 03:56:44 +08:00
|
|
|
<span className="text-xs font-mono text-foreground">{quality}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<input
|
2026-03-26 01:10:13 +08:00
|
|
|
id="convert-quality"
|
2026-03-22 03:56:44 +08:00
|
|
|
type="range"
|
|
|
|
|
min={1}
|
|
|
|
|
max={100}
|
|
|
|
|
value={quality}
|
|
|
|
|
onChange={(e) => setQuality(Number(e.target.value))}
|
|
|
|
|
className="w-full mt-1"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{/* Error */}
|
|
|
|
|
{error && <p className="text-xs text-red-500">{error}</p>}
|
|
|
|
|
|
|
|
|
|
{/* Size info */}
|
|
|
|
|
{originalSize != null && processedSize != null && (
|
|
|
|
|
<div className="text-xs text-muted-foreground space-y-0.5">
|
|
|
|
|
<p>Original: {(originalSize / 1024).toFixed(1)} KB</p>
|
|
|
|
|
<p>Processed: {(processedSize / 1024).toFixed(1)} KB</p>
|
|
|
|
|
<p>
|
|
|
|
|
Savings:{" "}
|
2026-03-25 09:27:12 +08:00
|
|
|
{originalSize > 0 ? ((1 - processedSize / originalSize) * 100).toFixed(1) : "0"}%
|
2026-03-22 03:56:44 +08:00
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{/* Process */}
|
2026-03-23 01:45:58 +08:00
|
|
|
{processing ? (
|
|
|
|
|
<ProgressCard
|
|
|
|
|
active={processing}
|
|
|
|
|
phase={progress.phase === "idle" ? "uploading" : progress.phase}
|
|
|
|
|
label="Converting"
|
|
|
|
|
stage={progress.stage}
|
|
|
|
|
percent={progress.percent}
|
|
|
|
|
elapsed={progress.elapsed}
|
|
|
|
|
/>
|
|
|
|
|
) : (
|
|
|
|
|
<button
|
|
|
|
|
type="submit"
|
|
|
|
|
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 flex items-center justify-center gap-2"
|
|
|
|
|
>
|
2026-03-23 14:11:08 +08:00
|
|
|
{files.length > 1 ? `Convert (${files.length} files)` : "Convert"}
|
2026-03-23 01:45:58 +08:00
|
|
|
</button>
|
|
|
|
|
)}
|
2026-03-22 03:56:44 +08:00
|
|
|
|
|
|
|
|
{/* Download */}
|
|
|
|
|
{downloadUrl && (
|
|
|
|
|
<a
|
|
|
|
|
href={downloadUrl}
|
|
|
|
|
download
|
|
|
|
|
className="w-full py-2.5 rounded-lg border border-primary text-primary font-medium flex items-center justify-center gap-2 hover:bg-primary/5"
|
|
|
|
|
>
|
|
|
|
|
<Download className="h-4 w-4" />
|
|
|
|
|
Download
|
|
|
|
|
</a>
|
|
|
|
|
)}
|
2026-03-22 11:04:20 +08:00
|
|
|
</form>
|
2026-03-22 03:56:44 +08:00
|
|
|
);
|
|
|
|
|
}
|