"use client"; import { useState } from "react"; import { useRouter } from "next/navigation"; import { ChevronsUpDown, LogOut } from "lucide-react"; import { useAuth } from "@abe-kap/appshell-sdk/react"; import { Icon } from "./ui"; import { user } from "./account-data"; function initialsOf(name: string): string { return name.split(/\s+/).filter(Boolean).slice(0, 2).map((p) => p[0]).join("").toUpperCase() || "?"; } export type NavItem = { key: string; label: string; icon: string; subtitle?: string }; export type NavGroup = { title: string; items: NavItem[] }; // Full workspace navigation. The Account group items (profile/support/rules) // render real views; the rest are workspace modules shown via a placeholder. export const NAV_GROUPS: NavGroup[] = [ { title: "Workspace", items: [ { key: "dashboard", label: "Dashboard", icon: "dashboard", subtitle: "Welcome back — your territory at a glance" }, { key: "owners", label: "Owners Box", icon: "owners" }, { key: "projects", label: "Projects", icon: "projects" }, { key: "leads", label: "Leads", icon: "leads" }, { key: "verify", label: "Lead Verification", icon: "verify" }, { key: "pipeline", label: "Pipeline", icon: "pipeline" }, ], }, { title: "Workspace", items: [ { key: "dispatch", label: "LynkDispatch", icon: "dispatch" }, { key: "storm", label: "Storm Intel", icon: "storm" }, { key: "territory", label: "Territory Map", icon: "territory" }, { key: "procanvas", label: "ProCanvas", icon: "procanvas" }, { key: "estimates", label: "Estimates", icon: "estimates" }, ], }, { title: "Team", items: [ { key: "team", label: "Team Management", icon: "team", subtitle: "Your crew, roles and permissions" }, { key: "schedule", label: "Team Schedule", icon: "schedule" }, { key: "leaderboard", label: "Leaderboard", icon: "leaderboard" }, { key: "subtasks", label: "Subcontractor Tasks", icon: "subtasks" }, { key: "people", label: "People", icon: "people" }, ], }, { title: "Workspace AI", items: [ { key: "settings", label: "Org Settings", icon: "settings" }, { key: "ai", label: "AI Assistant", icon: "ai", subtitle: "Lynk AI — your roofing copilot" }, ], }, { title: "Profile & Documents", items: [ { key: "profile", label: "Profile", icon: "user", subtitle: "Your account, identity and preferences" }, { key: "support", label: "Support Center", icon: "chat", subtitle: "Get help, track requests and find answers" }, { key: "rules", label: "Rules Checklist", icon: "check-circle", subtitle: "The 13 rules behind Profile & Support" }, ], }, ]; export const NAV_ITEMS: NavItem[] = NAV_GROUPS.flatMap((g) => g.items); export function Sidebar({ active, onSelect }: { active: string; onSelect: (k: string) => void }) { const router = useRouter(); const { user: me, logout, context } = useAuth(); const [menuOpen, setMenuOpen] = useState(false); // Real signed-in identity from the App Context Envelope; fall back to the static // demo user only when the Shell isn't wired. const roleLabel = context?.scope?.role ? context.scope.role.charAt(0).toUpperCase() + context.scope.role.slice(1) : ""; const name = me?.displayName || user.name; const initials = me ? initialsOf(me.displayName) : user.initials; const secondary = me?.email || roleLabel || user.role; async function signOut() { setMenuOpen(false); try { await logout(); } catch { /* ignore — proceed to portal either way */ } router.replace("/portal/login"); } return ( ); }