- Update client dashboard with modern cards, SVG statistics icons, and prize icons - Add roulette animation with colored prize icons during ticket draw - Redesign history page with 4 statistics cards and SVG icons - Add "Rejetés" filter button in history page - Update profile page with modern card styling - Redesign header with clickable user name/email button - Add Facebook login button with green border styling - Update game page with roulette animation and prize display - Add prize values to constants (15€, 25€, 39€, 69€) - Replace all emoji icons with professional SVG icons - Apply consistent color scheme: green (#1a4d2e, #2d5a3d) and orange (#f59e0b) - Improve button styles and hover effects across all pages 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
297 lines
11 KiB
TypeScript
297 lines
11 KiB
TypeScript
"use client";
|
|
import { useState, useEffect } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useAuth } from "@/contexts/AuthContext";
|
|
import { profileUpdateSchema, ProfileUpdateFormData } from "@/lib/validations";
|
|
import { Input } from "@/components/ui/Input";
|
|
import Button from "@/components/Button";
|
|
import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/Card";
|
|
import { Badge } from "@/components/ui/Badge";
|
|
import { userService } from "@/services/user.service";
|
|
import toast from "react-hot-toast";
|
|
import { useRouter } from "next/navigation";
|
|
import { ROUTES } from "@/utils/constants";
|
|
import { formatDate } from "@/utils/helpers";
|
|
|
|
export const dynamic = 'force-dynamic';
|
|
|
|
export default function ProfilePage() {
|
|
const { user, isAuthenticated, refreshUser } = useAuth();
|
|
const router = useRouter();
|
|
const [isEditing, setIsEditing] = useState(false);
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
const [isReady, setIsReady] = useState(false);
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
reset,
|
|
formState: { errors },
|
|
} = useForm<ProfileUpdateFormData>({
|
|
resolver: zodResolver(profileUpdateSchema),
|
|
defaultValues: {
|
|
firstName: user?.firstName || "",
|
|
lastName: user?.lastName || "",
|
|
phone: user?.phone || "",
|
|
},
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (!isAuthenticated || !user) {
|
|
router.push(ROUTES.LOGIN);
|
|
} else {
|
|
setIsReady(true);
|
|
}
|
|
}, [isAuthenticated, user, router]);
|
|
|
|
if (!isReady || !user) {
|
|
return null;
|
|
}
|
|
|
|
const onSubmit = async (data: ProfileUpdateFormData) => {
|
|
setIsSubmitting(true);
|
|
try {
|
|
await userService.updateProfile(data);
|
|
await refreshUser();
|
|
toast.success("Profil mis à jour avec succès");
|
|
setIsEditing(false);
|
|
} catch (error: any) {
|
|
toast.error(error.message || "Erreur lors de la mise à jour du profil");
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
};
|
|
|
|
const handleCancel = () => {
|
|
reset({
|
|
firstName: user?.firstName || "",
|
|
lastName: user?.lastName || "",
|
|
phone: user?.phone || "",
|
|
});
|
|
setIsEditing(false);
|
|
};
|
|
|
|
const getRoleBadgeVariant = (role: string) => {
|
|
switch (role) {
|
|
case "admin":
|
|
return "danger";
|
|
case "employee":
|
|
return "warning";
|
|
default:
|
|
return "info";
|
|
}
|
|
};
|
|
|
|
const getRoleLabel = (role: string) => {
|
|
switch (role) {
|
|
case "admin":
|
|
return "Administrateur";
|
|
case "employee":
|
|
return "Employé";
|
|
default:
|
|
return "Client";
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 py-8">
|
|
<div className="container mx-auto px-4 max-w-4xl">
|
|
<h1 className="text-4xl font-bold text-gray-900 mb-8">Mon profil</h1>
|
|
|
|
<div className="grid md:grid-cols-3 gap-6">
|
|
{/* Profile Info Card */}
|
|
<div className="md:col-span-2">
|
|
<div className="bg-white rounded-xl shadow-md overflow-hidden">
|
|
<div className="px-6 py-4 border-b border-gray-200">
|
|
<h2 className="text-xl font-bold text-gray-900">Informations personnelles</h2>
|
|
</div>
|
|
<div className="p-6">
|
|
{!isEditing ? (
|
|
<div className="space-y-4">
|
|
<div>
|
|
<label className="text-sm font-medium text-gray-500">
|
|
Prénom
|
|
</label>
|
|
<p className="text-lg text-gray-900">{user.firstName}</p>
|
|
</div>
|
|
<div>
|
|
<label className="text-sm font-medium text-gray-500">
|
|
Nom
|
|
</label>
|
|
<p className="text-lg text-gray-900">{user.lastName}</p>
|
|
</div>
|
|
<div>
|
|
<label className="text-sm font-medium text-gray-500">
|
|
Email
|
|
</label>
|
|
<p className="text-lg text-gray-900">{user.email}</p>
|
|
</div>
|
|
<div>
|
|
<label className="text-sm font-medium text-gray-500">
|
|
Téléphone
|
|
</label>
|
|
<p className="text-lg text-gray-900">
|
|
{user.phone || "Non renseigné"}
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<label className="text-sm font-medium text-gray-500">
|
|
Rôle
|
|
</label>
|
|
<div className="mt-1">
|
|
<Badge variant={getRoleBadgeVariant(user.role)}>
|
|
{getRoleLabel(user.role)}
|
|
</Badge>
|
|
</div>
|
|
</div>
|
|
<div className="pt-4">
|
|
<button
|
|
onClick={() => setIsEditing(true)}
|
|
className="bg-[#1a4d2e] hover:bg-[#2d5a3d] text-white font-bold px-6 py-3 rounded-lg transition-all"
|
|
>
|
|
Modifier mes informations
|
|
</button>
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<form onSubmit={handleSubmit(onSubmit)} className="space-y-4">
|
|
<Input
|
|
id="firstName"
|
|
type="text"
|
|
label="Prénom"
|
|
error={errors.firstName?.message}
|
|
{...register("firstName")}
|
|
required
|
|
/>
|
|
<Input
|
|
id="lastName"
|
|
type="text"
|
|
label="Nom"
|
|
error={errors.lastName?.message}
|
|
{...register("lastName")}
|
|
required
|
|
/>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
label="Email"
|
|
value={user.email}
|
|
disabled
|
|
helperText="L'email ne peut pas être modifié"
|
|
/>
|
|
<Input
|
|
id="phone"
|
|
type="tel"
|
|
label="Téléphone"
|
|
error={errors.phone?.message}
|
|
{...register("phone")}
|
|
/>
|
|
<div className="flex gap-3">
|
|
<button
|
|
type="submit"
|
|
disabled={isSubmitting}
|
|
className="bg-[#1a4d2e] hover:bg-[#2d5a3d] disabled:bg-gray-400 text-white font-bold px-6 py-3 rounded-lg transition-all"
|
|
>
|
|
{isSubmitting ? "Enregistrement..." : "Enregistrer"}
|
|
</button>
|
|
<button
|
|
type="button"
|
|
onClick={handleCancel}
|
|
disabled={isSubmitting}
|
|
className="border-2 border-gray-300 hover:bg-gray-50 text-gray-700 font-bold px-6 py-3 rounded-lg transition-all"
|
|
>
|
|
Annuler
|
|
</button>
|
|
</div>
|
|
</form>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Account Status Card */}
|
|
<div>
|
|
<div className="bg-white rounded-xl shadow-md overflow-hidden">
|
|
<div className="px-6 py-4 border-b border-gray-200">
|
|
<h2 className="text-xl font-bold text-gray-900">Statut du compte</h2>
|
|
</div>
|
|
<div className="p-6 space-y-4">
|
|
<div>
|
|
<label className="text-sm font-medium text-gray-500">
|
|
Email vérifié
|
|
</label>
|
|
<div className="mt-1">
|
|
{user.isVerified ? (
|
|
<Badge variant="success">Vérifié ✓</Badge>
|
|
) : (
|
|
<Badge variant="warning">Non vérifié</Badge>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<label className="text-sm font-medium text-gray-500">
|
|
Membre depuis
|
|
</label>
|
|
<p className="text-sm text-gray-900 mt-1">
|
|
{formatDate(user.createdAt)}
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<label className="text-sm font-medium text-gray-500">
|
|
Dernière modification
|
|
</label>
|
|
<p className="text-sm text-gray-900 mt-1">
|
|
{user.updatedAt ? formatDate(user.updatedAt) : 'N/A'}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Quick Actions Card */}
|
|
<div className="bg-white rounded-xl shadow-md overflow-hidden mt-6">
|
|
<div className="px-6 py-4 border-b border-gray-200">
|
|
<h2 className="text-xl font-bold text-gray-900">Actions rapides</h2>
|
|
</div>
|
|
<div className="p-6 space-y-2">
|
|
{user.role === "CLIENT" && (
|
|
<>
|
|
<button
|
|
onClick={() => router.push(ROUTES.GAME)}
|
|
className="w-full bg-[#f59e0b] hover:bg-[#d97706] text-white font-bold px-6 py-3 rounded-lg transition-all"
|
|
>
|
|
Jouer
|
|
</button>
|
|
<button
|
|
onClick={() => router.push(ROUTES.HISTORY)}
|
|
className="w-full border-2 border-[#1a4d2e] text-[#1a4d2e] hover:bg-[#1a4d2e] hover:text-white font-bold px-6 py-3 rounded-lg transition-all"
|
|
>
|
|
Historique
|
|
</button>
|
|
</>
|
|
)}
|
|
{user.role === "EMPLOYEE" && (
|
|
<button
|
|
onClick={() => router.push(ROUTES.EMPLOYEE_DASHBOARD)}
|
|
className="w-full border-2 border-[#1a4d2e] text-[#1a4d2e] hover:bg-[#1a4d2e] hover:text-white font-bold px-6 py-3 rounded-lg transition-all"
|
|
>
|
|
Tableau de bord
|
|
</button>
|
|
)}
|
|
{user.role === "ADMIN" && (
|
|
<button
|
|
onClick={() => router.push(ROUTES.ADMIN_DASHBOARD)}
|
|
className="w-full border-2 border-[#1a4d2e] text-[#1a4d2e] hover:bg-[#1a4d2e] hover:text-white font-bold px-6 py-3 rounded-lg transition-all"
|
|
>
|
|
Administration
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|