import { cache } from "react"; import { notFound } from "next/navigation"; import { getClientWithProjectsByToken, getProjectView, type ProjectView, type ClientView, type ClientProjectSummary, } from "@/lib/client-view"; import { ClientDashboard } from "@/components/client-dashboard"; import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; import type { Comment } from "@/db/schema"; export const revalidate = 0; const getCachedClientData = cache(getClientWithProjectsByToken); // Adapter: converts ProjectView + client info into ClientView shape for ClientDashboard reuse function projectViewToClientView( client: ClientProjectSummary["client"], view: ProjectView ): ClientView { return { client: { id: view.project.client_id, name: client.name, brand_name: client.brand_name, brief: "", accepted_total: view.project.accepted_total, }, phases: view.phases.map((phase) => ({ id: phase.id, title: phase.title, status: phase.status as "upcoming" | "active" | "done", sort_order: phase.sort_order, tasks: phase.tasks.map((task) => ({ id: task.id, title: task.title, description: task.description, status: task.status as "todo" | "in_progress" | "done", sort_order: task.sort_order, deliverables: task.deliverables.map((d) => ({ id: d.id, title: d.title, url: d.url, status: d.status as "pending" | "submitted" | "approved", // approved_at is immutable once set — CLAUDE.md constraint LOCKED approved_at: d.approved_at instanceof Date ? d.approved_at.toISOString() : null, })), })), progress_pct: phase.progress_pct, })), payments: view.payments.map((p) => ({ id: p.id, label: p.label, status: p.status as "da_saldare" | "inviata" | "saldato", })), documents: view.documents.map((d) => ({ id: d.id, label: d.label, url: d.url, })), notes: view.notes.map((n) => ({ id: n.id, body: n.body, created_at: n.created_at instanceof Date ? n.created_at.toISOString() : String(n.created_at), })), global_progress_pct: view.global_progress_pct, }; } export async function generateMetadata({ params, }: { params: Promise<{ token: string }>; }) { const { token } = await params; console.log("[generateMetadata] token:", token); const clientData = await getCachedClientData(token); if (!clientData) return { title: "Not Found" }; return { title: `${clientData.client.brand_name} — Stato Progetto | iamcavalli`, description: "Dashboard stato progetto", }; } export default async function ClientPage({ params, }: { params: Promise<{ token: string }>; }) { const { token } = await params; const { appendFileSync } = await import("fs"); appendFileSync("/tmp/clienthub-debug.log", `[${new Date().toISOString()}] PAGE token=${token}\n`); const clientData = await getCachedClientData(token); if (!clientData) notFound(); const { client, projects } = clientData; if (projects.length === 0) { return (

{client.name}

Nessun progetto disponibile al momento.

); } if (projects.length === 1) { // D-09: single project → direct view without selector const view = await getProjectView(projects[0].id); if (!view) notFound(); return ( ); } // D-10: 2+ projects → tabs with project names const projectViews = await Promise.all(projects.map((p) => getProjectView(p.id))); return (
iamcavalli

{client.brand_name}

{projects.map((p) => ( {p.name} ))} {projects.map((p, i) => { const view = projectViews[i]; return ( {view ? ( ) : (

Progetto non disponibile.

)}
); })}
); }