Files
handler/frontend/components/Shell.tsx
T
Claude 722a2f344c Frontend: email sign-in, first-run setup, reset links, Users admin page
- AuthGate replaces the raw token prompt: first-run setup form (creates
  the admin) when no accounts exist, email/password sign-in with a
  forgot-password flow, and a collapsible raw-API-token fallback for
  legacy/script setups.
- /reset is a public page where invite and password-reset links land;
  success stores the fresh session and enters the dashboard.
- Users section (admin-only nav): invite by email (link always shown,
  emailed when SMTP is configured), admin/disable toggles, reset links,
  and delete with the shared-resources handoff spelled out.
- Sidebar shows who is signed in; sign-out revokes the session
  server-side.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_019ws7xj5Ej623hh4GXQCYYR
2026-08-12 19:37:08 +00:00

123 lines
4.5 KiB
TypeScript

/* The Control Center shell: a left nav (Runs / Repositories / Agents / Approvals / Git
* Servers / Activity / Shared / Claude) and the active route's page on the right,
* matching the design's hub layout. Each nav item is a real route, so pages are modular
* and independently loadable; this shell lives in the root layout and persists across
* navigation, keeping the store, polling loop, and auth alive between pages. Command
* feedback and load errors surface as banners at the top of main. */
"use client";
import Link from "next/link";
import { usePathname } from "next/navigation";
import { useEffect } from "react";
import { useDashboard } from "@/components/store";
import { NAV_ROUTES, sectionFromPath } from "@/lib/nav";
import type { Section } from "@/components/store";
type Store = ReturnType<typeof useDashboard>;
/* Per-section nav badge: the count on the right and whether it should draw the eye. Keyed
* by section so the route table in lib/nav stays free of store-shaped logic. */
const BADGES: Partial<Record<Section, { count: (s: Store) => number; accent?: (s: Store) => boolean }>> = {
runs: {
count: (s) => s.agents.length,
accent: (s) => s.agents.some((a) => a.status === "paused_for_input"),
},
repositories: { count: (s) => s.projects.length },
agents: { count: (s) => s.agents.length },
schedules: { count: (s) => s.schedules.length },
approvals: { count: (s) => s.approvals.length },
servers: { count: (s) => s.hosts.length },
activity: { count: (s) => s.commands.length },
shared: { count: (s) => s.shared.context.length },
claude: {
// Everything managed on the page: skills + connectors + plugins.
count: (s) => s.claudeSkills.length + s.claudeConnectors.length + s.claudePlugins.length,
// Draw the eye to it until Claude is logged in on the host this session.
accent: (s) => s.claudeLogin.status !== "done",
},
users: { count: (s) => s.users.length },
};
export function Shell({ onSignOut, children }: { onSignOut: () => void; children: React.ReactNode }) {
const s = useDashboard();
const pathname = usePathname();
const active = sectionFromPath(pathname);
// Tell the store which section is on screen so its polling loop fetches the right data.
const { setSection } = s;
useEffect(() => {
setSection(active);
}, [active, setSection]);
return (
<div className="app">
<aside className="sidebar">
<div className="brand">
<span className="logo" />
Claude Monitor
</div>
{NAV_ROUTES.filter((n) => n.key !== "users" || s.me?.is_admin).map((n) => {
const badge = BADGES[n.key];
const c = badge?.count(s) ?? 0;
const isAccent = badge?.accent?.(s) ?? false;
return (
<Link
key={n.key}
href={n.href}
className={`nav-item${active === n.key ? " active" : ""}`}
>
<span>{n.label}</span>
<span className="count" style={isAccent ? { color: "var(--lw-warning-fg)" } : undefined}>
{c || ""}
</span>
</Link>
);
})}
<div className="sidebar-spacer" />
<div className="sidebar-foot">
{s.me && (
<div
className="nav-item"
style={{ cursor: "default", opacity: 0.8 }}
title={s.me.kind === "token" ? "Authenticated with an API token" : "Signed in"}
>
<span
style={{
overflow: "hidden",
textOverflow: "ellipsis",
whiteSpace: "nowrap",
fontSize: "var(--text-xs)",
}}
>
{s.me.kind === "token" ? "API token" : s.me.email}
{s.me.is_admin ? " · admin" : ""}
</span>
</div>
)}
<button className="nav-item" onClick={s.refresh} title="Refresh now">
<span>Refresh</span>
<span className="count"></span>
</button>
<button className="nav-item" onClick={onSignOut} title="Sign out">
<span>Sign out</span>
</button>
</div>
</aside>
<main className="main">
{s.cmd.text && (
<p className={`banner ${s.cmd.error ? "err" : "ok"}`} style={{ marginTop: 16 }}>
{s.cmd.text}
</p>
)}
{s.lastError && (
<p className="banner err" style={{ marginTop: 12 }}>
{s.lastError}
</p>
)}
{children}
</main>
</div>
);
}