Implement full internationalization for the Next.js backoffice: - i18n infrastructure: type-safe dictionaries (fr.ts/en.ts), cookie-based locale detection, React Context for client components, server-side translation helper - Language selector in Settings page (General tab) with cookie + DB persistence - All ~35 pages and components translated via t() / useTranslation() - Default locale set to English, French available via settings Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
98 lines
3.7 KiB
TypeScript
98 lines
3.7 KiB
TypeScript
"use client";
|
|
|
|
import { useTransition } from "react";
|
|
import { useTranslation } from "../../lib/i18n/context";
|
|
|
|
interface MonitoringFormProps {
|
|
libraryId: string;
|
|
monitorEnabled: boolean;
|
|
scanMode: string;
|
|
watcherEnabled: boolean;
|
|
}
|
|
|
|
export function MonitoringForm({ libraryId, monitorEnabled, scanMode, watcherEnabled }: MonitoringFormProps) {
|
|
const { t } = useTranslation();
|
|
const [isPending, startTransition] = useTransition();
|
|
|
|
const handleSubmit = (formData: FormData) => {
|
|
startTransition(async () => {
|
|
try {
|
|
const response = await fetch(`/api/libraries/${libraryId}/monitoring`, {
|
|
method: "PATCH",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({
|
|
monitor_enabled: formData.get("monitor_enabled") === "true",
|
|
scan_mode: formData.get("scan_mode"),
|
|
watcher_enabled: formData.get("watcher_enabled") === "true",
|
|
}),
|
|
});
|
|
if (response.ok) {
|
|
window.location.reload();
|
|
}
|
|
} catch (error) {
|
|
console.error("Failed to update monitoring:", error);
|
|
}
|
|
});
|
|
};
|
|
|
|
return (
|
|
<form action={handleSubmit} className="flex items-center gap-2">
|
|
<input type="hidden" name="id" value={libraryId} />
|
|
|
|
<div className="flex items-center gap-2">
|
|
<label className={`flex items-center gap-1.5 px-2.5 py-1.5 rounded-lg border text-sm font-medium transition-all cursor-pointer select-none ${
|
|
isPending
|
|
? 'opacity-50 cursor-not-allowed'
|
|
: 'hover:border-primary'
|
|
} ${monitorEnabled ? 'bg-primary/10 border-primary text-primary' : 'bg-card border-border text-muted-foreground'}`}>
|
|
<input
|
|
type="checkbox"
|
|
name="monitor_enabled"
|
|
value="true"
|
|
defaultChecked={monitorEnabled}
|
|
disabled={isPending}
|
|
className="w-3.5 h-3.5 rounded border-border text-primary focus:ring-primary"
|
|
/>
|
|
<span>{t("monitoring.auto")}</span>
|
|
</label>
|
|
|
|
<label className={`flex items-center gap-1.5 px-2.5 py-1.5 rounded-lg border text-sm font-medium transition-all cursor-pointer select-none ${
|
|
isPending
|
|
? 'opacity-50 cursor-not-allowed'
|
|
: 'hover:border-primary'
|
|
} ${watcherEnabled ? 'bg-warning/10 border-warning text-warning' : 'bg-card border-border text-muted-foreground'}`}>
|
|
<input
|
|
type="checkbox"
|
|
name="watcher_enabled"
|
|
value="true"
|
|
defaultChecked={watcherEnabled}
|
|
disabled={isPending}
|
|
className="w-3.5 h-3.5 rounded border-border text-warning focus:ring-warning"
|
|
/>
|
|
<span title={t("monitoring.fileWatch")}>⚡</span>
|
|
</label>
|
|
|
|
<select
|
|
name="scan_mode"
|
|
defaultValue={scanMode}
|
|
disabled={isPending}
|
|
className="px-3 py-1.5 text-sm rounded-lg border border-border bg-card text-foreground focus:ring-2 focus:ring-primary focus:border-primary disabled:opacity-50"
|
|
>
|
|
<option value="manual">{t("monitoring.manual")}</option>
|
|
<option value="hourly">{t("monitoring.hourly")}</option>
|
|
<option value="daily">{t("monitoring.daily")}</option>
|
|
<option value="weekly">{t("monitoring.weekly")}</option>
|
|
</select>
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={isPending}
|
|
className="flex items-center justify-center w-8 h-8 rounded-lg bg-primary text-white font-semibold text-sm transition-all hover:bg-primary/90 disabled:opacity-50 disabled:cursor-not-allowed"
|
|
>
|
|
{isPending ? '...' : '✓'}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
);
|
|
}
|