- Replace email verification status with active/inactive status - Add user archiving (soft delete) instead of hard delete - Add search by name/email in user management - Add status filter (active/inactive) in user management - Simplify actions to show only "Détails" button - Add Google Maps with clickable marker on contact page - Update button labels from "Désactiver" to "Supprimer" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
224 lines
8.4 KiB
TypeScript
224 lines
8.4 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 AdminProfilePage() {
|
|
const { user, isAuthenticated, 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="danger">Administrateur</Badge>
|
|
</div>
|
|
</div>
|
|
<div className="pt-4">
|
|
<button
|
|
onClick={() => setIsEditing(true)}
|
|
className="bg-blue-600 hover:bg-blue-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-blue-600 hover:bg-blue-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">
|
|
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.ADMIN_DASHBOARD)}
|
|
className="w-full bg-blue-600 hover:bg-blue-700 text-white font-bold px-6 py-3 rounded-lg transition-all shadow-md"
|
|
>
|
|
Dashboard
|
|
</button>
|
|
<button
|
|
onClick={() => router.push("/admin/utilisateurs")}
|
|
className="w-full border-2 border-blue-600 text-blue-600 hover:bg-blue-600 hover:text-white font-bold px-6 py-3 rounded-lg transition-all"
|
|
>
|
|
Gestion Utilisateurs
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|