mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
Add complete i18n infrastructure with 21 supported languages: English, Simplified Chinese, Traditional Chinese, Japanese, Korean, Spanish, French, Italian, Brazilian Portuguese, German, Dutch, Swedish, Russian, Polish, Ukrainian, Arabic (RTL), Turkish, Hindi, Vietnamese, Indonesian, and Thai. - I18nProvider context with three-tier locale detection (user preference > navigator.languages > instance default > English) - ~1500 translation keys per locale with TypeScript-enforced completeness - Dynamic code-splitting: only the active locale is loaded at runtime - Language selectors in footer, login page, settings, and mobile sidebar - Arabic RTL support with CSS logical properties across all components - Tool names, descriptions, and categories translated via i18n helpers - Public API endpoint GET /api/v1/config/locale for instance default - Multi-script font stack (CJK, Arabic, Devanagari, Thai, Cyrillic) - format() and plural() helpers for interpolation and pluralization - API error translation mapping (translateApiError) - 36 Playwright e2e tests verifying all 21 locales load correctly - 25 unit tests for format, plural, locale detection, and completeness - Updated translations.md docs and CLAUDE.md conventions
293 lines
10 KiB
TypeScript
293 lines
10 KiB
TypeScript
import { Download } from "lucide-react";
|
|
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";
|
|
|
|
export interface RestorePhotoControlsProps {
|
|
settings?: Record<string, unknown>;
|
|
onChange?: (settings: Record<string, unknown>) => void;
|
|
}
|
|
|
|
export function RestorePhotoControls({
|
|
settings: initialSettings,
|
|
onChange,
|
|
}: RestorePhotoControlsProps) {
|
|
const { t } = useTranslation();
|
|
const [scratchRemoval, setScratchRemoval] = useState(true);
|
|
const [faceEnhancement, setFaceEnhancement] = useState(true);
|
|
const [fidelity, setFidelity] = useState(70);
|
|
const [denoise, setDenoise] = useState(true);
|
|
const [denoiseStrength, setDenoiseStrength] = useState(25);
|
|
const [colorize, setColorize] = useState(false);
|
|
const [colorizeStrength, setColorizeStrength] = useState(85);
|
|
|
|
// One-time init from pipeline settings
|
|
const initializedRef = useRef(false);
|
|
useEffect(() => {
|
|
if (!initialSettings || initializedRef.current) return;
|
|
initializedRef.current = true;
|
|
if (initialSettings.scratchRemoval != null)
|
|
setScratchRemoval(Boolean(initialSettings.scratchRemoval));
|
|
if (initialSettings.faceEnhancement != null)
|
|
setFaceEnhancement(Boolean(initialSettings.faceEnhancement));
|
|
if (initialSettings.fidelity != null) setFidelity(Number(initialSettings.fidelity) * 100);
|
|
if (initialSettings.denoise != null) setDenoise(Boolean(initialSettings.denoise));
|
|
if (initialSettings.denoiseStrength != null)
|
|
setDenoiseStrength(Number(initialSettings.denoiseStrength));
|
|
if (initialSettings.colorize != null) setColorize(Boolean(initialSettings.colorize));
|
|
if (initialSettings.colorizeStrength != null)
|
|
setColorizeStrength(Number(initialSettings.colorizeStrength));
|
|
}, [initialSettings]);
|
|
|
|
// Emit settings on change
|
|
const onChangeRef = useRef(onChange);
|
|
useEffect(() => {
|
|
onChangeRef.current = onChange;
|
|
});
|
|
|
|
useEffect(() => {
|
|
onChangeRef.current?.({
|
|
scratchRemoval,
|
|
faceEnhancement,
|
|
fidelity: fidelity / 100,
|
|
denoise,
|
|
denoiseStrength,
|
|
colorize,
|
|
colorizeStrength,
|
|
});
|
|
}, [
|
|
scratchRemoval,
|
|
faceEnhancement,
|
|
fidelity,
|
|
denoise,
|
|
denoiseStrength,
|
|
colorize,
|
|
colorizeStrength,
|
|
]);
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
{/* Feature toggles */}
|
|
<div className="space-y-3">
|
|
{/* Scratch Removal */}
|
|
<label className="flex items-center justify-between cursor-pointer">
|
|
<div>
|
|
<p className="text-sm font-medium">Scratch Removal</p>
|
|
<p className="text-[10px] text-muted-foreground">
|
|
Detect and repair scratches, tears, spots
|
|
</p>
|
|
</div>
|
|
<input
|
|
type="checkbox"
|
|
checked={scratchRemoval}
|
|
onChange={(e) => setScratchRemoval(e.target.checked)}
|
|
className="h-4 w-4 rounded border-muted-foreground accent-primary"
|
|
/>
|
|
</label>
|
|
|
|
{/* Face Enhancement */}
|
|
<label className="flex items-center justify-between cursor-pointer">
|
|
<div>
|
|
<p className="text-sm font-medium">Face Enhancement</p>
|
|
<p className="text-[10px] text-muted-foreground">
|
|
Restore degraded faces with CodeFormer AI
|
|
</p>
|
|
</div>
|
|
<input
|
|
type="checkbox"
|
|
checked={faceEnhancement}
|
|
onChange={(e) => setFaceEnhancement(e.target.checked)}
|
|
className="h-4 w-4 rounded border-muted-foreground accent-primary"
|
|
/>
|
|
</label>
|
|
|
|
{/* Fidelity slider (only when face enhancement is on) */}
|
|
{faceEnhancement && (
|
|
<div className="ps-2 border-s-2 border-primary/20">
|
|
<div className="flex justify-between items-center">
|
|
<p className="text-xs text-muted-foreground">Face Fidelity</p>
|
|
<span className="text-xs font-mono tabular-nums">{fidelity}%</span>
|
|
</div>
|
|
<input
|
|
type="range"
|
|
min={0}
|
|
max={100}
|
|
step={5}
|
|
value={fidelity}
|
|
onChange={(e) => setFidelity(Number(e.target.value))}
|
|
className="w-full h-1.5 rounded-full appearance-none bg-muted accent-primary"
|
|
/>
|
|
<div className="flex justify-between text-[10px] text-muted-foreground mt-0.5">
|
|
<span>Enhanced</span>
|
|
<span>Faithful</span>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* Noise Reduction */}
|
|
<label className="flex items-center justify-between cursor-pointer">
|
|
<div>
|
|
<p className="text-sm font-medium">Noise Reduction</p>
|
|
<p className="text-[10px] text-muted-foreground">
|
|
Remove grain and noise from old photos
|
|
</p>
|
|
</div>
|
|
<input
|
|
type="checkbox"
|
|
checked={denoise}
|
|
onChange={(e) => setDenoise(e.target.checked)}
|
|
className="h-4 w-4 rounded border-muted-foreground accent-primary"
|
|
/>
|
|
</label>
|
|
|
|
{/* Denoise strength slider */}
|
|
{denoise && (
|
|
<div className="ps-2 border-s-2 border-primary/20">
|
|
<div className="flex justify-between items-center">
|
|
<p className="text-xs text-muted-foreground">Denoise Strength</p>
|
|
<span className="text-xs font-mono tabular-nums">{denoiseStrength}</span>
|
|
</div>
|
|
<input
|
|
type="range"
|
|
min={0}
|
|
max={100}
|
|
step={5}
|
|
value={denoiseStrength}
|
|
onChange={(e) => setDenoiseStrength(Number(e.target.value))}
|
|
className="w-full h-1.5 rounded-full appearance-none bg-muted accent-primary"
|
|
/>
|
|
<div className="flex justify-between text-[10px] text-muted-foreground mt-0.5">
|
|
<span>Subtle</span>
|
|
<span>Strong</span>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
<div className="border-t border-border pt-3" />
|
|
|
|
{/* Auto-Colorize */}
|
|
<label className="flex items-center justify-between cursor-pointer">
|
|
<div>
|
|
<p className="text-sm font-medium">Auto-Colorize</p>
|
|
<p className="text-[10px] text-muted-foreground">
|
|
Add color to B&W photos using DDColor AI
|
|
</p>
|
|
</div>
|
|
<input
|
|
type="checkbox"
|
|
checked={colorize}
|
|
onChange={(e) => setColorize(e.target.checked)}
|
|
className="h-4 w-4 rounded border-muted-foreground accent-primary"
|
|
/>
|
|
</label>
|
|
|
|
{/* Colorize strength slider */}
|
|
{colorize && (
|
|
<div className="ps-2 border-s-2 border-primary/20">
|
|
<div className="flex justify-between items-center">
|
|
<p className="text-xs text-muted-foreground">Colorize Strength</p>
|
|
<span className="text-xs font-mono tabular-nums">{colorizeStrength}%</span>
|
|
</div>
|
|
<input
|
|
type="range"
|
|
min={0}
|
|
max={100}
|
|
step={5}
|
|
value={colorizeStrength}
|
|
onChange={(e) => setColorizeStrength(Number(e.target.value))}
|
|
className="w-full h-1.5 rounded-full appearance-none bg-muted accent-primary"
|
|
/>
|
|
<div className="flex justify-between text-[10px] text-muted-foreground mt-0.5">
|
|
<span>Subtle</span>
|
|
<span>Vivid</span>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export function RestorePhotoSettings() {
|
|
const { t } = useTranslation();
|
|
const { files } = useFileStore();
|
|
const {
|
|
processFiles,
|
|
processAllFiles,
|
|
processing,
|
|
error,
|
|
downloadUrl,
|
|
originalSize,
|
|
processedSize,
|
|
progress,
|
|
} = useToolProcessor("restore-photo");
|
|
const [settings, setSettings] = useState<Record<string, unknown>>({});
|
|
|
|
const handleProcess = () => {
|
|
if (files.length > 1) {
|
|
processAllFiles(files, settings);
|
|
} else {
|
|
processFiles(files, settings);
|
|
}
|
|
};
|
|
|
|
const hasFile = files.length > 0;
|
|
const hasMultiple = files.length > 1;
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
<RestorePhotoControls onChange={setSettings} />
|
|
|
|
{/* 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>Restored: {(processedSize / 1024).toFixed(1)} KB</p>
|
|
</div>
|
|
)}
|
|
|
|
{/* Process button / progress */}
|
|
{processing ? (
|
|
<ProgressCard
|
|
active={processing}
|
|
phase={progress.phase === "idle" ? "uploading" : progress.phase}
|
|
label={hasMultiple ? `Restoring ${files.length} photos` : "Restoring photo"}
|
|
percent={progress.percent}
|
|
elapsed={progress.elapsed}
|
|
/>
|
|
) : (
|
|
<button
|
|
type="button"
|
|
data-testid="restore-photo-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 flex items-center justify-center gap-2"
|
|
>
|
|
{hasMultiple
|
|
? format(t.toolSettings["restore-photo"].submitBatch, { count: files.length })
|
|
: t.toolSettings["restore-photo"].submit}
|
|
</button>
|
|
)}
|
|
|
|
{/* Download (single file) */}
|
|
{!hasMultiple && downloadUrl && (
|
|
<a
|
|
href={downloadUrl}
|
|
download
|
|
data-testid="restore-photo-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>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|