mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
123 lines
3.9 KiB
TypeScript
123 lines
3.9 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 { useFileStore } from "@/stores/file-store";
|
|
|
|
const TARGET_OPTIONS = [
|
|
{ value: "16:9", label: "16:9" },
|
|
{ value: "9:16", label: "9:16" },
|
|
{ value: "1:1", label: "1:1" },
|
|
{ value: "4:3", label: "4:3" },
|
|
{ value: "3:4", label: "3:4" },
|
|
] as const;
|
|
|
|
export function ImagePadSettings() {
|
|
const { t } = useTranslation();
|
|
const { files } = useFileStore();
|
|
const { processFiles, processAllFiles, processing, error, downloadUrl, progress } =
|
|
useToolProcessor("image-pad");
|
|
|
|
const [target, setTarget] = useState("1:1");
|
|
const [color, setColor] = useState("#ffffff");
|
|
|
|
const handleProcess = () => {
|
|
const settings = { target, color };
|
|
if (files.length > 1) {
|
|
processAllFiles(files, settings);
|
|
} else {
|
|
processFiles(files, settings);
|
|
}
|
|
};
|
|
|
|
const hasFile = files.length > 0;
|
|
const canProcess = hasFile && !processing;
|
|
|
|
const handleSubmit = (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
if (canProcess) handleProcess();
|
|
};
|
|
|
|
return (
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
{/* Target Ratio */}
|
|
<div>
|
|
<label htmlFor="image-pad-target" className="text-xs text-muted-foreground">
|
|
{t.toolSettings["image-pad"].target}
|
|
</label>
|
|
<select
|
|
id="image-pad-target"
|
|
value={target}
|
|
onChange={(e) => setTarget(e.target.value)}
|
|
className="w-full mt-0.5 px-2 py-1.5 rounded border border-border bg-background text-sm text-foreground"
|
|
>
|
|
{TARGET_OPTIONS.map((opt) => (
|
|
<option key={opt.value} value={opt.value}>
|
|
{opt.label}
|
|
</option>
|
|
))}
|
|
</select>
|
|
</div>
|
|
|
|
{/* Background Color */}
|
|
<div>
|
|
<label htmlFor="image-pad-color" className="text-xs text-muted-foreground">
|
|
{t.toolSettings["image-pad"].color}
|
|
</label>
|
|
<div className="flex items-center gap-2 mt-0.5">
|
|
<input
|
|
id="image-pad-color"
|
|
type="color"
|
|
value={color}
|
|
onChange={(e) => setColor(e.target.value)}
|
|
className="w-8 h-8 rounded border border-border shrink-0"
|
|
/>
|
|
<input
|
|
type="text"
|
|
value={color}
|
|
onChange={(e) => setColor(e.target.value)}
|
|
className="flex-1 px-2 py-1 rounded border border-border bg-background text-xs text-foreground font-mono"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{error && <p className="text-xs text-red-500">{error}</p>}
|
|
|
|
{processing ? (
|
|
<ProgressCard
|
|
active={processing}
|
|
phase={progress.phase === "idle" ? "uploading" : progress.phase}
|
|
label={t.toolSettings["image-pad"].progressLabel}
|
|
stage={progress.stage}
|
|
percent={progress.percent}
|
|
elapsed={progress.elapsed}
|
|
/>
|
|
) : (
|
|
<button
|
|
type="submit"
|
|
data-testid="image-pad-submit"
|
|
disabled={!canProcess}
|
|
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"
|
|
>
|
|
{files.length > 1
|
|
? t.toolSettings["image-pad"].submitBatch.replace("{count}", String(files.length))
|
|
: t.toolSettings["image-pad"].submit}
|
|
</button>
|
|
)}
|
|
|
|
{downloadUrl && (
|
|
<a
|
|
href={downloadUrl}
|
|
download
|
|
data-testid="image-pad-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" />
|
|
{t.common.download}
|
|
</a>
|
|
)}
|
|
</form>
|
|
);
|
|
}
|