All checks were successful
- Reorganized imports in multiple files for better readability. - Fixed formatting issues in `mode-toggle` and `settings` components to improve maintainability.
257 lines
7.2 KiB
TypeScript
257 lines
7.2 KiB
TypeScript
"use client";
|
|
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import {
|
|
Laptop,
|
|
Loader2,
|
|
Moon,
|
|
Palette,
|
|
Save,
|
|
Sun,
|
|
User as UserIcon,
|
|
} from "lucide-react";
|
|
import { useTheme } from "next-themes";
|
|
import * as React from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { toast } from "sonner";
|
|
import * as z from "zod";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group";
|
|
import { Spinner } from "@/components/ui/spinner";
|
|
import { Textarea } from "@/components/ui/textarea";
|
|
import { useAuth } from "@/providers/auth-provider";
|
|
import { UserService } from "@/services/user.service";
|
|
|
|
const settingsSchema = z.object({
|
|
displayName: z.string().max(32, "Le nom d'affichage est trop long").optional(),
|
|
bio: z.string().max(255, "La bio est trop longue").optional(),
|
|
});
|
|
|
|
type SettingsFormValues = z.infer<typeof settingsSchema>;
|
|
|
|
export default function SettingsPage() {
|
|
const { theme, setTheme } = useTheme();
|
|
const { user, isLoading, refreshUser } = useAuth();
|
|
const [isSaving, setIsSaving] = React.useState(false);
|
|
const [mounted, setMounted] = React.useState(false);
|
|
|
|
React.useEffect(() => {
|
|
setMounted(true);
|
|
}, []);
|
|
|
|
const form = useForm<SettingsFormValues>({
|
|
resolver: zodResolver(settingsSchema),
|
|
defaultValues: {
|
|
displayName: "",
|
|
bio: "",
|
|
},
|
|
});
|
|
|
|
React.useEffect(() => {
|
|
if (user) {
|
|
form.reset({
|
|
displayName: user.displayName || "",
|
|
bio: user.bio || "",
|
|
});
|
|
}
|
|
}, [user, form]);
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<div className="flex h-[400px] items-center justify-center">
|
|
<Spinner className="h-8 w-8 text-primary" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (!user) {
|
|
return (
|
|
<div className="max-w-2xl mx-auto py-8 px-4 text-center">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Accès refusé</CardTitle>
|
|
<CardDescription>
|
|
Vous devez être connecté pour accéder aux paramètres.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const onSubmit = async (values: SettingsFormValues) => {
|
|
setIsSaving(true);
|
|
try {
|
|
await UserService.updateMe(values);
|
|
toast.success("Paramètres mis à jour !");
|
|
await refreshUser();
|
|
} catch (error) {
|
|
console.error(error);
|
|
toast.error("Erreur lors de la mise à jour des paramètres.");
|
|
} finally {
|
|
setIsSaving(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="max-w-2xl mx-auto py-12 px-4">
|
|
<div className="flex items-center gap-3 mb-8">
|
|
<div className="bg-primary/10 p-3 rounded-xl">
|
|
<UserIcon className="h-6 w-6 text-primary" />
|
|
</div>
|
|
<h1 className="text-3xl font-bold">Paramètres du profil</h1>
|
|
</div>
|
|
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Informations personnelles</CardTitle>
|
|
<CardDescription>
|
|
Mettez à jour vos informations publiques. Ces données seront visibles par
|
|
les autres utilisateurs.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(onSubmit)} className="space-y-6">
|
|
<div className="grid gap-4">
|
|
<FormItem>
|
|
<FormLabel>Nom d'utilisateur</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
value={user.username}
|
|
disabled
|
|
className="bg-zinc-50 dark:bg-zinc-900"
|
|
/>
|
|
</FormControl>
|
|
<FormDescription>
|
|
Le nom d'utilisateur ne peut pas être modifié.
|
|
</FormDescription>
|
|
</FormItem>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="displayName"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Nom d'affichage</FormLabel>
|
|
<FormControl>
|
|
<Input placeholder="Votre nom" {...field} />
|
|
</FormControl>
|
|
<FormDescription>
|
|
Le nom qui sera affiché sur votre profil et vos mèmes.
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={form.control}
|
|
name="bio"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Bio</FormLabel>
|
|
<FormControl>
|
|
<Textarea
|
|
placeholder="Racontez-nous quelque chose sur vous..."
|
|
className="resize-none"
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormDescription>
|
|
Une courte description de vous (max 255 caractères).
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</div>
|
|
|
|
<Button type="submit" disabled={isSaving} className="w-full sm:w-auto">
|
|
{isSaving ? (
|
|
<>
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
Enregistrement...
|
|
</>
|
|
) : (
|
|
<>
|
|
<Save className="mr-2 h-4 w-4" />
|
|
Enregistrer les modifications
|
|
</>
|
|
)}
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
</CardContent>
|
|
</Card>
|
|
<Card className="mt-8">
|
|
<CardHeader>
|
|
<div className="flex items-center gap-2">
|
|
<Palette className="h-5 w-5 text-primary" />
|
|
<CardTitle>Apparence</CardTitle>
|
|
</div>
|
|
<CardDescription>
|
|
Personnalisez l'apparence de l'application selon vos préférences.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<RadioGroup
|
|
value={mounted ? theme : "system"}
|
|
onValueChange={(value) => setTheme(value)}
|
|
className="grid grid-cols-1 sm:grid-cols-3 gap-4"
|
|
>
|
|
<div>
|
|
<RadioGroupItem value="light" id="light" className="peer sr-only" />
|
|
<Label
|
|
htmlFor="light"
|
|
className="flex flex-col items-center justify-between rounded-md border-2 border-muted bg-popover p-4 hover:bg-accent hover:text-accent-foreground peer-data-[state=checked]:border-primary [&:has([data-state=checked])]:border-primary cursor-pointer"
|
|
>
|
|
<Sun className="mb-3 h-6 w-6" />
|
|
<span>Clair</span>
|
|
</Label>
|
|
</div>
|
|
<div>
|
|
<RadioGroupItem value="dark" id="dark" className="peer sr-only" />
|
|
<Label
|
|
htmlFor="dark"
|
|
className="flex flex-col items-center justify-between rounded-md border-2 border-muted bg-popover p-4 hover:bg-accent hover:text-accent-foreground peer-data-[state=checked]:border-primary [&:has([data-state=checked])]:border-primary cursor-pointer"
|
|
>
|
|
<Moon className="mb-3 h-6 w-6" />
|
|
<span>Sombre</span>
|
|
</Label>
|
|
</div>
|
|
<div>
|
|
<RadioGroupItem value="system" id="system" className="peer sr-only" />
|
|
<Label
|
|
htmlFor="system"
|
|
className="flex flex-col items-center justify-between rounded-md border-2 border-muted bg-popover p-4 hover:bg-accent hover:text-accent-foreground peer-data-[state=checked]:border-primary [&:has([data-state=checked])]:border-primary cursor-pointer"
|
|
>
|
|
<Laptop className="mb-3 h-6 w-6" />
|
|
<span>Système</span>
|
|
</Label>
|
|
</div>
|
|
</RadioGroup>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|