Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
'use client';
|
|
|
|
|
|
|
|
|
|
import { useSearchParams, useRouter, usePathname } from 'next/navigation';
|
|
|
|
|
import { Loader2 } from 'lucide-react';
|
|
|
|
|
|
|
|
|
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs';
|
|
|
|
|
import { Badge } from '@/components/ui/badge';
|
|
|
|
|
|
|
|
|
|
export interface DetailTab {
|
|
|
|
|
id: string;
|
|
|
|
|
label: string;
|
|
|
|
|
content: React.ReactNode;
|
|
|
|
|
badge?: string | number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface DetailLayoutProps {
|
|
|
|
|
header: React.ReactNode;
|
|
|
|
|
tabs: DetailTab[];
|
|
|
|
|
defaultTab?: string;
|
|
|
|
|
isLoading?: boolean;
|
|
|
|
|
actions?: React.ReactNode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function DetailLayout({
|
|
|
|
|
header,
|
|
|
|
|
tabs,
|
|
|
|
|
defaultTab,
|
|
|
|
|
isLoading,
|
|
|
|
|
actions,
|
|
|
|
|
}: DetailLayoutProps) {
|
|
|
|
|
const searchParams = useSearchParams();
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
const pathname = usePathname();
|
|
|
|
|
|
|
|
|
|
const activeTab = searchParams.get('tab') ?? defaultTab ?? tabs[0]?.id;
|
|
|
|
|
|
|
|
|
|
function handleTabChange(tabId: string) {
|
|
|
|
|
const params = new URLSearchParams(searchParams.toString());
|
|
|
|
|
params.set('tab', tabId);
|
2026-03-26 12:06:18 +01:00
|
|
|
router.replace(`${pathname}?${params.toString()}`, { scroll: false });
|
Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isLoading) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex items-center justify-center py-20">
|
|
|
|
|
<Loader2 className="h-8 w-8 animate-spin text-muted-foreground" />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="space-y-6">
|
|
|
|
|
<div className="flex items-start justify-between gap-4">
|
|
|
|
|
<div className="min-w-0 flex-1">{header}</div>
|
|
|
|
|
{actions && <div className="flex items-center gap-2 shrink-0">{actions}</div>}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<Tabs value={activeTab} onValueChange={handleTabChange}>
|
|
|
|
|
<TabsList>
|
|
|
|
|
{tabs.map((tab) => (
|
|
|
|
|
<TabsTrigger key={tab.id} value={tab.id} className="gap-1.5">
|
|
|
|
|
{tab.label}
|
|
|
|
|
{tab.badge !== undefined && tab.badge !== null && (
|
|
|
|
|
<Badge variant="secondary" className="px-1.5 py-0 text-xs">
|
|
|
|
|
{tab.badge}
|
|
|
|
|
</Badge>
|
|
|
|
|
)}
|
|
|
|
|
</TabsTrigger>
|
|
|
|
|
))}
|
|
|
|
|
</TabsList>
|
|
|
|
|
{tabs.map((tab) => (
|
|
|
|
|
<TabsContent key={tab.id} value={tab.id} className="mt-4">
|
|
|
|
|
{tab.content}
|
|
|
|
|
</TabsContent>
|
|
|
|
|
))}
|
|
|
|
|
</Tabs>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|