Adds optional cardRender prop to <DataTable> that switches the layout
to a vertical card list below lg: while keeping the same TanStack
table instance powering both views (pagination, sort, selection).
New shared shell:
- <ListCard> rounded card with optional left status accent bar,
whole-card link to detail page, top-right actions
slot, and tactile hover/active states.
- <ListCardAvatar> 40px brand-tinted circle (initials or domain icon).
- <ListCardMeta> inline icon + muted text segment.
- deriveInitials() shared helper that ignores numeric tokens (so
"Recovery Test 1777" -> "RT", not "R1").
Clients and interests pages now render mobile cards via cardRender
using this shell; desktop view (lg+) is unchanged. Interests cards
encode pipeline stage as a left-edge accent strip whose saturation
deepens with pipeline progression (open -> completed). Berths display
with an Anchor icon; null-berth interests fall back to a Compass +
"General interest" italic label. Hot leads get a discreet "Hot" pill.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
162 lines
5.1 KiB
TypeScript
162 lines
5.1 KiB
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import { useParams } from 'next/navigation';
|
|
import { Plus } from 'lucide-react';
|
|
import { useMutation, useQueryClient } from '@tanstack/react-query';
|
|
|
|
import { Button } from '@/components/ui/button';
|
|
import { DataTable } from '@/components/shared/data-table';
|
|
import { FilterBar } from '@/components/shared/filter-bar';
|
|
import { SavedViewsDropdown } from '@/components/shared/saved-views-dropdown';
|
|
import { PageHeader } from '@/components/shared/page-header';
|
|
import { EmptyState } from '@/components/shared/empty-state';
|
|
import { TableSkeleton } from '@/components/shared/loading-skeleton';
|
|
import { ArchiveConfirmDialog } from '@/components/shared/archive-confirm-dialog';
|
|
import { PermissionGate } from '@/components/shared/permission-gate';
|
|
import { ClientForm } from '@/components/clients/client-form';
|
|
import { clientFilterDefinitions } from '@/components/clients/client-filters';
|
|
import { ClientCard } from '@/components/clients/client-card';
|
|
import { getClientColumns, type ClientRow } from '@/components/clients/client-columns';
|
|
import { usePaginatedQuery } from '@/hooks/use-paginated-query';
|
|
import { useRealtimeInvalidation } from '@/hooks/use-realtime-invalidation';
|
|
import { apiFetch } from '@/lib/api/client';
|
|
|
|
export function ClientList() {
|
|
const params = useParams<{ portSlug: string }>();
|
|
const portSlug = params?.portSlug ?? '';
|
|
const queryClient = useQueryClient();
|
|
|
|
const [createOpen, setCreateOpen] = useState(false);
|
|
const [editClient, setEditClient] = useState<ClientRow | null>(null);
|
|
const [archiveClient, setArchiveClient] = useState<ClientRow | null>(null);
|
|
|
|
const {
|
|
data,
|
|
pagination,
|
|
isLoading,
|
|
isFetching,
|
|
sort,
|
|
setSort,
|
|
setPage,
|
|
setPageSize,
|
|
filters,
|
|
setFilter,
|
|
clearFilters,
|
|
} = usePaginatedQuery<ClientRow>({
|
|
queryKey: ['clients'],
|
|
endpoint: '/api/v1/clients',
|
|
filterDefinitions: clientFilterDefinitions,
|
|
});
|
|
|
|
useRealtimeInvalidation({
|
|
'client:created': [['clients']],
|
|
'client:updated': [['clients']],
|
|
'client:archived': [['clients']],
|
|
'client:restored': [['clients']],
|
|
});
|
|
|
|
const archiveMutation = useMutation({
|
|
mutationFn: (id: string) => apiFetch(`/api/v1/clients/${id}`, { method: 'DELETE' }),
|
|
onSuccess: () => {
|
|
queryClient.invalidateQueries({ queryKey: ['clients'] });
|
|
setArchiveClient(null);
|
|
},
|
|
});
|
|
|
|
const columns = getClientColumns({
|
|
portSlug,
|
|
onEdit: (client) => setEditClient(client),
|
|
onArchive: (client) => setArchiveClient(client),
|
|
});
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
<PageHeader
|
|
title="Clients"
|
|
description="Manage your client records"
|
|
variant="gradient"
|
|
actions={
|
|
<PermissionGate resource="clients" action="create">
|
|
<Button size="sm" onClick={() => setCreateOpen(true)}>
|
|
<Plus className="mr-1.5 h-4 w-4" />
|
|
New Client
|
|
</Button>
|
|
</PermissionGate>
|
|
}
|
|
/>
|
|
|
|
<div className="flex items-center gap-2">
|
|
<FilterBar
|
|
filters={clientFilterDefinitions}
|
|
values={filters}
|
|
onChange={setFilter}
|
|
onClear={clearFilters}
|
|
/>
|
|
<SavedViewsDropdown
|
|
entityType="clients"
|
|
currentFilters={filters}
|
|
currentSort={sort}
|
|
onApplyView={(savedFilters, _savedSort) => {
|
|
clearFilters();
|
|
Object.entries(savedFilters).forEach(([key, val]) => setFilter(key, val));
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
{isLoading ? (
|
|
<TableSkeleton />
|
|
) : (
|
|
<DataTable
|
|
columns={columns}
|
|
data={data}
|
|
pagination={pagination}
|
|
onPaginationChange={(p, ps) => {
|
|
setPage(p);
|
|
setPageSize(ps);
|
|
}}
|
|
sort={sort}
|
|
onSortChange={setSort}
|
|
isLoading={isFetching && !isLoading}
|
|
getRowId={(row) => row.id}
|
|
cardRender={(row) => (
|
|
<ClientCard
|
|
client={row.original}
|
|
portSlug={portSlug}
|
|
onEdit={setEditClient}
|
|
onArchive={setArchiveClient}
|
|
/>
|
|
)}
|
|
emptyState={
|
|
<EmptyState
|
|
title="No clients found"
|
|
description="Get started by adding your first client."
|
|
action={{ label: 'New Client', onClick: () => setCreateOpen(true) }}
|
|
/>
|
|
}
|
|
/>
|
|
)}
|
|
|
|
<ClientForm open={createOpen} onOpenChange={setCreateOpen} />
|
|
|
|
{editClient && (
|
|
<ClientForm
|
|
open={!!editClient}
|
|
onOpenChange={(open) => !open && setEditClient(null)}
|
|
client={editClient as unknown as NonNullable<Parameters<typeof ClientForm>[0]['client']>}
|
|
/>
|
|
)}
|
|
|
|
<ArchiveConfirmDialog
|
|
open={!!archiveClient}
|
|
onOpenChange={(open) => !open && setArchiveClient(null)}
|
|
entityName={archiveClient?.fullName ?? ''}
|
|
entityType="Client"
|
|
isArchived={false}
|
|
onConfirm={() => archiveClient && archiveMutation.mutate(archiveClient.id)}
|
|
isLoading={archiveMutation.isPending}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|