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 Target = "16:9" | "9:16" | "1:1" | "4:3" | "3:4"; export function BlurPadSettings() { const { t } = useTranslation(); const s = t.toolSettings["blur-pad"]; const { files } = useFileStore(); const { processFiles, processAllFiles, processing, error, progress } = useToolProcessor("blur-pad"); const [target, setTarget] = useState("16:9"); const [blur, setBlur] = useState(20); const hasFile = files.length > 0; const hasMultiple = files.length > 1; const handleProcess = () => { const settings = { target, blur }; if (hasMultiple) { processAllFiles(files, settings); } else { processFiles(files, settings); } }; return (
setBlur(Number(e.target.value))} className="w-full mt-0.5 px-2 py-1.5 rounded border border-border bg-background text-sm text-foreground" />
{error &&

{error}

} {processing ? ( ) : ( )}
); } export interface BlurPadControlsProps { settings?: Record; onChange?: (settings: Record) => void; } export function BlurPadControls({ settings: initial, onChange }: BlurPadControlsProps) { const { t } = useTranslation(); const s = t.toolSettings["blur-pad"]; const [target, setTarget] = useState("16:9"); const [blur, setBlur] = useState(20); const initializedRef = useRef(false); useEffect(() => { if (!initial || initializedRef.current) return; initializedRef.current = true; if (initial.target != null) setTarget(initial.target as Target); if (initial.blur != null) setBlur(Number(initial.blur)); }, [initial]); const onChangeRef = useRef(onChange); useEffect(() => { onChangeRef.current = onChange; }); useEffect(() => { onChangeRef.current?.({ target, blur }); }, [target, blur]); return (
setBlur(Number(e.target.value))} className="w-full mt-0.5 px-2 py-1.5 rounded border border-border bg-background text-sm text-foreground" />
); }