b673363351
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.
331 lines
12 KiB
TypeScript
331 lines
12 KiB
TypeScript
/**
|
|
* @file ToolCallBlock.tsx
|
|
* @description Collapsible block rendered inside an assistant message for each
|
|
* tool_use / tool_result pair. Shows tool icon + name in the header, with the
|
|
* paired result inline when present. Per-tool styling comes from toolStyle.ts;
|
|
* the tool's input/output payload is delegated to <CodeBlock /> for syntax
|
|
* highlighting.
|
|
* @author Nguyễn Ngọc Trí Vĩ <vinnt@smartgift.vn>
|
|
*/
|
|
/* =============================================================================
|
|
* MODULE_GUIDE — extended in-file reference (comments only; safe to read, never executed)
|
|
* =============================================================================
|
|
* **Purpose:** Renders Claude transcript rows (user, assistant, tool calls) inside Session Detail with markdown, syntax highlighting, and TUI-style segments.
|
|
*
|
|
* ## 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`
|
|
* - `./CodeBlock`
|
|
* - `./toolStyle`
|
|
*
|
|
* ## Public surface
|
|
* - `ToolCallBlock` — 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).
|
|
* -----------------------------------------------------------------------------
|
|
* **ToolCallBlock**
|
|
* 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 { useState } from "react";
|
|
import { ChevronRight, AlertCircle, FileText, CheckCircle2 } from "lucide-react";
|
|
import type { TranscriptContent } from "../../lib/types";
|
|
import { CodeBlock } from "./CodeBlock";
|
|
import { styleForTool } from "./toolStyle";
|
|
|
|
interface ToolCallBlockProps {
|
|
toolUse: TranscriptContent;
|
|
toolResult?: TranscriptContent | null;
|
|
}
|
|
|
|
/** Detect a likely language from a file path's extension. */
|
|
function langFromPath(path: string): string {
|
|
const ext = path.split(".").pop()?.toLowerCase() ?? "";
|
|
const map: Record<string, string> = {
|
|
ts: "ts",
|
|
tsx: "ts",
|
|
js: "js",
|
|
jsx: "js",
|
|
mjs: "js",
|
|
cjs: "js",
|
|
py: "python",
|
|
json: "json",
|
|
yml: "yaml",
|
|
yaml: "yaml",
|
|
sh: "bash",
|
|
bash: "bash",
|
|
zsh: "bash",
|
|
html: "html",
|
|
htm: "html",
|
|
css: "css",
|
|
scss: "css",
|
|
sql: "sql",
|
|
md: "plain",
|
|
txt: "plain",
|
|
diff: "diff",
|
|
patch: "diff",
|
|
};
|
|
return map[ext] ?? "plain";
|
|
}
|
|
|
|
/** Build a one-line summary of the tool call to show in the collapsed header. */
|
|
function buildSummary(toolUse: TranscriptContent): string | null {
|
|
const input = toolUse.input;
|
|
if (!input || typeof input !== "object" || "_truncated" in input) return null;
|
|
const obj = input as Record<string, unknown>;
|
|
if (typeof obj.file_path === "string") return obj.file_path;
|
|
if (typeof obj.path === "string") return obj.path;
|
|
if (typeof obj.command === "string") return obj.command.slice(0, 200);
|
|
if (typeof obj.pattern === "string") return obj.pattern;
|
|
if (typeof obj.query === "string") return obj.query;
|
|
if (typeof obj.url === "string") return obj.url;
|
|
if (typeof obj.description === "string") return obj.description;
|
|
return null;
|
|
}
|
|
|
|
/** Render the input pane with tool-aware formatting. */
|
|
function renderInput(toolUse: TranscriptContent) {
|
|
const input = toolUse.input;
|
|
if (!input) return null;
|
|
|
|
// Truncated payload from the backend
|
|
if (typeof input === "object" && "_truncated" in input) {
|
|
return (
|
|
<CodeBlock
|
|
code={String((input as { _truncated: string })._truncated)}
|
|
lang="plain"
|
|
label="Input (truncated)"
|
|
/>
|
|
);
|
|
}
|
|
|
|
const obj = input as Record<string, unknown>;
|
|
const tool = (toolUse.name ?? "").toLowerCase();
|
|
|
|
// Bash: show the command with shell highlighting
|
|
if (tool === "bash" && typeof obj.command === "string") {
|
|
return (
|
|
<div className="space-y-2">
|
|
<CodeBlock code={obj.command} lang="bash" label="Command" />
|
|
{typeof obj.description === "string" && (
|
|
<p className="text-xs text-fg-muted italic px-1">{obj.description}</p>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Write: render new content as code with the file path as the chrome label
|
|
if (tool === "write" && typeof obj.file_path === "string" && typeof obj.content === "string") {
|
|
return (
|
|
<CodeBlock
|
|
code={obj.content}
|
|
lang={langFromPath(obj.file_path)}
|
|
filename={obj.file_path}
|
|
label="New file"
|
|
/>
|
|
);
|
|
}
|
|
|
|
// Edit: side-by-side old/new
|
|
if (tool === "edit" && typeof obj.file_path === "string") {
|
|
const lang = langFromPath(obj.file_path);
|
|
return (
|
|
<div className="space-y-2">
|
|
<div className="flex items-center gap-1.5 text-xs text-fg-secondary">
|
|
<FileText className="w-3.5 h-3.5 text-violet-400" />
|
|
<span className="font-mono">{obj.file_path}</span>
|
|
{obj.replace_all === true && (
|
|
<span className="text-[10px] uppercase tracking-wider text-status-warning/80 bg-status-warning/10 border border-status-warning/20 rounded px-1.5 py-0.5">
|
|
replace all
|
|
</span>
|
|
)}
|
|
</div>
|
|
{typeof obj.old_string === "string" && (
|
|
<CodeBlock code={obj.old_string} lang={lang} label="Removed" tone="danger" />
|
|
)}
|
|
{typeof obj.new_string === "string" && (
|
|
<CodeBlock code={obj.new_string} lang={lang} label="Added" tone="success" />
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Read: just show the path with offset/limit
|
|
if (tool === "read" && typeof obj.file_path === "string") {
|
|
return (
|
|
<div className="flex items-center gap-1.5 text-xs text-fg-secondary bg-surface-4/40 border border-surface-3 rounded-md px-3 py-2">
|
|
<FileText className="w-3.5 h-3.5 text-sky-400 flex-shrink-0" />
|
|
<span className="font-mono break-all">{obj.file_path}</span>
|
|
{(typeof obj.offset === "number" || typeof obj.limit === "number") && (
|
|
<span className="text-fg-muted font-mono ml-auto flex-shrink-0">
|
|
{typeof obj.offset === "number" ? `:${obj.offset}` : ""}
|
|
{typeof obj.limit === "number" ? `+${obj.limit}` : ""}
|
|
</span>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Grep: pattern + path
|
|
if (tool === "grep" && typeof obj.pattern === "string") {
|
|
return (
|
|
<div className="space-y-1.5">
|
|
<div className="flex items-center gap-2 text-xs">
|
|
<span className="text-fg-muted font-mono uppercase tracking-wider text-[10px]">
|
|
Pattern
|
|
</span>
|
|
<code className="font-mono text-cyan-300 bg-surface-4 border border-surface-3 rounded px-1.5 py-0.5">
|
|
{obj.pattern}
|
|
</code>
|
|
</div>
|
|
{typeof obj.path === "string" && (
|
|
<div className="flex items-center gap-2 text-xs">
|
|
<span className="text-fg-muted font-mono uppercase tracking-wider text-[10px]">
|
|
Path
|
|
</span>
|
|
<code className="font-mono text-fg-secondary">{obj.path}</code>
|
|
</div>
|
|
)}
|
|
{typeof obj.glob === "string" && (
|
|
<div className="flex items-center gap-2 text-xs">
|
|
<span className="text-fg-muted font-mono uppercase tracking-wider text-[10px]">
|
|
Glob
|
|
</span>
|
|
<code className="font-mono text-fg-secondary">{obj.glob}</code>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// Default: pretty JSON
|
|
return <CodeBlock code={JSON.stringify(obj, null, 2)} lang="json" label="Input" />;
|
|
}
|
|
|
|
/** Render the result pane: detect diff/json/text. */
|
|
function renderResult(toolResult: TranscriptContent, toolName: string) {
|
|
const text = toolResult.output ?? "";
|
|
if (text.length === 0) return <div className="text-xs text-fg-muted italic px-1">(empty)</div>;
|
|
|
|
const isError = !!toolResult.is_error;
|
|
const tool = toolName.toLowerCase();
|
|
const label = isError ? "Error" : "Output";
|
|
|
|
// Heuristics for language
|
|
let lang = "plain";
|
|
const trimmed = text.trim();
|
|
if (trimmed.startsWith("{") || trimmed.startsWith("[")) {
|
|
try {
|
|
JSON.parse(trimmed);
|
|
lang = "json";
|
|
} catch {
|
|
// fall through
|
|
}
|
|
} else if (/^(\+\+\+|---|@@) /m.test(text) || /^diff --git /m.test(text)) {
|
|
lang = "diff";
|
|
} else if (tool === "bash") {
|
|
lang = "bash";
|
|
}
|
|
|
|
return <CodeBlock code={text} lang={lang} label={label} tone={isError ? "danger" : "default"} />;
|
|
}
|
|
|
|
export function ToolCallBlock({ toolUse, toolResult }: ToolCallBlockProps) {
|
|
const [expanded, setExpanded] = useState(false);
|
|
|
|
const isError = toolResult?.is_error;
|
|
const hasResult = toolResult != null;
|
|
const summary = buildSummary(toolUse);
|
|
const style = styleForTool(toolUse.name);
|
|
const Icon = style.Icon;
|
|
|
|
const wrapperBorder = isError ? "border-status-danger/30" : style.border;
|
|
const wrapperBg = isError ? "bg-status-danger/5" : "bg-surface-2/60";
|
|
|
|
return (
|
|
<div
|
|
className={`rounded-lg border ${wrapperBorder} ${wrapperBg} overflow-hidden transition-colors`}
|
|
>
|
|
{/* Collapsed/expanded toggle */}
|
|
<button
|
|
onClick={() => setExpanded(!expanded)}
|
|
className="w-full flex items-center gap-2.5 px-3 py-2 text-left hover:bg-surface-3/40 transition-colors"
|
|
>
|
|
<ChevronRight
|
|
className={`w-3.5 h-3.5 text-fg-muted flex-shrink-0 transition-transform duration-150 ${
|
|
expanded ? "rotate-90" : ""
|
|
}`}
|
|
/>
|
|
<span
|
|
className={`flex-shrink-0 inline-flex items-center justify-center w-5 h-5 rounded ${style.chip}`}
|
|
>
|
|
<Icon className="w-3 h-3" />
|
|
</span>
|
|
<span className={`font-mono font-medium text-[13px] flex-shrink-0 ${style.text}`}>
|
|
{toolUse.name}
|
|
</span>
|
|
{summary && (
|
|
<span className="text-fg-muted text-xs font-mono truncate min-w-0" title={summary}>
|
|
{summary}
|
|
</span>
|
|
)}
|
|
<span className="ml-auto flex-shrink-0">
|
|
{isError ? (
|
|
<span className="inline-flex items-center gap-1 text-[10px] uppercase tracking-wider text-status-danger bg-status-danger/15 border border-status-danger/20 rounded px-1.5 py-0.5">
|
|
<AlertCircle className="w-3 h-3" />
|
|
error
|
|
</span>
|
|
) : hasResult ? (
|
|
<span className="inline-flex items-center gap-1 text-[10px] uppercase tracking-wider text-status-success/80 bg-status-success/10 border border-status-success/20 rounded px-1.5 py-0.5">
|
|
<CheckCircle2 className="w-3 h-3" />
|
|
ok
|
|
</span>
|
|
) : (
|
|
<span className="text-fg-muted text-[10px] uppercase tracking-wider font-mono">
|
|
pending
|
|
</span>
|
|
)}
|
|
</span>
|
|
</button>
|
|
|
|
{/* Expanded body */}
|
|
{expanded && (
|
|
<div className="border-t border-surface-3 bg-surface-1/40 px-3 py-3 space-y-2.5 animate-fade-in">
|
|
{renderInput(toolUse)}
|
|
{hasResult && renderResult(toolResult, toolUse.name ?? "")}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|