mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-27 21:33:41 +02:00
* feat(views): transcript reading hierarchy — presenter, expand modes, log-scale markdown The transcript rendered all five event kinds as identical truncated one-liners: agent replies and errors were clipped to half a sentence and only readable through an 11px bordered scroll box, indistinguishable in weight from dozens of tool rows. - trace-event-presenter.ts: pure presentation rules — kind, verbatim tool labels, newline-free one-line summaries, shell-wrapper stripping for command summaries, and per-kind default expansion. - Smart reading hierarchy: agent text renders in place through RichContent (compact density + transcript-prose log scale: headings demoted to body size, 12.5px/11px two-step type ramp) and errors read unboxed; thinking and tool rows stay folded to one line. - Expand mode menu replaces the expand-visible toggle: a persisted three-way preference (smart / expand all / collapse all) with per-item descriptions; row-level toggles override it until the mode changes. transcript-view-store migrates the legacy defaultExpanded boolean. - Tool params/output expand into a quiet borderless surface; long content fades behind "Show all" instead of a nested scrollbar. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * refactor(views): transcript header — status-first identity row, facts as typography, list toolbar The header mixed five different natures in one visual container: status pill, attribution badge, nine equal-weight metadata chips (including truncated agent-description prose and a hostname), and the list controls — everything a rounded bordered capsule, so information and controls were indistinguishable and wrapped into a ragged 2-3 lines. Restructure into three fixed-purpose rows: - Identity: status pill anchors the left edge (the fact every viewer opens the dialog for), then the agent through its existing avatar component (hover card for details; fixes the empty-name case via agentInfo fallback) and a new borderless `inline` AttributionBadge variant. Close stays at the right. - Facts: one dot-separated plain-text line — provider, runtime mode (hostname in hover title), duration, counts, timestamp; the workdir path collapses into a copy icon with the path as tooltip. The agent-description chip is gone (it lives in the avatar hover card). - List toolbar: expand mode / sort / filter / copy move to their own row attached to the list they operate. Only controls keep borders; only status keeps color; entities render through their identity components; facts are typography. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * refactor(views): transcript header — two-tier by necessity (ⓘ popover), trigger source, full status machine Following PR #5747's design lesson: split header metadata by whether a viewer needs it BEFORE reading. The flat facts line put diagnostics (provider, runtime hostname, mode, workdir, timestamps) on the always-visible surface with equal weight. - Identity row (tier 1): status · agent · trigger source · attribution. Trigger source ("Initial run" / "From a comment" / "Retry" / ...) answers "why does this run exist" — restored from #5747, was dropped. - Status badge now covers the full state machine (queued / dispatched / cancelled / waiting), not just running/completed/failed. - ⓘ Run-details popover (tier 2): runtime, provider, mode, workdir (copyable), created/started/completed — off the default surface. - Toolbar left carries duration + event/tool counts (a read-before-you- read summary), so the control row balances instead of stranding the controls at the right with empty left space. Persisted preferences (sort, filter selection, preserve-filters, expand density) are untouched — same controls, same behavior. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(views): transcript summary/controls — JSON preview, unify sort button, attribution to ⓘ - Tool-result summary took the first non-empty line, so pretty-printed JSON previewed as a lone "[" or "{". Collapse whitespace instead so it reads "[ { "id": ... } ]". - Sort was a segmented tab strip, reading as a different control family. Make it a single two-state toggle button on the shared toolbar chassis (shows current direction, flips on click) — every toolbar control now shares one chassis with a type-appropriate affordance (toggle / menu / action), not one forced shape. - Attribution left the identity row. The accountable human is audit metadata, not read-time context, and "on behalf of" misread the direction; the trigger *mechanism* stays on the identity row, the *person* moves to the ⓘ popover as "Triggered by". - Drop the tool-call count from the toolbar: redundant with the event count and informs no reading decision. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * refactor(views): transcript toolbar uses the shared Button component + labels fix Toolbar controls were hand-rolled <button>s, so they never got the project's built-in aria-expanded active state — opening a menu left the trigger looking idle. Route every control through the shared Button: - Density / filter / ⓘ / close → Button variant="ghost" via the trigger render prop, so an open menu shows the muted active background for free. - Active filter → Button variant="brand" (the design-system ON state), replacing the ad-hoc blue classes. - Sort → ghost Button on the same chassis (was a segmented tab strip). - Copy → ghost Button. Wording: - Sort reads "Oldest first" / "Newest first" (was the ambiguous "chronological / time order"). - Expand-mode "Smart" → "Focus" — names the result, not a hollow adjective. Start/created/completed timestamps remain in the ⓘ Run-details popover. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * refactor(views): filters always persist, drop "on behalf of" wording, surface run time Three follow-ups from review: - Remove the "Preserve filters" toggle. Persisting the filter selection is the only sensible behavior (a facet a run lacks already no-ops), so it should not be a user-facing switch. Filters now always persist; drop preserveFilters + the session-vs-persisted branching from the store and dialog. - Inline attribution showed "on behalf of <name>", which read backwards and doubled up under the ⓘ "Triggered by" label. Render just the avatar + name; the source stays in the tooltip. - Surface the run time (started ?? created) on the toolbar left next to duration and event count — "when did this happen" is read-before-you- read context. Full-precision timestamps remain in the ⓘ popover. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * refactor(views): triggered-by back on the identity row, labeled toolbar facts - The accountable human returns to the identity row next to the trigger mechanism (status · agent · trigger · person), where it's visible rather than buried in the ⓘ popover. - Toolbar facts now carry explicit labels — "Created <time> · Took <duration> · N events" — instead of bare values the reader had to infer. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(views): transcript identity row reads as one sentence, not three peers The row put the agent, the trigger word, and the person at near-equal weight with two same-size avatars, so it read as a jumble of names with "comment-triggered" floating between them. - The agent is the sole primary identity (avatar + medium weight). - Trigger + person collapse into one muted secondary unit set apart from the agent, ordered "<person> · <how>". - Drop the person's avatar here (new AttributionBadge `hideAvatar`) so two same-size faces don't read as two agents; the name alone, being muted, can't be confused with the agent. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(views): copy-all exports full event bodies, not truncated summaries handleCopyAll built its text from traceEventSummary — the one-line, whitespace-collapsed, 200-char row preview — so every copied tool output and agent reply was truncated with "...". Add traceEventCopyText, which returns the complete body (full tool input JSON / result output / prose), redact it like the detail view, and join events with blank lines. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * chore(views): remove orphaned tool_calls i18n keys, fix inline-variant JSDoc Review follow-ups (no behavior change): - Delete tool_calls_one/tool_calls_other from all four locales — the metadata chip that used them was removed earlier in this branch. - Correct the AttributionBadge inline-variant JSDoc: it renders the bare name (no "on behalf of" wrapper), matching the implementation and test. - en events_one grammar: "1 event" not "1 events". Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(views): fold copy timestamps into full-body copy (merge #5873) Reconcile #5873's "timestamps in copied events" (merged to main) with this branch's full-body copy rewrite: traceEventCopyText now prefixes each line with the RFC 3339 timestamp when created_at is valid, on top of the complete (untruncated) body, events separated by a blank line. The two #5873 copy tests are updated to the full-body format; the orphaned formatEventForClipboard helper is removed. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1128 lines
44 KiB
TypeScript
1128 lines
44 KiB
TypeScript
"use client";
|
|
|
|
import { useState, useRef, useCallback, useEffect, useMemo, forwardRef } from "react";
|
|
import { Virtuoso, type VirtuosoHandle, type Components } from "react-virtuoso";
|
|
import {
|
|
Bot,
|
|
ChevronRight,
|
|
Brain,
|
|
AlertCircle,
|
|
CheckCircle2,
|
|
XCircle,
|
|
X,
|
|
Loader2,
|
|
Clock,
|
|
Copy,
|
|
Check,
|
|
Filter,
|
|
ArrowDownNarrowWide,
|
|
ArrowUpNarrowWide,
|
|
ListCollapse,
|
|
Info,
|
|
} from "lucide-react";
|
|
import { cn } from "@multica/ui/lib/utils";
|
|
import { copyText } from "@multica/ui/lib/clipboard";
|
|
import { Button } from "@multica/ui/components/ui/button";
|
|
import { Dialog, DialogContent, DialogTitle } from "@multica/ui/components/ui/dialog";
|
|
import { Popover, PopoverContent, PopoverTrigger } from "@multica/ui/components/ui/popover";
|
|
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "@multica/ui/components/ui/collapsible";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuTrigger,
|
|
DropdownMenuContent,
|
|
DropdownMenuSeparator,
|
|
DropdownMenuCheckboxItem,
|
|
DropdownMenuItem,
|
|
DropdownMenuRadioGroup,
|
|
DropdownMenuRadioItem,
|
|
} from "@multica/ui/components/ui/dropdown-menu";
|
|
import { ActorAvatar } from "../actor-avatar";
|
|
import { AttributionBadge } from "../../issues/components/attribution-badge";
|
|
import { RichContent } from "../../rich-content";
|
|
import { api } from "@multica/core/api";
|
|
import {
|
|
useTranscriptViewStore,
|
|
type TranscriptDetailDensity,
|
|
type TranscriptFilterKey,
|
|
type TranscriptSortDirection,
|
|
} from "@multica/core/agents/stores";
|
|
import type { AgentTask, Agent, AgentRuntime } from "@multica/core/types/agent";
|
|
import { redactSecrets } from "./redact";
|
|
import type { TimelineItem } from "./build-timeline";
|
|
import {
|
|
traceEventCopyText,
|
|
traceEventDefaultExpanded,
|
|
traceEventHasDetail,
|
|
traceEventKind,
|
|
traceEventLabel,
|
|
traceEventSummary,
|
|
traceEventSummaryIsMono,
|
|
} from "./trace-event-presenter";
|
|
import { useT } from "../../i18n";
|
|
import "./task-transcript.css";
|
|
|
|
interface AgentTranscriptDialogProps {
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
task: AgentTask;
|
|
items: TimelineItem[];
|
|
agentName: string;
|
|
isLive?: boolean;
|
|
/**
|
|
* Optional content rendered between the header chips and the event list.
|
|
* Used by autopilot run rows to surface the inbound webhook trigger
|
|
* payload so it's visible regardless of whether the agent echoes it.
|
|
* The dialog stays generic — slot content is the caller's concern.
|
|
*/
|
|
headerSlot?: React.ReactNode;
|
|
}
|
|
|
|
// ─── Color mapping for timeline segments ────────────────────────────────────
|
|
|
|
type EventColor = "agent" | "thinking" | "tool" | "result" | "error";
|
|
|
|
function getEventColor(item: TimelineItem): EventColor {
|
|
switch (item.type) {
|
|
case "text":
|
|
return "agent";
|
|
case "thinking":
|
|
return "thinking";
|
|
case "tool_use":
|
|
return "tool";
|
|
case "tool_result":
|
|
return "result";
|
|
case "error":
|
|
return "error";
|
|
default:
|
|
return "result";
|
|
}
|
|
}
|
|
|
|
const colorClasses: Record<EventColor, { bg: string; bgActive: string; label: string }> = {
|
|
agent: { bg: "bg-emerald-400/60", bgActive: "bg-emerald-500", label: "bg-emerald-500" },
|
|
thinking: { bg: "bg-violet-400/60", bgActive: "bg-violet-500", label: "bg-violet-500/20 text-violet-700 dark:text-violet-300" },
|
|
tool: { bg: "bg-blue-400/60", bgActive: "bg-blue-500", label: "bg-blue-500/20 text-blue-700 dark:text-blue-300" },
|
|
result: { bg: "bg-slate-300/60 dark:bg-slate-600/60", bgActive: "bg-slate-400 dark:bg-slate-500", label: "bg-muted text-muted-foreground" },
|
|
error: { bg: "bg-red-400/60", bgActive: "bg-red-500", label: "bg-red-500/20 text-red-700 dark:text-red-300" },
|
|
};
|
|
|
|
// ─── Helpers ────────────────────────────────────────────────────────────────
|
|
// Presentation rules (kind/label/summary/default expansion) live in the pure
|
|
// trace-event-presenter module; only view-plumbing helpers remain here.
|
|
|
|
function getItemFilterKey(item: TimelineItem): TranscriptFilterKey {
|
|
return item.tool && (item.type === "tool_use" || item.type === "tool_result")
|
|
? `tool:${item.tool}`
|
|
: item.type;
|
|
}
|
|
|
|
function formatDuration(start: string, end: string): string {
|
|
const ms = new Date(end).getTime() - new Date(start).getTime();
|
|
const seconds = Math.floor(ms / 1000);
|
|
if (seconds < 60) return `${seconds}s`;
|
|
const minutes = Math.floor(seconds / 60);
|
|
const secs = seconds % 60;
|
|
return `${minutes}m ${secs}s`;
|
|
}
|
|
|
|
function formatElapsedMs(ms: number): string {
|
|
const seconds = Math.floor(ms / 1000);
|
|
if (seconds < 60) return `${seconds}s`;
|
|
const minutes = Math.floor(seconds / 60);
|
|
const secs = seconds % 60;
|
|
return `${minutes}m ${secs}s`;
|
|
}
|
|
|
|
function formatRunTime(iso: string): string {
|
|
return new Date(iso).toLocaleString(undefined, {
|
|
month: "short",
|
|
day: "numeric",
|
|
hour: "2-digit",
|
|
minute: "2-digit",
|
|
second: "2-digit",
|
|
});
|
|
}
|
|
|
|
// ─── Run detail row (ⓘ popover) ─────────────────────────────────────────────
|
|
// One labeled fact in the diagnostic popover. When `onCopy` is given the whole
|
|
// row is a copy button (used for the workdir path).
|
|
function RunDetailRow({
|
|
label,
|
|
value,
|
|
mono,
|
|
onCopy,
|
|
copied,
|
|
copyTitle,
|
|
}: {
|
|
label: string;
|
|
value: string;
|
|
mono?: boolean;
|
|
onCopy?: () => void;
|
|
copied?: boolean;
|
|
copyTitle?: string;
|
|
}) {
|
|
const valueClass = cn("min-w-0 select-text break-all text-foreground/80", mono && "font-mono");
|
|
if (onCopy) {
|
|
return (
|
|
<button
|
|
type="button"
|
|
onClick={onCopy}
|
|
title={copyTitle}
|
|
className="group -mx-1 grid w-[calc(100%+0.5rem)] grid-cols-[4.5rem_minmax(0,1fr)] items-start gap-3 rounded px-1 py-0.5 text-left transition-colors hover:bg-accent/60"
|
|
>
|
|
<span className="text-muted-foreground">{label}</span>
|
|
<span className="flex min-w-0 items-start gap-1.5">
|
|
<span className={cn(valueClass, "flex-1")}>{value}</span>
|
|
{copied ? (
|
|
<Check className="mt-0.5 h-3 w-3 shrink-0 text-success" />
|
|
) : (
|
|
<Copy className="mt-0.5 h-3 w-3 shrink-0 opacity-0 transition-opacity group-hover:opacity-100" />
|
|
)}
|
|
</span>
|
|
</button>
|
|
);
|
|
}
|
|
return (
|
|
<div className="grid grid-cols-[4.5rem_minmax(0,1fr)] items-start gap-3">
|
|
<span className="text-muted-foreground">{label}</span>
|
|
<span className={valueClass}>{value}</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// ─── Main dialog ────────────────────────────────────────────────────────────
|
|
|
|
// Virtuoso mounts rows as direct children of its List element; carry the
|
|
// divider styling the plain list container used to provide. Defined at module
|
|
// scope — an inline `components` object would remount the list every render.
|
|
const VirtuosoList = forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>(
|
|
function VirtuosoList(props, ref) {
|
|
return <div ref={ref} {...props} className="divide-y" />;
|
|
},
|
|
);
|
|
const LIST_COMPONENTS: Components<TimelineItem> = { List: VirtuosoList };
|
|
|
|
export function AgentTranscriptDialog({
|
|
open,
|
|
onOpenChange,
|
|
task,
|
|
items,
|
|
agentName,
|
|
isLive = false,
|
|
headerSlot,
|
|
}: AgentTranscriptDialogProps) {
|
|
const { t } = useT("agents");
|
|
const [selectedSeq, setSelectedSeq] = useState<number | null>(null);
|
|
const [elapsed, setElapsed] = useState("");
|
|
const [copied, setCopied] = useState(false);
|
|
const [copiedWorkdir, setCopiedWorkdir] = useState(false);
|
|
const [agentInfo, setAgentInfo] = useState<Agent | null>(null);
|
|
const [runtimeInfo, setRuntimeInfo] = useState<AgentRuntime | null>(null);
|
|
// Row-level expand overrides. A row the user toggled follows the toggle; any
|
|
// other row follows the density preference (see traceEventDefaultExpanded).
|
|
// Switching density or task resets the overrides wholesale.
|
|
const [rowOverrides, setRowOverrides] = useState<Map<number, boolean>>(() => new Map());
|
|
const sortDirection = useTranscriptViewStore((s) => s.sortDirection);
|
|
const setSortDirection = useTranscriptViewStore((s) => s.setSortDirection);
|
|
// Filters always persist across opens — a facet a run doesn't have simply
|
|
// no-ops (see activeFilterKeys), so there is no reason to make persistence a
|
|
// user-facing toggle.
|
|
const selectedFilterKeys = useTranscriptViewStore((s) => s.selectedFilterKeys);
|
|
const toggleFilterKey = useTranscriptViewStore((s) => s.toggleFilterKey);
|
|
const clearFilters = useTranscriptViewStore((s) => s.clearFilterKeys);
|
|
const density = useTranscriptViewStore((s) => s.density);
|
|
const setDensity = useTranscriptViewStore((s) => s.setDensity);
|
|
const virtuosoRef = useRef<VirtuosoHandle>(null);
|
|
|
|
useEffect(() => {
|
|
setRowOverrides(new Map());
|
|
}, [task.id, density]);
|
|
|
|
// Derive filter options from each item:
|
|
// tool_use / tool_result → filter value = tool, display = "tool:Bash"
|
|
// other types → display from traceEventLabel
|
|
const filterOptions = useMemo(() => {
|
|
const options = new Map<string, string>();
|
|
for (const item of items) {
|
|
const key = getItemFilterKey(item);
|
|
if (item.tool && (item.type === "tool_use" || item.type === "tool_result")) {
|
|
if (!options.has(key)) options.set(key, key);
|
|
} else {
|
|
if (!options.has(key)) {
|
|
options.set(key, traceEventLabel(item));
|
|
}
|
|
}
|
|
}
|
|
return Array.from(options.entries()).sort((a, b) => a[1].localeCompare(b[1]));
|
|
}, [items]);
|
|
|
|
const filterOptionKeys = useMemo(
|
|
() => new Set(filterOptions.map(([value]) => value)),
|
|
[filterOptions],
|
|
);
|
|
|
|
const activeFilterKeys = useMemo(
|
|
() => selectedFilterKeys.filter((key) => filterOptionKeys.has(key)),
|
|
[selectedFilterKeys, filterOptionKeys],
|
|
);
|
|
|
|
const activeFilterSet = useMemo(() => new Set(activeFilterKeys), [activeFilterKeys]);
|
|
|
|
// Strict filter
|
|
const filteredItems = useMemo(() => {
|
|
if (activeFilterSet.size === 0) return items;
|
|
return items.filter((item) => activeFilterSet.has(getItemFilterKey(item)));
|
|
}, [items, activeFilterSet]);
|
|
|
|
// Apply user-chosen sort direction. Reverse is a pure presentation concern —
|
|
// the underlying timeline (and its seq numbers) is untouched, so copy/filter
|
|
// and segment navigation continue to work against the same data.
|
|
const displayItems = useMemo(
|
|
() => (sortDirection === "newest_first" ? [...filteredItems].reverse() : filteredItems),
|
|
[filteredItems, sortDirection],
|
|
);
|
|
const isAntigravityLiveEmpty =
|
|
isLive && displayItems.length === 0 && runtimeInfo?.provider === "antigravity";
|
|
|
|
// Newest-first shows live events as PREPENDS, and Virtuoso items opt out of
|
|
// native scroll anchoring (`overflow-anchor: none`), so without compensation
|
|
// every 500ms flush shifts the reading position. Virtuoso's contract: a
|
|
// decrease of firstItemIndex by N anchors the viewport across an N-item
|
|
// prepend, and the value must never increase within an instance — counting
|
|
// down from a large base satisfies that while the list only grows. Sort,
|
|
// filter, or task changes can shrink the list, so `listEpoch` remounts the
|
|
// instance (fresh at top) instead of letting firstItemIndex climb.
|
|
// `scrollToIndex`/`computeItemKey` are unaffected: indices stay data-relative
|
|
// (verified against scrollToIndexSystem — it never reads firstItemIndex).
|
|
const firstItemIndex =
|
|
sortDirection === "newest_first" ? 1_000_000 - displayItems.length : 0;
|
|
const listEpoch = `${task.id}:${sortDirection}:${activeFilterKeys.join(",")}`;
|
|
|
|
// Toggling direction is a manual user action; jump the scroll container back
|
|
// to the top so the newest end of the timeline (per the chosen direction) is
|
|
// immediately visible. Avoids stranding the user mid-scroll on the wrong end.
|
|
const handleSortDirectionChange = useCallback(
|
|
(dir: typeof sortDirection) => {
|
|
if (dir === sortDirection) return;
|
|
setSortDirection(dir);
|
|
virtuosoRef.current?.scrollTo({ top: 0 });
|
|
},
|
|
[sortDirection, setSortDirection],
|
|
);
|
|
|
|
// Fetch agent and runtime metadata when dialog opens
|
|
useEffect(() => {
|
|
if (!open) return;
|
|
let cancelled = false;
|
|
|
|
if (task.agent_id) {
|
|
api.getAgent(task.agent_id).then((agent) => {
|
|
if (!cancelled) setAgentInfo(agent);
|
|
}).catch(() => {});
|
|
}
|
|
|
|
if (task.runtime_id) {
|
|
api.listRuntimes().then((runtimes) => {
|
|
if (cancelled) return;
|
|
const rt = runtimes.find((r) => r.id === task.runtime_id);
|
|
if (rt) setRuntimeInfo(rt);
|
|
}).catch(() => {});
|
|
}
|
|
|
|
return () => { cancelled = true; };
|
|
}, [open, task.agent_id, task.runtime_id]);
|
|
|
|
// Elapsed time for live tasks
|
|
useEffect(() => {
|
|
if (!isLive || (!task.started_at && !task.dispatched_at)) return;
|
|
const startRef = task.started_at ?? task.dispatched_at!;
|
|
const update = () => setElapsed(formatElapsedMs(Date.now() - new Date(startRef).getTime()));
|
|
update();
|
|
const interval = setInterval(update, 1000);
|
|
return () => clearInterval(interval);
|
|
}, [isLive, task.started_at, task.dispatched_at]);
|
|
|
|
// Rows are virtualized, so an off-screen target is not in the DOM;
|
|
// navigate by index instead of a node ref.
|
|
const handleSegmentClick = useCallback(
|
|
(seq: number) => {
|
|
setSelectedSeq(seq);
|
|
const index = displayItems.findIndex((item) => item.seq === seq);
|
|
if (index < 0) return;
|
|
virtuosoRef.current?.scrollToIndex({ index, align: "center", behavior: "smooth" });
|
|
},
|
|
[displayItems],
|
|
);
|
|
|
|
// Copy all events as text. Use the displayed order so users get the same
|
|
// sequence they see on screen — matters when sort is set to newest-first.
|
|
const handleCopyWorkdir = useCallback(() => {
|
|
if (!task.relative_work_dir) return;
|
|
void copyText(task.relative_work_dir).then((ok) => {
|
|
if (!ok) return;
|
|
setCopiedWorkdir(true);
|
|
setTimeout(() => setCopiedWorkdir(false), 2000);
|
|
});
|
|
}, [task.relative_work_dir]);
|
|
|
|
const handleCopyAll = useCallback(() => {
|
|
// Copy the full body of each event (not the truncated row summary), with
|
|
// the same secret redaction the detail view applies.
|
|
const text = displayItems
|
|
.map((item) => redactSecrets(traceEventCopyText(item)))
|
|
.join("\n\n");
|
|
void copyText(text).then((ok) => {
|
|
if (!ok) return;
|
|
setCopied(true);
|
|
setTimeout(() => setCopied(false), 2000);
|
|
});
|
|
}, [displayItems]);
|
|
|
|
|
|
const handleRowExpandedChange = useCallback((seq: number, expanded: boolean) => {
|
|
setRowOverrides((prev) => {
|
|
const next = new Map(prev);
|
|
next.set(seq, expanded);
|
|
return next;
|
|
});
|
|
}, []);
|
|
|
|
// Duration
|
|
const duration =
|
|
task.started_at && task.completed_at
|
|
? formatDuration(task.started_at, task.completed_at)
|
|
: isLive
|
|
? elapsed
|
|
: null;
|
|
|
|
const copyTranscriptLabel = copied
|
|
? t(($) => $.transcript.copied)
|
|
: activeFilterKeys.length > 0
|
|
? t(($) => $.transcript.copy_filtered)
|
|
: t(($) => $.transcript.copy_all);
|
|
|
|
// Status badge — full state machine, so queued/dispatched/cancelled render as
|
|
// proper labels instead of raw enum text.
|
|
const effectiveStatus = isLive ? "running" : task.status;
|
|
const statusBadge = (() => {
|
|
const base = "inline-flex shrink-0 items-center gap-1 rounded-full px-2 py-0.5 text-xs font-medium";
|
|
switch (effectiveStatus) {
|
|
case "running":
|
|
return (
|
|
<span className={cn(base, "bg-info/15 text-info")}>
|
|
<Loader2 className="h-3 w-3 animate-spin" />
|
|
{t(($) => $.transcript.status_running)}
|
|
</span>
|
|
);
|
|
case "completed":
|
|
return (
|
|
<span className={cn(base, "bg-success/15 text-success")}>
|
|
<CheckCircle2 className="h-3 w-3" />
|
|
{t(($) => $.transcript.status_completed)}
|
|
</span>
|
|
);
|
|
case "failed":
|
|
return (
|
|
<span className={cn(base, "bg-destructive/15 text-destructive")}>
|
|
<XCircle className="h-3 w-3" />
|
|
{t(($) => $.transcript.status_failed)}
|
|
</span>
|
|
);
|
|
case "cancelled":
|
|
return (
|
|
<span className={cn(base, "bg-muted text-muted-foreground")}>
|
|
<XCircle className="h-3 w-3" />
|
|
{t(($) => $.transcript.status_cancelled)}
|
|
</span>
|
|
);
|
|
case "queued":
|
|
return (
|
|
<span className={cn(base, "bg-muted text-muted-foreground")}>
|
|
{t(($) => $.transcript.status_queued)}
|
|
</span>
|
|
);
|
|
case "dispatched":
|
|
return (
|
|
<span className={cn(base, "bg-info/15 text-info")}>
|
|
{t(($) => $.transcript.status_dispatched)}
|
|
</span>
|
|
);
|
|
case "waiting_local_directory":
|
|
return (
|
|
<span className={cn(base, "bg-muted text-muted-foreground")}>
|
|
{t(($) => $.transcript.status_waiting)}
|
|
</span>
|
|
);
|
|
default:
|
|
return (
|
|
<span className={cn(base, "bg-muted text-muted-foreground capitalize")}>
|
|
{task.status}
|
|
</span>
|
|
);
|
|
}
|
|
})();
|
|
|
|
// Trigger source: one word answering "why does this run exist" — more useful
|
|
// up front than the runtime/provider diagnostics, which move to the ⓘ popover.
|
|
const triggerLabel = task.parent_task_id
|
|
? t(($) => $.transcript.trigger_retry)
|
|
: task.kind === "comment" || task.trigger_comment_id
|
|
? t(($) => $.transcript.trigger_comment)
|
|
: task.kind === "autopilot" || task.autopilot_run_id
|
|
? t(($) => $.transcript.trigger_autopilot)
|
|
: task.kind === "chat" || task.chat_session_id
|
|
? t(($) => $.transcript.trigger_chat)
|
|
: task.kind === "quick_create"
|
|
? t(($) => $.transcript.trigger_quick_create)
|
|
: task.kind === "direct" || task.handoff_note
|
|
? t(($) => $.transcript.trigger_direct)
|
|
: t(($) => $.transcript.trigger_initial);
|
|
|
|
// Diagnostic detail for the ⓘ popover: everything a reader needs only when
|
|
// debugging this specific run, kept off the always-visible surface.
|
|
const providerLabel = runtimeInfo?.provider ? formatProvider(runtimeInfo.provider) : null;
|
|
const createdLabel = task.created_at ? formatRunTime(task.created_at) : null;
|
|
const startedLabel = task.started_at ? formatRunTime(task.started_at) : null;
|
|
const completedLabel = task.completed_at ? formatRunTime(task.completed_at) : null;
|
|
// "When was this run created" — a read-before-you-read fact worth the toolbar
|
|
// surface (the ⓘ popover keeps the full-precision created/started/completed).
|
|
const createdShort = task.created_at
|
|
? new Date(task.created_at).toLocaleString(undefined, {
|
|
month: "short",
|
|
day: "numeric",
|
|
hour: "2-digit",
|
|
minute: "2-digit",
|
|
})
|
|
: null;
|
|
const hasTriggeredBy = !!task.attribution?.initiator;
|
|
const hasRunDetails =
|
|
!!runtimeInfo ||
|
|
!!task.relative_work_dir ||
|
|
!!createdLabel ||
|
|
!!startedLabel ||
|
|
!!completedLabel;
|
|
|
|
return (
|
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
|
<DialogContent
|
|
className="!max-w-4xl !w-[calc(100vw-4rem)] !max-h-[calc(100vh-4rem)] !h-[calc(100vh-4rem)] flex flex-col !p-0 !gap-0 overflow-hidden"
|
|
showCloseButton={false}
|
|
>
|
|
<DialogTitle className="sr-only">{t(($) => $.transcript.dialog_title)}</DialogTitle>
|
|
|
|
{/* ── Header: identity only ──────────────────────────────────
|
|
Tier 1 — everything a viewer needs BEFORE reading: outcome
|
|
(status anchors the left), who ran it, why it exists (trigger),
|
|
and who's accountable. All diagnostics move to the ⓘ popover. */}
|
|
<div className="border-b px-4 py-3 shrink-0">
|
|
<div className="flex min-w-0 items-center gap-3">
|
|
{statusBadge}
|
|
{/* Primary identity: the agent that ran this. It is the one
|
|
foreground entity — avatar + medium weight. */}
|
|
<div className="flex min-w-0 items-center gap-2">
|
|
{task.agent_id ? (
|
|
<ActorAvatar actorType="agent" actorId={task.agent_id} size="sm" enableHoverCard />
|
|
) : (
|
|
<div className="flex h-5 w-5 shrink-0 items-center justify-center rounded-full bg-info/10 text-info">
|
|
<Bot className="h-3 w-3" />
|
|
</div>
|
|
)}
|
|
<span className="truncate font-medium text-sm">
|
|
{agentName || agentInfo?.name || ""}
|
|
</span>
|
|
</div>
|
|
{/* Provenance, one muted secondary unit set apart from the agent:
|
|
who triggered the run and how — reads as "<person> · <how>",
|
|
not three peer entities. The person's avatar is dropped here so
|
|
two same-size faces don't read as two agents. */}
|
|
<div className="flex min-w-0 flex-1 items-center gap-x-1.5 overflow-hidden text-xs text-muted-foreground">
|
|
{hasTriggeredBy && (
|
|
<>
|
|
<AttributionBadge
|
|
attribution={task.attribution}
|
|
variant="inline"
|
|
hideAvatar
|
|
className="min-w-0"
|
|
/>
|
|
<FactDot />
|
|
</>
|
|
)}
|
|
<span className="shrink-0">{triggerLabel}</span>
|
|
</div>
|
|
|
|
<div className="flex shrink-0 items-center gap-0.5">
|
|
{hasRunDetails && (
|
|
<Popover>
|
|
<PopoverTrigger
|
|
render={
|
|
<Button
|
|
variant="ghost"
|
|
size="icon-sm"
|
|
aria-label={t(($) => $.transcript.run_info)}
|
|
title={t(($) => $.transcript.run_info)}
|
|
className="text-muted-foreground"
|
|
/>
|
|
}
|
|
>
|
|
<Info className="h-3.5 w-3.5" />
|
|
</PopoverTrigger>
|
|
<PopoverContent align="end" className="w-80 max-w-[calc(100vw-2rem)] p-3">
|
|
<div className="mb-2 text-xs font-medium text-foreground">
|
|
{t(($) => $.transcript.run_info)}
|
|
</div>
|
|
<div className="space-y-1 text-xs">
|
|
{runtimeInfo && (
|
|
<RunDetailRow label={t(($) => $.transcript.details_runtime)} value={runtimeInfo.name} />
|
|
)}
|
|
{providerLabel && (
|
|
<RunDetailRow label={t(($) => $.transcript.details_provider)} value={providerLabel} />
|
|
)}
|
|
{runtimeInfo && (
|
|
<RunDetailRow label={t(($) => $.transcript.details_mode)} value={runtimeInfo.runtime_mode} />
|
|
)}
|
|
{task.relative_work_dir && (
|
|
<RunDetailRow
|
|
label={t(($) => $.transcript.details_workdir)}
|
|
value={task.relative_work_dir}
|
|
mono
|
|
onCopy={handleCopyWorkdir}
|
|
copied={copiedWorkdir}
|
|
copyTitle={t(($) => $.transcript.copy_workdir)}
|
|
/>
|
|
)}
|
|
{createdLabel && (
|
|
<RunDetailRow label={t(($) => $.transcript.details_created)} value={createdLabel} />
|
|
)}
|
|
{startedLabel && (
|
|
<RunDetailRow label={t(($) => $.transcript.details_started)} value={startedLabel} />
|
|
)}
|
|
{completedLabel && (
|
|
<RunDetailRow label={t(($) => $.transcript.details_completed)} value={completedLabel} />
|
|
)}
|
|
</div>
|
|
</PopoverContent>
|
|
</Popover>
|
|
)}
|
|
<Button
|
|
variant="ghost"
|
|
size="icon-sm"
|
|
onClick={() => onOpenChange(false)}
|
|
aria-label={t(($) => $.transcript.close)}
|
|
className="text-muted-foreground"
|
|
>
|
|
<X className="h-4 w-4" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* ── List toolbar: read-before-you-read summary (left) + controls
|
|
(right). Duration + event count fill the left, so the row balances
|
|
instead of leaving dead space. ── */}
|
|
<div className="flex items-center gap-3 border-b px-4 py-1.5 shrink-0">
|
|
<div className="flex min-w-0 flex-1 items-center gap-x-1.5 overflow-hidden whitespace-nowrap text-xs text-muted-foreground">
|
|
{createdShort && (
|
|
<>
|
|
<span>{t(($) => $.transcript.fact_created, { time: createdShort })}</span>
|
|
<FactDot />
|
|
</>
|
|
)}
|
|
{duration && (
|
|
<>
|
|
<span>{t(($) => $.transcript.fact_took, { duration })}</span>
|
|
<FactDot />
|
|
</>
|
|
)}
|
|
<span>
|
|
{activeFilterKeys.length > 0
|
|
? t(($) => $.transcript.events_filtered, { shown: filteredItems.length, total: items.length })
|
|
: t(($) => $.transcript.events, { count: items.length })}
|
|
</span>
|
|
</div>
|
|
<div className="flex shrink-0 items-center gap-1">
|
|
{items.length > 0 && (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger
|
|
render={
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
aria-label={t(($) => $.transcript.density_label)}
|
|
className="text-muted-foreground"
|
|
/>
|
|
}
|
|
>
|
|
<ListCollapse className="h-3 w-3" />
|
|
<span className="hidden sm:inline">
|
|
{density === "smart"
|
|
? t(($) => $.transcript.density_smart)
|
|
: density === "expanded"
|
|
? t(($) => $.transcript.density_expanded)
|
|
: t(($) => $.transcript.density_collapsed)}
|
|
</span>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end" className="w-64">
|
|
<DropdownMenuRadioGroup
|
|
value={density}
|
|
onValueChange={(value) => setDensity(value as TranscriptDetailDensity)}
|
|
>
|
|
{(
|
|
[
|
|
["smart", t(($) => $.transcript.density_smart), t(($) => $.transcript.density_smart_desc)],
|
|
["expanded", t(($) => $.transcript.density_expanded), t(($) => $.transcript.density_expanded_desc)],
|
|
["collapsed", t(($) => $.transcript.density_collapsed), t(($) => $.transcript.density_collapsed_desc)],
|
|
] as const
|
|
).map(([value, name, description]) => (
|
|
<DropdownMenuRadioItem key={value} value={value} className="items-start">
|
|
<span className="flex min-w-0 flex-col gap-0.5">
|
|
<span>{name}</span>
|
|
<span className="text-[11px] leading-snug text-muted-foreground">
|
|
{description}
|
|
</span>
|
|
</span>
|
|
</DropdownMenuRadioItem>
|
|
))}
|
|
</DropdownMenuRadioGroup>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
)}
|
|
{items.length > 1 && (
|
|
<SortDirectionToggle
|
|
value={sortDirection}
|
|
onChange={handleSortDirectionChange}
|
|
labels={{
|
|
chronological: t(($) => $.transcript.sort_chronological),
|
|
newestFirst: t(($) => $.transcript.sort_newest_first),
|
|
ariaLabel: t(($) => $.transcript.sort_label),
|
|
}}
|
|
/>
|
|
)}
|
|
{filterOptions.length > 0 && (
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger
|
|
render={
|
|
<Button
|
|
variant={activeFilterKeys.length > 0 ? "brand" : "ghost"}
|
|
size="sm"
|
|
aria-label={t(($) => $.transcript.filter)}
|
|
className={activeFilterKeys.length > 0 ? undefined : "text-muted-foreground"}
|
|
/>
|
|
}
|
|
>
|
|
<Filter className="h-3 w-3" />
|
|
<span className="hidden sm:inline">{t(($) => $.transcript.filter)}</span>
|
|
{activeFilterKeys.length > 0 && (
|
|
<span className="ml-0.5 rounded-full bg-brand-foreground/20 px-1.5 py-0 text-[10px] font-medium tabular-nums">
|
|
{activeFilterKeys.length}
|
|
</span>
|
|
)}
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent align="end" className="w-auto">
|
|
{filterOptions.map(([value, label]) => (
|
|
<DropdownMenuCheckboxItem
|
|
key={value}
|
|
checked={selectedFilterKeys.includes(value)}
|
|
onCheckedChange={() => toggleFilterKey(value)}
|
|
>
|
|
{label}
|
|
</DropdownMenuCheckboxItem>
|
|
))}
|
|
{selectedFilterKeys.length > 0 && (
|
|
<>
|
|
<DropdownMenuSeparator />
|
|
<DropdownMenuItem onClick={clearFilters} className="text-muted-foreground">
|
|
{t(($) => $.transcript.clear_filters)}
|
|
</DropdownMenuItem>
|
|
</>
|
|
)}
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
)}
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
onClick={handleCopyAll}
|
|
aria-label={copyTranscriptLabel}
|
|
className="text-muted-foreground"
|
|
>
|
|
{copied ? <Check className="h-3 w-3" /> : <Copy className="h-3 w-3" />}
|
|
<span className="hidden sm:inline">{copyTranscriptLabel}</span>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
{/* ── Timeline progress bar ─────────────────────────────── */}
|
|
{displayItems.length > 0 && (
|
|
<div className="border-b px-4 py-2.5 shrink-0">
|
|
<TimelineBar
|
|
items={displayItems}
|
|
selectedSeq={selectedSeq}
|
|
onSegmentClick={handleSegmentClick}
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{/* ── Optional header slot (e.g. webhook payload preview) ── */}
|
|
{headerSlot && (
|
|
<div className="border-b px-4 py-3 shrink-0 bg-muted/20">
|
|
{headerSlot}
|
|
</div>
|
|
)}
|
|
|
|
{/* ── Event list ─────────────────────────────────────────── */}
|
|
<div className="flex-1 min-h-0">
|
|
{displayItems.length === 0 ? (
|
|
<div className="flex items-center justify-center h-full text-sm text-muted-foreground">
|
|
{isAntigravityLiveEmpty ? (
|
|
<div className="flex max-w-md items-center gap-2 px-4 text-center">
|
|
<Clock className="h-4 w-4 shrink-0" />
|
|
{t(($) => $.transcript.antigravity_live_unavailable)}
|
|
</div>
|
|
) : isLive ? (
|
|
<div className="flex items-center gap-2">
|
|
<Loader2 className="h-4 w-4 animate-spin" />
|
|
{t(($) => $.transcript.waiting_events)}
|
|
</div>
|
|
) : (
|
|
t(($) => $.transcript.no_data)
|
|
)}
|
|
</div>
|
|
) : (
|
|
// Virtualized so a multi-thousand-event run mounts a bounded number
|
|
// of DOM rows (#5733). Rows expand/collapse to variable heights;
|
|
// Virtuoso re-measures them via ResizeObserver.
|
|
<Virtuoso
|
|
key={listEpoch}
|
|
ref={virtuosoRef}
|
|
style={{ height: "100%" }}
|
|
data={displayItems}
|
|
firstItemIndex={firstItemIndex}
|
|
computeItemKey={(_, item) => item.seq}
|
|
components={LIST_COMPONENTS}
|
|
itemContent={(_, item) => (
|
|
<TranscriptEventRow
|
|
item={item}
|
|
isSelected={selectedSeq === item.seq}
|
|
expanded={
|
|
rowOverrides.get(item.seq) ?? traceEventDefaultExpanded(item, density)
|
|
}
|
|
onExpandedChange={(expanded) => handleRowExpandedChange(item.seq, expanded)}
|
|
/>
|
|
)}
|
|
/>
|
|
)}
|
|
</div>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|
|
|
|
// ─── Sort direction toggle ──────────────────────────────────────────────────
|
|
|
|
interface SortDirectionToggleProps {
|
|
value: TranscriptSortDirection;
|
|
onChange: (dir: TranscriptSortDirection) => void;
|
|
labels: { chronological: string; newestFirst: string; ariaLabel: string };
|
|
}
|
|
|
|
// Sort is a two-state toggle, not a mode picker: one button showing the
|
|
// current direction that flips on click. Shares the toolbar button chassis so
|
|
// it reads as the same control family as density/filter/copy — no tab strip.
|
|
function SortDirectionToggle({ value, onChange, labels }: SortDirectionToggleProps) {
|
|
const isChronological = value === "chronological";
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
onClick={() => onChange(isChronological ? "newest_first" : "chronological")}
|
|
aria-label={labels.ariaLabel}
|
|
title={labels.ariaLabel}
|
|
className="text-muted-foreground"
|
|
>
|
|
{isChronological ? (
|
|
<ArrowDownNarrowWide className="h-3 w-3" />
|
|
) : (
|
|
<ArrowUpNarrowWide className="h-3 w-3" />
|
|
)}
|
|
<span className="hidden sm:inline">
|
|
{isChronological ? labels.chronological : labels.newestFirst}
|
|
</span>
|
|
</Button>
|
|
);
|
|
}
|
|
|
|
// ─── Facts line separator ───────────────────────────────────────────────────
|
|
|
|
function FactDot() {
|
|
return (
|
|
<span aria-hidden className="text-muted-foreground/40">
|
|
·
|
|
</span>
|
|
);
|
|
}
|
|
|
|
function formatProvider(provider: string): string {
|
|
const map: Record<string, string> = {
|
|
claude: "Claude Code",
|
|
"claude-code": "Claude Code",
|
|
codex: "Codex",
|
|
pi: "Pi",
|
|
};
|
|
return map[provider.toLowerCase()] ?? provider;
|
|
}
|
|
|
|
// ─── Timeline bar (colored segments) ────────────────────────────────────────
|
|
|
|
function TimelineBar({
|
|
items,
|
|
selectedSeq,
|
|
onSegmentClick,
|
|
}: {
|
|
items: TimelineItem[];
|
|
selectedSeq: number | null;
|
|
onSegmentClick: (seq: number) => void;
|
|
}) {
|
|
const segments: { startIdx: number; endIdx: number; color: EventColor; count: number }[] = [];
|
|
let currentColor: EventColor | null = null;
|
|
let currentStart = 0;
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
const item = items[i]!;
|
|
const color = getEventColor(item);
|
|
if (color !== currentColor) {
|
|
if (currentColor !== null) {
|
|
segments.push({ startIdx: currentStart, endIdx: i - 1, color: currentColor, count: i - currentStart });
|
|
}
|
|
currentColor = color;
|
|
currentStart = i;
|
|
}
|
|
}
|
|
if (currentColor !== null) {
|
|
segments.push({ startIdx: currentStart, endIdx: items.length - 1, color: currentColor, count: items.length - currentStart });
|
|
}
|
|
|
|
return (
|
|
<div className="flex gap-0.5 h-5 rounded overflow-hidden" role="navigation" aria-label="Timeline">
|
|
{segments.map((seg) => {
|
|
const isSelected = selectedSeq !== null && items.slice(seg.startIdx, seg.endIdx + 1).some((i) => i.seq === selectedSeq);
|
|
const color = colorClasses[seg.color];
|
|
const widthPercent = (seg.count / items.length) * 100;
|
|
|
|
return (
|
|
<button
|
|
type="button"
|
|
key={seg.startIdx}
|
|
className={cn(
|
|
"h-full transition-all duration-150 hover:opacity-80 relative group",
|
|
isSelected ? color.bgActive : color.bg,
|
|
"min-w-[4px]",
|
|
)}
|
|
style={{ width: `${Math.max(widthPercent, 0.5)}%` }}
|
|
onClick={() => onSegmentClick(items[seg.startIdx]!.seq)}
|
|
title={`${traceEventLabel(items[seg.startIdx]!)}${seg.count > 1 ? ` (+${seg.count - 1} more)` : ""}`}
|
|
>
|
|
<div className="absolute bottom-full left-1/2 -translate-x-1/2 mb-1 hidden group-hover:block z-10 pointer-events-none">
|
|
<div className="rounded bg-popover border px-2 py-1 text-[10px] text-popover-foreground shadow-md whitespace-nowrap">
|
|
{traceEventLabel(items[seg.startIdx]!)}
|
|
{seg.count > 1 && <span className="text-muted-foreground ml-1">+{seg.count - 1}</span>}
|
|
</div>
|
|
</div>
|
|
</button>
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// ─── Transcript event row ───────────────────────────────────────────────────
|
|
|
|
interface TranscriptEventRowProps {
|
|
item: TimelineItem;
|
|
isSelected: boolean;
|
|
expanded: boolean;
|
|
onExpandedChange: (expanded: boolean) => void;
|
|
}
|
|
|
|
const TranscriptEventRow = ({
|
|
item,
|
|
isSelected,
|
|
expanded,
|
|
onExpandedChange,
|
|
}: TranscriptEventRowProps) => {
|
|
const { t } = useT("agents");
|
|
const kind = traceEventKind(item);
|
|
const color = getEventColor(item);
|
|
const label = traceEventLabel(item);
|
|
const summary = traceEventSummary(item);
|
|
const date = useMemo(
|
|
() => (item.created_at ? new Date(item.created_at) : null),
|
|
[item.created_at],
|
|
);
|
|
|
|
const hasDetail = traceEventHasDetail(item);
|
|
// Prose kinds swap the one-line summary for the full body in place when
|
|
// expanded (no box). Tool kinds keep the summary line and reveal the
|
|
// params/output surface below it.
|
|
const isProse = kind !== "tool_use" && kind !== "tool_result";
|
|
const showInlineBody = isProse && hasDetail && expanded;
|
|
|
|
return (
|
|
<div
|
|
className={cn(
|
|
"group transition-colors",
|
|
isSelected && "bg-accent/50",
|
|
kind === "error" && "bg-destructive/5",
|
|
)}
|
|
>
|
|
<Collapsible open={expanded} onOpenChange={onExpandedChange}>
|
|
<div className="flex items-start gap-2 px-4 py-2">
|
|
{/* Type label badge */}
|
|
<span
|
|
className={cn(
|
|
"inline-flex items-center shrink-0 rounded px-1.5 py-0.5 text-[11px] font-medium mt-0.5 min-w-[60px] justify-center",
|
|
colorClasses[color].label,
|
|
)}
|
|
>
|
|
{item.type === "thinking" && <Brain className="h-3 w-3 mr-1 shrink-0" />}
|
|
{item.type === "error" && <AlertCircle className="h-3 w-3 mr-1 shrink-0" />}
|
|
{label}
|
|
</span>
|
|
|
|
{showInlineBody ? (
|
|
<div className="flex flex-1 items-start gap-1.5 min-w-0">
|
|
<CollapsibleTrigger
|
|
aria-label={label}
|
|
className="shrink-0 mt-0.5 cursor-pointer rounded p-0.5 text-muted-foreground/50 transition-colors hover:text-foreground"
|
|
>
|
|
<ChevronRight className="h-3 w-3 rotate-90 transition-transform" />
|
|
</CollapsibleTrigger>
|
|
<div className="flex-1 min-w-0">
|
|
{kind === "agent" ? (
|
|
<RichContent
|
|
content={item.content ?? ""}
|
|
density="compact"
|
|
className="transcript-prose"
|
|
/>
|
|
) : (
|
|
<div
|
|
className={cn(
|
|
"whitespace-pre-wrap break-words text-xs leading-relaxed",
|
|
kind === "error" ? "text-destructive" : "text-muted-foreground",
|
|
)}
|
|
>
|
|
{item.content ?? ""}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<CollapsibleTrigger
|
|
className={cn(
|
|
"flex-1 text-left text-xs min-w-0 py-0.5 transition-colors",
|
|
hasDetail ? "cursor-pointer hover:text-foreground" : "cursor-default",
|
|
kind === "error" ? "text-destructive" : "text-muted-foreground",
|
|
)}
|
|
disabled={!hasDetail}
|
|
>
|
|
<div className="flex items-start gap-1.5">
|
|
{hasDetail && (
|
|
<ChevronRight
|
|
className={cn(
|
|
"h-3 w-3 shrink-0 mt-0.5 text-muted-foreground/50 transition-transform",
|
|
expanded && "rotate-90",
|
|
)}
|
|
/>
|
|
)}
|
|
<span
|
|
className={cn(
|
|
"truncate",
|
|
traceEventSummaryIsMono(kind) && summary && "font-mono text-[11px]",
|
|
!summary && "text-muted-foreground/60",
|
|
)}
|
|
>
|
|
{summary || t(($) => $.transcript.no_output)}
|
|
</span>
|
|
</div>
|
|
</CollapsibleTrigger>
|
|
)}
|
|
|
|
{/* Seq number / index */}
|
|
<span className="shrink-0 text-[10px] text-muted-foreground/50 tabular-nums mt-1">
|
|
#{item.seq}
|
|
</span>
|
|
|
|
{/* Timestamp */}
|
|
{date && (
|
|
<span className="shrink-0 text-[10px] text-muted-foreground/50 tabular-nums mt-1" title={date.toLocaleString()}>
|
|
{date.toLocaleTimeString(undefined, {
|
|
hour: "2-digit",
|
|
minute: "2-digit",
|
|
second: "2-digit",
|
|
})}
|
|
</span>
|
|
)}
|
|
</div>
|
|
|
|
{/* Expanded params/output for tool kinds — a quiet, borderless surface
|
|
aligned to the content column. */}
|
|
{!isProse && hasDetail && (
|
|
<CollapsibleContent>
|
|
<div className="px-4 pb-3">
|
|
<div className="ml-[72px] rounded-md bg-muted/40">
|
|
<ToolDetailSurface
|
|
text={
|
|
kind === "tool_use"
|
|
? redactSecrets(JSON.stringify(item.input ?? {}, null, 2))
|
|
: item.output
|
|
? item.output.length > 4000
|
|
? redactSecrets(item.output.slice(0, 4000)) + "\n... (truncated)"
|
|
: redactSecrets(item.output)
|
|
: ""
|
|
}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</CollapsibleContent>
|
|
)}
|
|
</Collapsible>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
// ─── Tool detail surface ────────────────────────────────────────────────────
|
|
|
|
/**
|
|
* Long content fades out behind a "show all" affordance instead of trapping a
|
|
* nested scrollbar inside the virtualized list.
|
|
*/
|
|
function ToolDetailSurface({ text }: { text: string }) {
|
|
const { t } = useT("agents");
|
|
const [showAll, setShowAll] = useState(false);
|
|
const isLong = text.length > 1600 || text.split("\n").length > 14;
|
|
|
|
return (
|
|
<div className="relative">
|
|
<pre
|
|
className={cn(
|
|
"p-3 font-mono text-[11px] text-muted-foreground whitespace-pre-wrap break-all",
|
|
isLong && !showAll && "max-h-52 overflow-hidden",
|
|
)}
|
|
>
|
|
{text}
|
|
</pre>
|
|
{isLong && !showAll && (
|
|
<div className="absolute inset-x-0 bottom-0 flex h-12 items-end justify-center rounded-b-md bg-gradient-to-b from-transparent to-background">
|
|
<button
|
|
type="button"
|
|
onClick={() => setShowAll(true)}
|
|
className="mb-1.5 rounded px-2 py-0.5 text-[11px] text-muted-foreground transition-colors hover:bg-accent hover:text-foreground"
|
|
>
|
|
{t(($) => $.transcript.show_all)}
|
|
</button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|