Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | 1x 1x 1x 1x 1x 1x 1x 1x | 'use client';
import { useState } from 'react';
import { useSessionExpiry } from '@/hooks/useSessionExpiry';
import { useClientsManagement } from '@/hooks/useClientsManagement';
import Notification from '@/components/notification';
import ClientsHeader from './ClientsHeader';
import ClientsSearchAndFilters from './ClientsSearchAndFilters';
import ClientsTable from './ClientsTable';
/**
* Composant ClientsManagement - Gestion complète des clients
*
* Fonctionnalités :
* - Affichage de la liste des clients avec recherche
* - Interface responsive avec design moderne
*/
export default function ClientsManagement() {
useSessionExpiry();
const {
clients,
loading,
error,
searchTerm,
statusFilter,
loadClients,
handleSearch,
handleStatusFilter,
toggleClientActive
} = useClientsManagement();
// États pour l'UI
const [notification, setNotification] = useState<{
message: string;
type: 'success' | 'error' | 'info';
} | null>(null);
return (
<div className="min-h-screen bg-base-200">
<ClientsHeader />
<main className="max-w-7xl mx-auto py-8 px-4 sm:px-6 lg:px-8 space-y-6">
<ClientsSearchAndFilters
searchTerm={searchTerm}
onSearchChange={handleSearch}
statusFilter={statusFilter}
onStatusFilterChange={handleStatusFilter}
/>
<ClientsTable
clients={clients}
loading={loading}
searchTerm={searchTerm}
onRefresh={loadClients}
error={error}
handleToggleActive={toggleClientActive}
/>
</main>
{notification && (
<Notification
message={notification.message}
type={notification.type}
onClose={() => setNotification(null)}
/>
)}
</div>
);
}
|