Files
Claude-Code-Monitor/client/src/components/EventDetail.tsx
T
nntrivi2001 b673363351 feat(theme): dark/light mode with a Radix Colors-based palette
Adds a working Dark/Light toggle (next to the language switcher, same row
as EN/VI) and re-themes the whole dashboard, not just the handful of
components that already used semantic tokens.

- Tailwind darkMode:"class" + CSS-variable color tokens (client/src/index.css,
  tailwind.config.js): surface.0-5, border/border-light, accent/accent-hover,
  fg.primary/secondary/muted, status.success/danger/warning. One class flip
  on <html> re-themes everything — no per-element dark: variant pairs.
- useTheme() hook: localStorage-persisted, defaults to dark, no
  prefers-color-scheme fallback (client/src/hooks/useTheme.ts).
- Mechanical, table-driven migration (scripts/migrate-color-tokens.mjs,
  scripts/tokenize-status-colors.mjs, scripts/darken-status-colors.mjs) of
  every raw neutral/gray/slate + emerald/red/amber Tailwind utility across
  client/src onto the new tokens, so every badge/button/component pulls the
  same shade per status/role instead of each picking its own.
- Palette values are the literal Radix Colors (radix-ui.com/colors) scale
  constants — slate/blue/green/red/amber steps 1-12 — adopted after three
  rounds of hand-picked values that kept overshooting (flat, then too dark,
  then glaring); see docs/superpowers/specs/2026-07-31-color-redesign-
  dark-light-mode-design.md for the full history and role mapping.
- PipelineMap: done/current/failed/passed-no-evidence/detected share one
  visual language (border + text + translucent wash of the same status
  color); `current` alone stays a solid accent fill, the one state that
  gets to look bolder ("you are here").
- LaneCard: removed the stage/kind/auto-stage chips that duplicated the
  Workspace lane-detail header already showing them.

Categorical/decorative hues (violet, indigo, cyan, teal, sky, rose, pink,
orange, yellow, and blue where it plays a role-coloring part e.g. message
bubbles) are deliberately out of scope — collapsing those onto shared
tokens would erase the distinction between different kinds of thing, not
a status.
2026-07-31 10:54:31 +07:00

424 lines
16 KiB
TypeScript

/**
* @file EventDetail.tsx
* @description Inline detail view rendered below an event row when expanded.
* Shows a human-readable summary at the top, then every top-level JSON key
* from the hook payload as a single row. For `tool_input` and `tool_response`
* on recognised tools, rows use tool-aware renderers (terminal blocks, diffs,
* line-numbered code, match lists) instead of the generic JSON code view.
* @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.
*
* ## Observability
* Prometheus scrapes `GET /api/metrics` (see `monitoring/`). Grafana ships four
* provisioned boards (overview, sessions, tools, alerts). Native npm scripts and
* Docker Compose profiles are documented in `monitoring/README.md`.
*
* ## Internal dependencies
* - `../lib/types`
* - `../lib/event-grouping`
* - `../lib/event-summary`
* - `../lib/format`
* - `./event-views/primitives`
* - `./event-views/tool-views`
*
* ## Public surface
* - `EventDetail` — exported API; see TSDoc on the symbol for behavior.
*
* ## 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.
* ============================================================================= */
/* -----------------------------------------------------------------------------
* EXPORT CATALOG — quick index of symbols defined below (documentation only).
* -----------------------------------------------------------------------------
* **EventDetail**
* Part of this module's public contract. Downstream imports should treat
* the signature and return type as stable unless release notes say otherwise.
* When behavior changes, update the `@file` overview and relevant tests.
*
* ----------------------------------------------------------------------------- */
import { useMemo } from "react";
import { useTranslation } from "react-i18next";
import type { DashboardEvent } from "../lib/types";
import type { AgentInfo } from "../lib/event-grouping";
import { buildEventSummary } from "../lib/event-summary";
import { formatModelName, formatDateTimeFull } from "../lib/format";
import { CopyButton } from "./event-views/primitives";
import { ToolInputView, ToolResponseView } from "./event-views/tool-views";
type EventDetailProps = {
event: DashboardEvent;
/** Optional lookup so the panel can surface a human-friendly agent name
* (e.g. "technical-researcher · Subagent 14") next to the raw agent_id.
* Callers that already have the session's agent map (SessionDetail,
* ActivityFeed) should pass it; older callers can omit it and the panel
* falls back to id-only display. */
agentInfoById?: Map<string, AgentInfo>;
/** Optional lookup so the panel can surface a human-friendly session
* label (e.g. "AI-Assistant-Chatbot (enumerated-wandering-jellyfish)")
* next to the raw session_id. Same fallback rules as agentInfoById. */
sessionNameById?: Map<string, string>;
};
/** Human-friendly label for an agent - `subagent_type · name` when both add
* signal, else whichever single field is present. Returns null for main
* agents whose name is just the session label (the agent_id row already
* carries the structural marker `<session>-main`, no need to repeat it). */
function agentDisplayLabel(info: AgentInfo): string | null {
if (info.type === "main") {
return info.name && info.name.trim().length > 0 ? info.name : null;
}
const type = info.subagent_type?.trim();
const name = info.name?.trim();
if (type && name && name !== type) return `${type} · ${name}`;
if (type) return type;
if (name) return name;
return null;
}
// Keys from the payload that are already rendered from event-level fields -
// skip them to avoid showing the same value twice. Includes `id` and
// `event_id` defensively in case a future hook payload surfaces them.
const DUPLICATE_KEYS = new Set(["id", "event_id", "session_id", "agent_id"]);
/** Map raw payload keys to localized i18n labels under common:eventDetail.
* Anything not in this map falls back to humanizeKey() so users still see
* a tidy "Tool Name" rather than "tool_name". */
const PAYLOAD_LABEL_KEYS: Record<string, string> = {
tool_name: "eventDetail.toolName",
tool_use_id: "eventDetail.toolUseId",
tool_input: "eventDetail.toolInput",
tool_response: "eventDetail.toolResponse",
is_error: "eventDetail.isError",
cwd: "eventDetail.cwd",
permission_mode: "eventDetail.permissionMode",
transcript_path: "eventDetail.transcriptPath",
agent_transcript_path: "eventDetail.agentTranscriptPath",
hook_event_name: "eventDetail.hookEventName",
stop_reason: "eventDetail.stopReason",
stop_hook_active: "eventDetail.stopHookActive",
subagent_type: "eventDetail.subagentType",
agent_type: "eventDetail.agentType",
notification_type: "eventDetail.notificationType",
message: "eventDetail.message",
prompt: "eventDetail.prompt",
model: "eventDetail.model",
reason: "eventDetail.reason",
source: "eventDetail.source",
imported: "eventDetail.imported",
type: "eventDetail.type",
timestamp: "eventDetail.timestamp",
uuid: "eventDetail.uuid",
duration_ms: "eventDetail.durationMs",
durationMs: "eventDetail.durationMs",
compaction_number: "eventDetail.compactionNumber",
total_compactions: "eventDetail.totalCompactions",
last_assistant_message: "eventDetail.lastAssistantMessage",
};
/** Convert `snake_case` / `camelCase` to a human-readable Title Case label
* for any payload key not in PAYLOAD_LABEL_KEYS. Defensive fallback so
* every row reads naturally even when a new hook field appears. */
function humanizeKey(key: string): string {
return key
.replace(/[_-]+/g, " ")
.replace(/([a-z])([A-Z])/g, "$1 $2")
.replace(/\b\w/g, (c) => c.toUpperCase());
}
type Row = { key: string; label: string; value: unknown };
export function EventDetail({ event, agentInfoById, sessionNameById }: EventDetailProps) {
const { t } = useTranslation("common");
const parsed = useMemo<Record<string, unknown> | null>(() => {
if (!event.data) return null;
try {
const v = JSON.parse(event.data);
return v && typeof v === "object" && !Array.isArray(v)
? (v as Record<string, unknown>)
: null;
} catch {
return null;
}
}, [event.data]);
const summary = useMemo(() => buildEventSummary(event), [event]);
const rows = useMemo<Row[]>(() => {
const result: Row[] = [{ key: "event_id", label: t("eventDetail.eventId"), value: event.id }];
// Full date + time + timezone - list rows only show a short time, so the
// detail panel spells out exactly when the event was recorded.
if (event.created_at) {
result.push({
key: "recorded_at",
label: t("eventDetail.recordedAt", "Recorded at"),
value: formatDateTimeFull(event.created_at),
});
}
// Surface the session name above the raw id when we can resolve it -
// makes "f2f3c568-..." recognisable as e.g. "AI-Assistant-Chatbot
// (enumerated-wandering-jellyfish)" without losing the id below.
const sessionName = sessionNameById?.get(event.session_id);
if (sessionName && sessionName.trim().length > 0) {
result.push({ key: "session_name", label: t("eventDetail.session"), value: sessionName });
}
result.push({
key: "session_id",
label: t("eventDetail.sessionId"),
value: event.session_id,
});
if (event.agent_id) {
// Surface the agent name above the raw id when we can resolve it -
// makes "f2f3c568-...-subagent-14" recognisable as e.g.
// "technical-researcher · Subagent 14" without losing the id below.
const info = agentInfoById?.get(event.agent_id);
const displayName = info ? agentDisplayLabel(info) : null;
if (displayName) {
result.push({ key: "agent_name", label: t("eventDetail.agent"), value: displayName });
}
result.push({ key: "agent_id", label: t("eventDetail.agentId"), value: event.agent_id });
}
const payloadEntries: Array<[string, unknown]> = parsed
? Object.entries(parsed).filter(([k]) => !DUPLICATE_KEYS.has(k))
: [];
for (const [k, v] of payloadEntries) {
// Known keys → localized label; unknown keys → humanized fallback
// (snake_case → "Snake Case") so the panel never surfaces raw JSON
// identifiers in the row labels.
const i18nKey = PAYLOAD_LABEL_KEYS[k];
const label = i18nKey ? t(i18nKey) : humanizeKey(k);
result.push({
key: k,
label,
value: k === "model" && typeof v === "string" ? (formatModelName(v) ?? v) : v,
});
}
// If JSON parse failed, show the raw data as a single row using the
// localized raw-payload label rather than a hardcoded "data" string.
if (!parsed && event.data) {
result.push({ key: "data", label: t("eventDetail.rawPayload"), value: event.data });
}
return result;
}, [
event.id,
event.session_id,
event.agent_id,
event.data,
parsed,
agentInfoById,
sessionNameById,
t,
]);
const hasToolInput = parsed != null && "tool_input" in parsed;
const hasToolResponse = parsed != null && "tool_response" in parsed;
return (
<div className="bg-surface-2/60 border-t border-border px-5 py-4 animate-slide-up space-y-3">
{summary && (
<SummaryBlock
summary={summary}
hasToolInput={hasToolInput}
hasToolResponse={hasToolResponse}
/>
)}
<div className="space-y-2">
{rows.map((row) => (
<FieldRow
key={row.key}
rowKey={row.key}
label={row.label}
value={row.value}
toolName={event.tool_name}
/>
))}
</div>
</div>
);
}
// ───────────────────────── Summary block ─────────────────────────
function SummaryBlock({
summary,
hasToolInput,
hasToolResponse,
}: {
summary: { icon: string; headline: string; bullets: string[] };
hasToolInput: boolean;
hasToolResponse: boolean;
}) {
const { t } = useTranslation("common");
const refs: string[] = [];
if (hasToolInput) refs.push("tool_input");
if (hasToolResponse) refs.push("tool_response");
const hint =
refs.length > 0 ? t("eventDetail.seeDetailsBelow", { fields: refs.join(" · ") }) : null;
return (
<div className="border border-border rounded overflow-hidden bg-surface-3/30">
<div className="px-3 py-1 border-b border-border bg-black/20">
<span className="text-fg-muted text-[10px] uppercase tracking-wide font-semibold">
{t("eventDetail.summary")}
</span>
</div>
<div className="p-3 space-y-1.5">
<div className="flex items-start gap-2">
<span className="text-base leading-none" aria-hidden="true">
{summary.icon}
</span>
<span className="text-[12px] text-fg-primary font-medium break-words">
{summary.headline}
</span>
</div>
{summary.bullets.length > 0 && (
<ul className="list-disc pl-6 space-y-0.5 text-[11px] text-fg-secondary">
{summary.bullets.map((b, i) => (
<li key={i}>{b}</li>
))}
</ul>
)}
{hint && (
<div className="text-[11px] text-fg-muted italic pt-1 border-t border-border/40">
{hint}
</div>
)}
</div>
</div>
);
}
// ───────────────────────── Field row ─────────────────────────
function FieldRow({
rowKey,
label,
value,
toolName,
}: {
/** Raw payload key - used for tool-aware routing decisions so the renderer
* doesn't break when the user-visible label is translated. */
rowKey: string;
label: string;
value: unknown;
toolName: string | null;
}) {
// Route tool_input / tool_response through tool-aware renderers when the
// tool is known. Unknown tools (or unknown shape for known tools) fall back
// to the generic CodeView below.
if (rowKey === "tool_input") {
const view = ToolInputView({ toolName, input: value });
if (view) {
return (
<div className="grid grid-cols-[160px_1fr] gap-x-4 items-start text-[11px]">
<div className="text-fg-muted font-mono pt-2">{label}</div>
<div>{view}</div>
</div>
);
}
}
if (rowKey === "tool_response") {
const view = ToolResponseView({ toolName, response: value });
if (view) {
return (
<div className="grid grid-cols-[160px_1fr] gap-x-4 items-start text-[11px]">
<div className="text-fg-muted font-mono pt-2">{label}</div>
<div>{view}</div>
</div>
);
}
}
if (isInlineScalar(value)) {
return (
<div className="grid grid-cols-[160px_1fr] gap-x-4 items-start text-[11px]">
<div className="text-fg-muted font-mono pt-0.5">{label}</div>
<div className="text-fg-secondary font-mono break-all">
<ScalarValue value={value} />
</div>
</div>
);
}
return (
<div className="grid grid-cols-[160px_1fr] gap-x-4 items-start text-[11px]">
<div className="text-fg-muted font-mono pt-2">{label}</div>
<CodeView value={value} />
</div>
);
}
function isInlineScalar(value: unknown): boolean {
if (value == null) return true;
if (typeof value === "boolean" || typeof value === "number") return true;
if (typeof value === "string") return !value.includes("\n") && value.length <= 120;
return false;
}
function ScalarValue({ value }: { value: unknown }) {
if (value == null) return <span className="text-fg-muted italic">null</span>;
if (typeof value === "boolean") {
const color = value
? "text-green-400 border-green-500/30 bg-green-500/10"
: "text-fg-secondary border-border-light/30 bg-surface-4/10";
return (
<span className={`inline-block px-2 py-0.5 rounded border ${color}`}>{String(value)}</span>
);
}
return <>{String(value)}</>;
}
// ───────────────────────── Terminal-styled JSON code view (fallback) ─────────────────────────
function CodeView({ value }: { value: unknown }) {
const text = typeof value === "string" ? value : safeStringify(value);
return (
<div className="relative bg-black/70 border border-border rounded font-mono text-[11px] overflow-hidden">
<div className="flex items-center justify-between px-3 py-1.5 border-b border-border bg-black/40">
<span className="text-fg-muted text-[10px] uppercase tracking-wide">
{typeof value === "string" ? "text" : Array.isArray(value) ? "array" : "json"}
</span>
<CopyButton text={text} />
</div>
<pre className="px-3 py-2 text-fg-secondary whitespace-pre-wrap break-words max-h-96 overflow-auto">
{text}
</pre>
</div>
);
}
function safeStringify(value: unknown): string {
try {
return JSON.stringify(value, null, 2);
} catch {
return String(value);
}
}