"use client"; import { useEffect, useState } from "react"; import { useParams } from "next/navigation"; import { useSession } from "next-auth/react"; import { AtlasChat } from "@/components/AtlasChat"; import { OrchestratorChat } from "@/components/OrchestratorChat"; import { Loader2 } from "lucide-react"; interface Project { id: string; productName: string; stage?: "discovery" | "architecture" | "building" | "active"; } export default function ProjectOverviewPage() { const params = useParams(); const projectId = params.projectId as string; const { status: authStatus } = useSession(); const [project, setProject] = useState(null); const [loading, setLoading] = useState(true); useEffect(() => { if (authStatus !== "authenticated") { if (authStatus === "unauthenticated") setLoading(false); return; } fetch(`/api/projects/${projectId}`) .then((r) => r.json()) .then((d) => setProject(d.project)) .catch(() => {}) .finally(() => setLoading(false)); }, [authStatus, projectId]); if (loading) { return (
); } if (!project) { return (
Project not found.
); } return (
{(!project.stage || project.stage === "discovery") ? ( ) : ( )}
); }