Adds a reusable useTableControls hook and TableControls/SortableTh components, then wires them into all six admin table pages (users, vendors, vessels, sites, accounts, products). Each page now supports a global search bar, clickable sortable column headers with ↑/↓/⇅ indicators, and role/status filter chips — all purely client-side with no URL params or server round-trips. Server pages continue to fetch the full list and pass it as props to a new *-table.tsx Client Component. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
107 lines
4.6 KiB
TypeScript
107 lines
4.6 KiB
TypeScript
"use client";
|
|
|
|
import { useTableControls } from "@/components/ui/use-table-controls";
|
|
import { TableControls, SortableTh } from "@/components/ui/table-controls";
|
|
import { AddVesselButton, EditVesselButton } from "./vessel-form";
|
|
import { ConfirmDeleteButton } from "@/components/ui/confirm-delete-button";
|
|
import { deleteVessel } from "./actions";
|
|
|
|
export type VesselRow = {
|
|
id: string;
|
|
code: string;
|
|
name: string;
|
|
siteName: string | null;
|
|
isActive: boolean;
|
|
};
|
|
|
|
const CHIPS = ["Active", "Inactive"];
|
|
|
|
export function VesselsTable({ vessels }: { vessels: VesselRow[] }) {
|
|
const { search, setSearch, sortKey, sortDir, toggleSort, activeFilters, toggleFilter, filtered } =
|
|
useTableControls<VesselRow>({
|
|
rows: vessels,
|
|
defaultSortKey: "code",
|
|
searchText: (v) =>
|
|
[v.code, v.name, v.siteName ?? "", v.isActive ? "active" : "inactive"].join(" "),
|
|
chipMatch: (v, chip) => {
|
|
if (chip.toLowerCase() === "active") return v.isActive;
|
|
if (chip.toLowerCase() === "inactive") return !v.isActive;
|
|
return false;
|
|
},
|
|
sortValue: (v, key) => {
|
|
if (key === "isActive") return v.isActive ? "Active" : "Inactive";
|
|
if (key === "siteName") return v.siteName ?? "";
|
|
const val = v[key as keyof VesselRow];
|
|
if (val === null || val === undefined) return "";
|
|
return typeof val === "string" || typeof val === "number" || typeof val === "boolean" ? val : String(val);
|
|
},
|
|
});
|
|
|
|
return (
|
|
<div>
|
|
<div className="mb-6 flex items-center justify-between">
|
|
<h1 className="text-2xl font-semibold text-neutral-900">Cost Centre Management</h1>
|
|
<AddVesselButton />
|
|
</div>
|
|
|
|
<TableControls
|
|
search={search}
|
|
onSearch={setSearch}
|
|
searchPlaceholder="Search cost centres…"
|
|
chips={CHIPS}
|
|
activeFilters={activeFilters}
|
|
onToggleFilter={toggleFilter}
|
|
/>
|
|
|
|
<div className="rounded-lg border border-neutral-200 bg-white overflow-hidden">
|
|
<table className="w-full text-sm">
|
|
<thead className="bg-neutral-50 border-b border-neutral-200">
|
|
<tr>
|
|
<SortableTh sortKey="code" activeSortKey={sortKey as string | null} sortDir={sortDir} onSort={(k) => toggleSort(k as keyof VesselRow)}>Code</SortableTh>
|
|
<SortableTh sortKey="name" activeSortKey={sortKey as string | null} sortDir={sortDir} onSort={(k) => toggleSort(k as keyof VesselRow)}>Name</SortableTh>
|
|
<SortableTh sortKey="siteName" activeSortKey={sortKey as string | null} sortDir={sortDir} onSort={(k) => toggleSort(k as keyof VesselRow)}>Site</SortableTh>
|
|
<SortableTh sortKey="isActive" activeSortKey={sortKey as string | null} sortDir={sortDir} onSort={(k) => toggleSort(k as keyof VesselRow)}>Status</SortableTh>
|
|
<th className="px-4 py-3"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody className="divide-y divide-neutral-100">
|
|
{filtered.length === 0 && (
|
|
<tr>
|
|
<td colSpan={5} className="px-4 py-8 text-center text-neutral-400">
|
|
No cost centres match your search.
|
|
</td>
|
|
</tr>
|
|
)}
|
|
{filtered.map((vessel) => (
|
|
<tr key={vessel.id} className="hover:bg-neutral-50">
|
|
<td className="px-4 py-3 font-mono text-xs text-neutral-600">{vessel.code}</td>
|
|
<td className="px-4 py-3 font-medium text-neutral-900">{vessel.name}</td>
|
|
<td className="px-4 py-3 text-neutral-500">
|
|
{vessel.siteName ?? <span className="italic text-neutral-400">—</span>}
|
|
</td>
|
|
<td className="px-4 py-3">
|
|
<span className={`rounded-full px-2.5 py-0.5 text-xs font-medium ${
|
|
vessel.isActive ? "bg-success-100 text-success-700" : "bg-neutral-100 text-neutral-500"
|
|
}`}>
|
|
{vessel.isActive ? "Active" : "Inactive"}
|
|
</span>
|
|
</td>
|
|
<td className="px-4 py-3">
|
|
<span className="flex items-center gap-3">
|
|
<EditVesselButton vessel={{
|
|
id: vessel.id,
|
|
name: vessel.name,
|
|
code: vessel.code,
|
|
isActive: vessel.isActive,
|
|
}} />
|
|
<ConfirmDeleteButton onDelete={deleteVessel.bind(null, vessel.id)} label={vessel.name} />
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
))}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|