generated from vincent/template-projet
Backend (FastAPI + SQLAlchemy): - Modèles : User, Client, Audit, Cible, Vulnérabilité, Action - Auth JWT (register/login/me) avec bcrypt - Routes CRUD complets : clients, audits, cibles, vulnérabilités, actions - Schémas Pydantic v2, migrations Alembic configurées - Rate limiting (slowapi), CORS, structure scanners/reports pour phase 2 Frontend (Next.js 14 App Router): - shadcn/ui : Button, Input, Card, Badge, Label - Page login avec gestion token JWT - Dashboard avec stats temps réel - Pages Clients (grille) et Audits (liste) avec recherche - Layout avec sidebar navigation + protection auth - Dockerfiles multi-stage (backend + frontend standalone) Infrastructure: - docker-compose.yml : postgres, redis, backend, frontend - docker-compose.prod.yml avec labels Traefik - .env.example complet - .gitignore mis à jour Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
108 lines
4.2 KiB
TypeScript
108 lines
4.2 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useState } from "react";
|
|
import { Plus, Search, Building2, Mail, Phone } from "lucide-react";
|
|
import { Header } from "@/components/layout/header";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Card, CardContent } from "@/components/ui/card";
|
|
import { clientsApi, type Client } from "@/lib/api";
|
|
import { getToken } from "@/lib/auth";
|
|
import Link from "next/link";
|
|
|
|
export default function ClientsPage() {
|
|
const [clients, setClients] = useState<Client[]>([]);
|
|
const [search, setSearch] = useState("");
|
|
const [loading, setLoading] = useState(true);
|
|
|
|
useEffect(() => {
|
|
const token = getToken();
|
|
if (!token) return;
|
|
clientsApi.list(token).then(setClients).finally(() => setLoading(false));
|
|
}, []);
|
|
|
|
const filtered = clients.filter((c) =>
|
|
c.nom.toLowerCase().includes(search.toLowerCase()) ||
|
|
c.contact?.toLowerCase().includes(search.toLowerCase()) ||
|
|
c.email?.toLowerCase().includes(search.toLowerCase())
|
|
);
|
|
|
|
return (
|
|
<div className="flex flex-col h-full">
|
|
<Header title="Clients" />
|
|
<div className="flex-1 p-6 space-y-4">
|
|
{/* Toolbar */}
|
|
<div className="flex items-center gap-3">
|
|
<div className="relative flex-1 max-w-sm">
|
|
<Search className="absolute left-3 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground" />
|
|
<Input
|
|
placeholder="Rechercher un client..."
|
|
className="pl-9"
|
|
value={search}
|
|
onChange={(e) => setSearch(e.target.value)}
|
|
/>
|
|
</div>
|
|
<Button asChild>
|
|
<Link href="/clients/nouveau">
|
|
<Plus className="h-4 w-4 mr-2" />
|
|
Nouveau client
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
|
|
{/* Client list */}
|
|
{loading ? (
|
|
<p className="text-sm text-muted-foreground">Chargement...</p>
|
|
) : filtered.length === 0 ? (
|
|
<div className="text-center py-16 text-muted-foreground">
|
|
<Building2 className="h-12 w-12 mx-auto mb-3 opacity-30" />
|
|
<p className="font-medium">Aucun client trouvé</p>
|
|
<p className="text-sm">Créez votre premier client pour commencer.</p>
|
|
</div>
|
|
) : (
|
|
<div className="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-4">
|
|
{filtered.map((client) => (
|
|
<Link key={client.id} href={`/clients/${client.id}`}>
|
|
<Card className="hover:shadow-md transition-shadow cursor-pointer h-full">
|
|
<CardContent className="p-5 space-y-3">
|
|
<div className="flex items-start justify-between">
|
|
<div className="flex items-center gap-2">
|
|
<div className="rounded-full bg-primary/10 p-2">
|
|
<Building2 className="h-4 w-4 text-primary" />
|
|
</div>
|
|
<h3 className="font-semibold">{client.nom}</h3>
|
|
</div>
|
|
</div>
|
|
<div className="space-y-1 text-sm text-muted-foreground">
|
|
{client.contact && (
|
|
<p className="flex items-center gap-1">
|
|
<span className="font-medium text-foreground">{client.contact}</span>
|
|
</p>
|
|
)}
|
|
{client.email && (
|
|
<p className="flex items-center gap-1.5">
|
|
<Mail className="h-3.5 w-3.5" />
|
|
{client.email}
|
|
</p>
|
|
)}
|
|
{client.telephone && (
|
|
<p className="flex items-center gap-1.5">
|
|
<Phone className="h-3.5 w-3.5" />
|
|
{client.telephone}
|
|
</p>
|
|
)}
|
|
</div>
|
|
<p className="text-xs text-muted-foreground border-t pt-2">
|
|
Créé le {new Date(client.createdAt).toLocaleDateString("fr-FR")}
|
|
</p>
|
|
</CardContent>
|
|
</Card>
|
|
</Link>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|