Files
pn-new-crm/src/components/shared/detail-layout.tsx
Matt Ciaccio 2d1b50745a style(mobile): responsive tabs + table overflow + hub flex-wrap (Phase A)
Adds <ResponsiveTabs> primitive that swaps the TabsList for a native Select on
phone-sized viewports (<640px). DetailLayout now routes its tab strip through it,
so every tabbed detail page gets the collapse for free. DataTable wraps the
Table in overflow-x-auto so wide column sets scroll horizontally instead of
breaking the layout under 768px. Documents-hub row swaps the fixed
grid-cols-[auto_1fr_auto_auto_auto_auto] for flex-wrap below sm: so signers /
status / dates stack instead of clipping.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-28 12:10:21 +02:00

51 lines
1.5 KiB
TypeScript

'use client';
import { useSearchParams, useRouter, usePathname } from 'next/navigation';
import { Loader2 } from 'lucide-react';
import { ResponsiveTabs, type ResponsiveTab } from '@/components/shared/responsive-tabs';
export type DetailTab = ResponsiveTab;
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);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
router.replace(`${pathname}?${params.toString()}` as any, { scroll: false });
}
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 flex-wrap">
<div className="min-w-0 flex-1">{header}</div>
{actions && <div className="flex items-center gap-2 shrink-0">{actions}</div>}
</div>
<ResponsiveTabs tabs={tabs} value={activeTab} onValueChange={handleTabChange} />
</div>
);
}