feat: implement user account management features including profile display and password change functionality

This commit is contained in:
Julien Froidefond
2025-10-16 22:27:06 +02:00
parent 3cd58f63e6
commit 83f523c11a
11 changed files with 501 additions and 1 deletions

View File

@@ -0,0 +1,139 @@
"use client";
import { useState } from "react";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { useToast } from "@/components/ui/use-toast";
import { Lock } from "lucide-react";
export function ChangePasswordForm() {
const [currentPassword, setCurrentPassword] = useState("");
const [newPassword, setNewPassword] = useState("");
const [confirmPassword, setConfirmPassword] = useState("");
const [isLoading, setIsLoading] = useState(false);
const { toast } = useToast();
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
if (newPassword !== confirmPassword) {
toast({
variant: "destructive",
title: "Erreur",
description: "Les mots de passe ne correspondent pas",
});
return;
}
if (newPassword.length < 8) {
toast({
variant: "destructive",
title: "Erreur",
description: "Le mot de passe doit contenir au moins 8 caractères",
});
return;
}
setIsLoading(true);
try {
const response = await fetch("/api/user/password", {
method: "PUT",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ currentPassword, newPassword }),
});
if (!response.ok) {
const data = await response.json();
throw new Error(data.error || "Erreur lors du changement de mot de passe");
}
toast({
title: "Succès",
description: "Votre mot de passe a été modifié avec succès",
});
// Reset form
setCurrentPassword("");
setNewPassword("");
setConfirmPassword("");
} catch (error) {
toast({
variant: "destructive",
title: "Erreur",
description: error instanceof Error ? error.message : "Une erreur est survenue",
});
} finally {
setIsLoading(false);
}
};
return (
<Card>
<CardHeader>
<CardTitle>Changer le mot de passe</CardTitle>
<CardDescription>
Assurez-vous d&apos;utiliser un mot de passe fort (8 caractères minimum, une majuscule et un chiffre)
</CardDescription>
</CardHeader>
<CardContent>
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="currentPassword">Mot de passe actuel</Label>
<div className="relative">
<Lock className="absolute left-3 top-3 h-4 w-4 text-muted-foreground" />
<Input
id="currentPassword"
type="password"
value={currentPassword}
onChange={(e) => setCurrentPassword(e.target.value)}
className="pl-9"
required
disabled={isLoading}
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="newPassword">Nouveau mot de passe</Label>
<div className="relative">
<Lock className="absolute left-3 top-3 h-4 w-4 text-muted-foreground" />
<Input
id="newPassword"
type="password"
value={newPassword}
onChange={(e) => setNewPassword(e.target.value)}
className="pl-9"
required
disabled={isLoading}
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="confirmPassword">Confirmer le mot de passe</Label>
<div className="relative">
<Lock className="absolute left-3 top-3 h-4 w-4 text-muted-foreground" />
<Input
id="confirmPassword"
type="password"
value={confirmPassword}
onChange={(e) => setConfirmPassword(e.target.value)}
className="pl-9"
required
disabled={isLoading}
/>
</div>
</div>
<Button type="submit" disabled={isLoading}>
{isLoading ? "Modification..." : "Changer le mot de passe"}
</Button>
</form>
</CardContent>
</Card>
);
}

View File

@@ -0,0 +1,76 @@
"use client";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { Badge } from "@/components/ui/badge";
import { Mail, Calendar, Shield, Heart } from "lucide-react";
import type { UserProfile } from "@/lib/services/user.service";
interface UserProfileCardProps {
profile: UserProfile & { stats: { favoritesCount: number; hasPreferences: boolean; hasKomgaConfig: boolean } };
}
export function UserProfileCard({ profile }: UserProfileCardProps) {
return (
<Card>
<CardHeader>
<CardTitle>Informations du compte</CardTitle>
<CardDescription>Vos informations personnelles</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="flex items-center gap-3">
<Mail className="h-5 w-5 text-muted-foreground" />
<div>
<p className="text-sm font-medium">Email</p>
<p className="text-sm text-muted-foreground">{profile.email}</p>
</div>
</div>
<div className="flex items-center gap-3">
<Shield className="h-5 w-5 text-muted-foreground" />
<div>
<p className="text-sm font-medium">Rôles</p>
<div className="flex gap-2 mt-1">
{profile.roles.map((role) => (
<Badge key={role} variant="secondary">
{role.replace("ROLE_", "")}
</Badge>
))}
</div>
</div>
</div>
<div className="flex items-center gap-3">
<Calendar className="h-5 w-5 text-muted-foreground" />
<div>
<p className="text-sm font-medium">Membre depuis</p>
<p className="text-sm text-muted-foreground">
{new Date(profile.createdAt).toLocaleDateString("fr-FR", {
year: "numeric",
month: "long",
day: "numeric",
})}
</p>
</div>
</div>
<div className="flex items-center gap-3">
<Heart className="h-5 w-5 text-muted-foreground" />
<div>
<p className="text-sm font-medium">Favoris</p>
<p className="text-sm text-muted-foreground">
{profile.stats.favoritesCount} séries favorites
</p>
</div>
</div>
<div className="pt-4 border-t">
<p className="text-xs text-muted-foreground">
Dernière mise à jour:{" "}
{new Date(profile.updatedAt).toLocaleDateString("fr-FR")}
</p>
</div>
</CardContent>
</Card>
);
}