- Add dropdown menu with user avatar, name, and email in admin header - Add dropdown menu with user avatar, name, and email in employee header - Create admin profile page at /admin/profil - Create employee profile page at /employe/profil - Remove Profil link from admin sidebar (now in dropdown) - Fix header public display: hide for admin/employee on all pages - Use router.replace() instead of router.push() for login redirects to avoid history pollution - Simplify employe dashboard page: remove redundant auth checks handled by layout - Add click-outside-to-close functionality for dropdown menus 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
234 lines
8.7 KiB
TypeScript
234 lines
8.7 KiB
TypeScript
"use client";
|
|
import { useState } 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 { 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 EmployeProfilePage() {
|
|
const { user, refreshUser } = useAuth();
|
|
const router = useRouter();
|
|
const [isEditing, setIsEditing] = useState(false);
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
reset,
|
|
formState: { errors },
|
|
} = useForm<ProfileUpdateFormData>({
|
|
resolver: zodResolver(profileUpdateSchema),
|
|
defaultValues: {
|
|
firstName: user?.firstName || "",
|
|
lastName: user?.lastName || "",
|
|
phone: user?.phone || "",
|
|
},
|
|
});
|
|
|
|
if (!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);
|
|
};
|
|
|
|
return (
|
|
<div className="p-6">
|
|
<div className="max-w-4xl mx-auto">
|
|
<h1 className="text-3xl font-bold text-gray-900 mb-6">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 border border-gray-200">
|
|
<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-600">
|
|
Prénom
|
|
</label>
|
|
<p className="text-lg text-gray-900">{user.firstName}</p>
|
|
</div>
|
|
<div>
|
|
<label className="text-sm font-medium text-gray-600">
|
|
Nom
|
|
</label>
|
|
<p className="text-lg text-gray-900">{user.lastName}</p>
|
|
</div>
|
|
<div>
|
|
<label className="text-sm font-medium text-gray-600">
|
|
Email
|
|
</label>
|
|
<p className="text-lg text-gray-900">{user.email}</p>
|
|
</div>
|
|
<div>
|
|
<label className="text-sm font-medium text-gray-600">
|
|
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-600">
|
|
Rôle
|
|
</label>
|
|
<div className="mt-1">
|
|
<Badge variant="warning">Employé</Badge>
|
|
</div>
|
|
</div>
|
|
<div className="pt-4">
|
|
<button
|
|
onClick={() => setIsEditing(true)}
|
|
className="bg-green-600 hover:bg-green-700 text-white font-bold px-6 py-3 rounded-lg transition-all shadow-md"
|
|
>
|
|
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-green-600 hover:bg-green-700 disabled:bg-gray-400 text-white font-bold px-6 py-3 rounded-lg transition-all shadow-md"
|
|
>
|
|
{isSubmitting ? "Enregistrement..." : "Enregistrer"}
|
|
</button>
|
|
<button
|
|
type="button"
|
|
onClick={handleCancel}
|
|
disabled={isSubmitting}
|
|
className="border-2 border-gray-300 hover:bg-gray-100 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 border border-gray-200">
|
|
<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-600">
|
|
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-600">
|
|
Membre depuis
|
|
</label>
|
|
<p className="text-sm text-gray-900 mt-1">
|
|
{formatDate(user.createdAt)}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Quick Actions Card */}
|
|
<div className="bg-white rounded-xl shadow-md overflow-hidden border border-gray-200 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">
|
|
<button
|
|
onClick={() => router.push(ROUTES.EMPLOYEE_DASHBOARD)}
|
|
className="w-full bg-green-600 hover:bg-green-700 text-white font-bold px-6 py-3 rounded-lg transition-all shadow-md"
|
|
>
|
|
Dashboard
|
|
</button>
|
|
<button
|
|
onClick={() => router.push("/employe/verification")}
|
|
className="w-full border-2 border-green-600 text-green-600 hover:bg-green-600 hover:text-white font-bold px-6 py-3 rounded-lg transition-all"
|
|
>
|
|
Validation des gains
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|