Implemented the following: - `DashboardPage`: displays an overview of stats, recent projects, and tabs for future analytics/reports. - `ProjectsPage` and `PersonsPage`: include searchable tables, actions, and mobile-friendly card views. - Integrated reusable components like `AuthLoading`, `DropdownMenu`, `Table`, and `Card`.
186 lines
5.7 KiB
TypeScript
186 lines
5.7 KiB
TypeScript
"use client";
|
|
|
|
import { useState, useEffect } from "react";
|
|
import { useParams, useRouter } from "next/navigation";
|
|
import Link from "next/link";
|
|
import { useForm } from "react-hook-form";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { Textarea } from "@/components/ui/textarea";
|
|
import {
|
|
ArrowLeft,
|
|
Loader2,
|
|
Save
|
|
} from "lucide-react";
|
|
import { toast } from "sonner";
|
|
|
|
// Type definitions
|
|
interface ProjectFormData {
|
|
name: string;
|
|
description: string;
|
|
}
|
|
|
|
// Mock project data
|
|
const getProjectData = (id: string) => {
|
|
return {
|
|
id: parseInt(id),
|
|
name: "Projet Formation Dev Web",
|
|
description: "Création de groupes pour la formation développement web",
|
|
date: "2025-05-15",
|
|
};
|
|
};
|
|
|
|
export default function EditProjectPage() {
|
|
const params = useParams();
|
|
const router = useRouter();
|
|
const projectId = params.id as string;
|
|
|
|
const [project, setProject] = useState<any>(null);
|
|
const [loading, setLoading] = useState(true);
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
const { register, handleSubmit, formState: { errors }, reset } = useForm<ProjectFormData>();
|
|
|
|
useEffect(() => {
|
|
// Simulate API call to fetch project data
|
|
const fetchProject = async () => {
|
|
setLoading(true);
|
|
try {
|
|
// In a real app, this would be an API call
|
|
await new Promise(resolve => setTimeout(resolve, 1000));
|
|
const data = getProjectData(projectId);
|
|
setProject(data);
|
|
|
|
// Reset form with project data
|
|
reset({
|
|
name: data.name,
|
|
description: data.description
|
|
});
|
|
} catch (error) {
|
|
console.error("Error fetching project:", error);
|
|
toast.error("Erreur lors du chargement du projet");
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
fetchProject();
|
|
}, [projectId, reset]);
|
|
|
|
const onSubmit = async (data: ProjectFormData) => {
|
|
setIsSubmitting(true);
|
|
try {
|
|
// In a real app, this would be an API call to update the project
|
|
await new Promise(resolve => setTimeout(resolve, 1000));
|
|
|
|
toast.success("Projet mis à jour avec succès");
|
|
router.push(`/projects/${projectId}`);
|
|
} catch (error) {
|
|
console.error("Error updating project:", error);
|
|
toast.error("Erreur lors de la mise à jour du projet");
|
|
} finally {
|
|
setIsSubmitting(false);
|
|
}
|
|
};
|
|
|
|
if (loading) {
|
|
return (
|
|
<div className="flex h-[50vh] items-center justify-center">
|
|
<Loader2 className="h-8 w-8 animate-spin text-primary" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (!project) {
|
|
return (
|
|
<div className="flex h-[50vh] flex-col items-center justify-center">
|
|
<p className="text-lg font-medium">Projet non trouvé</p>
|
|
<Button asChild className="mt-4">
|
|
<Link href="/projects">Retour aux projets</Link>
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="flex flex-col gap-6">
|
|
<div className="flex items-center gap-2">
|
|
<Button variant="outline" size="icon" asChild>
|
|
<Link href={`/projects/${projectId}`}>
|
|
<ArrowLeft className="h-4 w-4" />
|
|
</Link>
|
|
</Button>
|
|
<h1 className="text-3xl font-bold">Modifier le projet</h1>
|
|
</div>
|
|
|
|
<Card>
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
<CardHeader>
|
|
<CardTitle>Informations du projet</CardTitle>
|
|
<CardDescription>
|
|
Modifiez les informations de votre projet
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="name">Nom du projet</Label>
|
|
<Input
|
|
id="name"
|
|
placeholder="Ex: Formation Développement Web"
|
|
{...register("name", {
|
|
required: "Le nom du projet est requis",
|
|
minLength: {
|
|
value: 3,
|
|
message: "Le nom doit contenir au moins 3 caractères"
|
|
}
|
|
})}
|
|
/>
|
|
{errors.name && (
|
|
<p className="text-sm text-destructive">{errors.name.message}</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="description">Description</Label>
|
|
<Textarea
|
|
id="description"
|
|
placeholder="Décrivez votre projet..."
|
|
rows={4}
|
|
{...register("description", {
|
|
required: "La description du projet est requise",
|
|
minLength: {
|
|
value: 10,
|
|
message: "La description doit contenir au moins 10 caractères"
|
|
}
|
|
})}
|
|
/>
|
|
{errors.description && (
|
|
<p className="text-sm text-destructive">{errors.description.message}</p>
|
|
)}
|
|
</div>
|
|
</CardContent>
|
|
<CardFooter className="flex justify-between">
|
|
<Button variant="outline" asChild>
|
|
<Link href={`/projects/${projectId}`}>Annuler</Link>
|
|
</Button>
|
|
<Button type="submit" disabled={isSubmitting}>
|
|
{isSubmitting ? (
|
|
<>
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
Enregistrement...
|
|
</>
|
|
) : (
|
|
<>
|
|
<Save className="mr-2 h-4 w-4" />
|
|
Enregistrer les modifications
|
|
</>
|
|
)}
|
|
</Button>
|
|
</CardFooter>
|
|
</form>
|
|
</Card>
|
|
</div>
|
|
);
|
|
} |