7357070fb9
Deletes desktop/ (Electron wrapper), deployments/ (Helm/Kustomize/ Terraform/CI for cloud deploy), and monitoring/ (Prometheus + Grafana stack) along with DESKTOP.md, DEPLOYMENT.md, docker-compose.full.yml, their npm scripts, and every dangling reference across README, ARCHITECTURE, INSTALL, SETUP, docs/, and the repeated per-file MODULE_GUIDE "Observability" boilerplate comment. The GET /api/metrics endpoint itself is untouched — it's the dashboard's own route, not part of the removed monitoring stack.
121 lines
5.0 KiB
TypeScript
121 lines
5.0 KiB
TypeScript
/**
|
|
* @file App.tsx
|
|
* @description Top-level React tree for the Claude Code Agent Monitor dashboard.
|
|
* Wires together routing, real-time WebSocket ingestion, browser notifications,
|
|
* and the splash screen shown on cold load.
|
|
*
|
|
* ## Data flow
|
|
* 1. {@link useWebSocket} connects to the server's `/ws` endpoint.
|
|
* 2. Each inbound {@link WSMessage} is published on the in-memory
|
|
* {@link eventBus} so any page can subscribe without prop drilling.
|
|
* 3. {@link useNotifications} listens for alert-worthy events and surfaces OS
|
|
* notifications when permitted.
|
|
*
|
|
* ## Routing
|
|
* All feature pages nest under {@link Layout}, which owns the sidebar and
|
|
* passes `wsConnected` for the connection badge. Unknown paths fall through to
|
|
* {@link NotFound}.
|
|
*
|
|
* @author Nguyễn Ngọc Trí Vĩ <vinnt@smartgift.vn>
|
|
*/
|
|
/* =============================================================================
|
|
* MODULE_GUIDE — extended in-file reference (comments only; safe to read, never executed)
|
|
* =============================================================================
|
|
* **Purpose:** Dashboard module consumed by the React client, MCP tools, or desktop shell depending on deployment mode.
|
|
*
|
|
* ## Design constraints
|
|
* - Local-first: no telemetry leaves the machine unless the user configures webhooks.
|
|
* - Fail-safe hooks path on the server must never block Claude Code; UI mirrors that
|
|
* philosophy by degrading gracefully (empty states, stale badges, reconnect loops).
|
|
* - Destructive flows stay behind explicit confirmation modals and server-side gates.
|
|
* - Internationalization: user-visible strings belong in i18n JSON, not literals here.
|
|
*
|
|
* ## Remote data & SSH
|
|
* Remote Data Sources let operators aggregate multiple machines. SSH entries describe
|
|
* how to reach a peer dashboard; the global data scope (`dataScope.ts`) narrows every
|
|
* scoped GET via `?sources=`. Health checks and import history surface in Settings.
|
|
*
|
|
* ## Internal dependencies
|
|
* - `./components/Layout`
|
|
* - `./components/SplashScreen`
|
|
* - `./pages/Dashboard`
|
|
* - `./pages/KanbanBoard`
|
|
* - `./pages/Sessions`
|
|
* - `./pages/SessionDetail`
|
|
* - `./pages/ActivityFeed`
|
|
* - `./pages/Analytics`
|
|
* - `./pages/Workflows`
|
|
* - `./pages/Settings`
|
|
* - `./pages/CcConfig`
|
|
* - `./pages/Workspace`
|
|
*
|
|
* ## Testing pointers
|
|
* - Prefer colocated `__tests__` with Vitest + Testing Library for UI.
|
|
* - Server contract changes require `npm run test:server` and OpenAPI sync.
|
|
* - MCP edits: `npm run mcp:typecheck` and `npm run mcp:build`.
|
|
*
|
|
* ## Related docs
|
|
* - `ARCHITECTURE.md` — hooks → API → SQLite → WebSocket → UI pipeline.
|
|
* - `docs/API.md` — REST reference.
|
|
* - `.claude/skills/file-headers/` — mandatory `@author` header policy.
|
|
* ============================================================================= */
|
|
|
|
import { BrowserRouter, Routes, Route, Navigate } from "react-router-dom";
|
|
import { useCallback } from "react";
|
|
import { Layout } from "./components/Layout";
|
|
import { DocumentTitle } from "./components/DocumentTitle";
|
|
import { SplashScreen } from "./components/SplashScreen";
|
|
import { Dashboard } from "./pages/Dashboard";
|
|
import { KanbanBoard } from "./pages/KanbanBoard";
|
|
import { Sessions } from "./pages/Sessions";
|
|
import { SessionDetail } from "./pages/SessionDetail";
|
|
import { ActivityFeed } from "./pages/ActivityFeed";
|
|
import { Analytics } from "./pages/Analytics";
|
|
import { Workflows } from "./pages/Workflows";
|
|
import { Settings } from "./pages/Settings";
|
|
import { CcConfig } from "./pages/CcConfig";
|
|
import { Workspace } from "./pages/Workspace";
|
|
import { NotFound } from "./pages/NotFound";
|
|
import { useWebSocket } from "./hooks/useWebSocket";
|
|
import { useNotifications } from "./hooks/useNotifications";
|
|
import { eventBus } from "./lib/eventBus";
|
|
import type { WSMessage } from "./lib/types";
|
|
|
|
/**
|
|
* Application root component mounted by {@link main.tsx}.
|
|
* @returns Routed dashboard UI inside `BrowserRouter`.
|
|
*/
|
|
export default function App() {
|
|
const onMessage = useCallback((msg: WSMessage) => {
|
|
eventBus.publish(msg);
|
|
}, []);
|
|
|
|
const { connected } = useWebSocket(onMessage);
|
|
useNotifications();
|
|
|
|
return (
|
|
<>
|
|
<SplashScreen />
|
|
<BrowserRouter>
|
|
<DocumentTitle />
|
|
<Routes>
|
|
<Route element={<Layout wsConnected={connected} />}>
|
|
<Route index element={<Dashboard />} />
|
|
<Route path="kanban" element={<KanbanBoard />} />
|
|
<Route path="sessions" element={<Sessions />} />
|
|
<Route path="sessions/:id" element={<SessionDetail />} />
|
|
<Route path="activity" element={<ActivityFeed />} />
|
|
<Route path="analytics" element={<Analytics />} />
|
|
<Route path="workflows" element={<Workflows />} />
|
|
<Route path="lanes" element={<Navigate to="/run" replace />} />
|
|
<Route path="cc-config" element={<CcConfig />} />
|
|
<Route path="run" element={<Workspace />} />
|
|
<Route path="settings" element={<Settings />} />
|
|
<Route path="*" element={<NotFound />} />
|
|
</Route>
|
|
</Routes>
|
|
</BrowserRouter>
|
|
</>
|
|
);
|
|
}
|