import React from 'react'; import { RuntimeAPIContext } from '@/contexts/runtimeAPIContext'; import { RiArrowDownSLine, RiArrowRightSLine, RiExternalLinkLine } from '@remixicon/react'; import { File as PierreFile, PatchDiff } from '@pierre/diffs/react'; import { cn } from '@/lib/utils'; import { SimpleMarkdownRenderer } from '../../MarkdownRenderer'; import { getToolMetadata, getLanguageFromExtension, isImageFile, getImageMimeType } from '@/lib/toolHelpers'; import type { ToolPart as ToolPartType, ToolState as ToolStateUnion } from '@opencode-ai/sdk/v2'; import { toolDisplayStyles } from '@/lib/typography'; import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter'; import { useOptionalThemeSystem } from '@/contexts/useThemeSystem'; import { useDirectoryStore } from '@/stores/useDirectoryStore'; import { useSessionUIStore } from '@/sync/session-ui-store'; import { useSessionMessageRecords } from '@/sync/sync-context'; import { getSyncChildStores, getSyncDirectory } from '@/sync/sync-refs'; import { useUIStore } from '@/stores/useUIStore'; import { useSessionActivity } from '@/hooks/useSessionActivity'; import { opencodeClient } from '@/lib/opencode/client'; import { ScrollShadow } from '@/components/ui/ScrollShadow'; import { Text } from '@/components/ui/text'; import { FileTypeIcon } from '@/components/icons/FileTypeIcon'; import type { ContentChangeReason } from '@/hooks/useChatScrollManager'; import type { ToolPopupContent } from '../types'; import { ensurePierreThemeRegistered } from '@/lib/shiki/appThemeRegistry'; import { getDefaultTheme } from '@/lib/theme/themes'; import type { MessageRecord } from '@/lib/messageCompletion'; import { formatEditOutput, detectLanguageFromOutput, formatInputForDisplay, } from '../toolRenderers'; import { DiffViewToggle, type DiffViewMode } from '../DiffViewToggle'; import { MinDurationShineText } from './MinDurationShineText'; import { ToolRevealOnMount } from './ToolRevealOnMount'; import { getToolIcon } from './toolPresentation'; import { useDurationTickerNow } from './useDurationTicker'; type ToolStateWithMetadata = ToolStateUnion & { metadata?: Record; input?: Record; output?: string; error?: string; time?: { start: number; end?: number } }; interface ToolPartProps { part: ToolPartType; isExpanded: boolean; onToggle: (toolId: string) => void; syntaxTheme: { [key: string]: React.CSSProperties }; isMobile: boolean; onContentChange?: (reason?: ContentChangeReason) => void; onShowPopup?: (content: ToolPopupContent) => void; animateTailText?: boolean; } const getMultiFileDescription = ( metadata: Record | undefined, animate = true, showFileIcons = true, ): React.ReactNode => { const files = Array.isArray(metadata?.files) ? metadata?.files : []; if (files.length <= 1) return null; const parseCount = (value: unknown): number | null => { if (typeof value === 'number' && Number.isFinite(value)) { return Math.max(0, Math.trunc(value)); } if (typeof value === 'string') { const parsed = Number.parseInt(value, 10); if (Number.isFinite(parsed)) { return Math.max(0, parsed); } } return null; }; const combineCounts = (base: number | null, incoming: number | null): number | null => { if (base === null) return incoming; if (incoming === null) return base; return base + incoming; }; const entriesByPath = new Map(); for (const file of files) { const fileObj = file as { relativePath?: string; filePath?: string; additions?: unknown; deletions?: unknown }; const filePath = fileObj.relativePath || fileObj.filePath || ''; if (!filePath) continue; const fileName = filePath.split('/').pop() || filePath; const added = parseCount(fileObj.additions); const removed = parseCount(fileObj.deletions); const existing = entriesByPath.get(filePath); if (existing) { existing.added = combineCounts(existing.added, added); existing.removed = combineCounts(existing.removed, removed); continue; } entriesByPath.set(filePath, { path: filePath, name: fileName, added, removed }); } const entries = Array.from(entriesByPath.values()); return ( <> {entries.map((entry) => { const hasPerFileDiff = entry.added !== null || entry.removed !== null; return ( {showFileIcons ? : null} {entry.name} {hasPerFileDiff ? ( +{entry.added ?? 0} / -{entry.removed ?? 0} ) : null} ); })} ); }; const normalizeToolName = (toolName: string | undefined | null): string => { if (typeof toolName !== 'string') { return ''; } const trimmed = toolName.trim().toLowerCase(); if (!trimmed) { return ''; } if (trimmed.includes('.')) { const dotParts = trimmed.split('.').filter(Boolean); const last = dotParts[dotParts.length - 1]; if (last) return last; } return trimmed; }; const MAX_DURATION_MS = 5 * 60 * 1000; // 5 minutes cap const TASK_TOOL_POLL_FAST_MS = 1200; const TASK_TOOL_POLL_IDLE_MS = 3200; const TASK_TOOL_POLL_HIDDEN_MS = 6000; const TASK_TOOL_INITIAL_FETCH_LIMIT = 500; const TASK_TOOL_ACTIVE_FETCH_LIMIT = 160; const TASK_TOOL_IDLE_FETCH_LIMIT = 80; const TASK_TOOL_NO_CHANGE_BACKOFF_AFTER_POLLS = 3; const TASK_TOOL_SETTLE_GRACE_MS = 2500; const formatDuration = (start: number, end?: number, now: number = Date.now()) => { const duration = Math.min(Math.max(0, (end ?? now) - start), MAX_DURATION_MS); const seconds = duration / 1000; const displaySeconds = seconds < 0.05 && end !== undefined ? 0.1 : seconds; return `${displaySeconds.toFixed(1)}s`; }; const LiveDuration: React.FC<{ start: number; end?: number; active: boolean }> = ({ start, end, active }) => { const now = useDurationTickerNow(active, 250); return <>{formatDuration(start, end, now)}; }; const parseDiffStats = (metadata?: Record): { added: number; removed: number } | null => { if (!metadata?.diff || typeof metadata.diff !== 'string') return null; const lines = metadata.diff.split('\n'); let added = 0; let removed = 0; for (const line of lines) { if (line.startsWith('+') && !line.startsWith('+++')) added++; if (line.startsWith('-') && !line.startsWith('---')) removed++; } if (added === 0 && removed === 0) return null; return { added, removed }; }; const parseWriteLineCount = (input?: Record): number | null => { if (!input?.content || typeof input.content !== 'string') return null; const lines = input.content.split('\n'); return lines.length; }; const extractFirstChangedLineFromDiff = (diffText: string): number | undefined => { if (!diffText || typeof diffText !== 'string') { return undefined; } const lines = diffText.split('\n'); let currentNewLine: number | undefined; let firstHunkStart: number | undefined; for (const rawLine of lines) { const line = rawLine.replace(/\r$/, ''); const hunkMatch = line.match(/^@@\s+-\d+(?:,\d+)?\s+\+(\d+)(?:,\d+)?\s+@@/); if (hunkMatch) { const parsed = Number.parseInt(hunkMatch[1] ?? '', 10); if (Number.isFinite(parsed)) { currentNewLine = Math.max(1, parsed); if (!Number.isFinite(firstHunkStart)) { firstHunkStart = currentNewLine; } } continue; } if (currentNewLine === undefined || !Number.isFinite(currentNewLine)) { continue; } if (line.startsWith('+++') || line.startsWith('---') || line.startsWith('diff ')) { continue; } if (line.startsWith('+')) { return currentNewLine; } if (line.startsWith(' ')) { currentNewLine += 1; continue; } if (line.startsWith('-') || line.startsWith('\\')) { continue; } } return firstHunkStart; }; const getFirstChangedLineFromMetadata = (tool: string, metadata?: Record): number | undefined => { if (!metadata || (tool !== 'edit' && tool !== 'multiedit' && tool !== 'apply_patch')) { return undefined; } if (typeof metadata.diff === 'string') { const line = extractFirstChangedLineFromDiff(metadata.diff); if (Number.isFinite(line)) { return line; } } const files = Array.isArray(metadata.files) ? metadata.files : []; const firstFile = files[0] as { diff?: unknown } | undefined; if (typeof firstFile?.diff === 'string') { const line = extractFirstChangedLineFromDiff(firstFile.diff); if (Number.isFinite(line)) { return line; } } return undefined; }; const getPrimaryDiffFromMetadata = ( tool: string, metadata?: Record, preferredPath?: string, ): string | undefined => { if (!metadata || (tool !== 'edit' && tool !== 'multiedit' && tool !== 'apply_patch')) { return undefined; } const files = Array.isArray(metadata.files) ? metadata.files : []; if (files.length > 0) { const preferred = typeof preferredPath === 'string' && preferredPath.length > 0 ? preferredPath : undefined; const matched = preferred ? files.find((file) => { if (!file || typeof file !== 'object') { return false; } const candidate = file as { relativePath?: unknown; filePath?: unknown }; return candidate.relativePath === preferred || candidate.filePath === preferred; }) : files[0]; if (matched && typeof matched === 'object') { const patch = (matched as { diff?: unknown }).diff; if (typeof patch === 'string' && patch.trim().length > 0) { return patch; } } } if (typeof metadata.diff === 'string' && metadata.diff.trim().length > 0) { return metadata.diff; } return undefined; }; const normalizeDisplayPath = (value: string): string => { const trimmed = value.trim().replace(/\\/g, '/').replace(/\/{2,}/g, '/'); if (!trimmed || trimmed === '/') { return trimmed; } return trimmed.replace(/\/+$/, ''); }; const getRelativePath = (absolutePath: string, currentDirectory: string): string => { const normalizedAbsolutePath = normalizeDisplayPath(absolutePath); const normalizedCurrentDirectory = normalizeDisplayPath(currentDirectory); if (!normalizedAbsolutePath) { return ''; } if (!normalizedCurrentDirectory) { return normalizedAbsolutePath; } if (normalizedAbsolutePath === normalizedCurrentDirectory) { return '.'; } const prefix = `${normalizedCurrentDirectory}/`; if (normalizedAbsolutePath.startsWith(prefix)) { return normalizedAbsolutePath.slice(prefix.length); } return normalizedAbsolutePath; }; const usePierreThemeConfig = () => { const themeSystem = useOptionalThemeSystem(); const fallbackLightTheme = React.useMemo(() => getDefaultTheme(false), []); const fallbackDarkTheme = React.useMemo(() => getDefaultTheme(true), []); const availableThemes = React.useMemo( () => themeSystem?.availableThemes ?? [fallbackLightTheme, fallbackDarkTheme], [fallbackDarkTheme, fallbackLightTheme, themeSystem?.availableThemes], ); const lightThemeId = themeSystem?.lightThemeId ?? fallbackLightTheme.metadata.id; const darkThemeId = themeSystem?.darkThemeId ?? fallbackDarkTheme.metadata.id; const lightTheme = React.useMemo( () => availableThemes.find((theme) => theme.metadata.id === lightThemeId) ?? fallbackLightTheme, [availableThemes, fallbackLightTheme, lightThemeId], ); const darkTheme = React.useMemo( () => availableThemes.find((theme) => theme.metadata.id === darkThemeId) ?? fallbackDarkTheme, [availableThemes, darkThemeId, fallbackDarkTheme], ); React.useEffect(() => { ensurePierreThemeRegistered(lightTheme); ensurePierreThemeRegistered(darkTheme); }, [darkTheme, lightTheme]); const currentVariant = themeSystem?.currentTheme.metadata.variant ?? 'light'; return { pierreTheme: { light: lightTheme.metadata.id, dark: darkTheme.metadata.id }, pierreThemeType: currentVariant === 'dark' ? ('dark' as const) : ('light' as const), }; }; // Parse question tool output: "User has answered your questions: "Q1"="A1", "Q2"="A2". You can now..." const parseQuestionOutput = (output: string): Array<{ question: string; answer: string }> | null => { const match = output.match(/^User has answered your questions:\s*(.+?)\.\s*You can now/s); if (!match) return null; const pairs: Array<{ question: string; answer: string }> = []; const content = match[1]; // Match "question"="answer" pairs, handling multiline answers const pairRegex = /"([^"]+)"="([^"]*(?:[^"\\]|\\.)*)"/g; let pairMatch; while ((pairMatch = pairRegex.exec(content)) !== null) { pairs.push({ question: pairMatch[1], answer: pairMatch[2], }); } return pairs.length > 0 ? pairs : null; }; const getToolDescriptionPath = (part: ToolPartType, state: ToolStateUnion, currentDirectory: string): string | null => { const stateWithData = state as ToolStateWithMetadata; const metadata = stateWithData.metadata; const input = stateWithData.input; if (part.tool === 'apply_patch') { const files = Array.isArray(metadata?.files) ? metadata?.files : []; const firstFile = files[0] as { relativePath?: string; filePath?: string } | undefined; const filePath = firstFile?.relativePath || firstFile?.filePath; if (files.length > 1) return null; if (typeof filePath === 'string') { return getRelativePath(filePath, currentDirectory); } return null; } if ((part.tool === 'edit' || part.tool === 'multiedit') && input) { const filePath = input?.filePath || input?.file_path || input?.path || metadata?.filePath || metadata?.file_path || metadata?.path; if (typeof filePath === 'string') { return getRelativePath(filePath, currentDirectory); } } if (part.tool === 'read' && input) { const filePath = input?.filePath || input?.file_path || input?.path || metadata?.filePath || metadata?.file_path || metadata?.path; if (typeof filePath === 'string') { return getRelativePath(filePath, currentDirectory); } } if (['write', 'create', 'file_write'].includes(part.tool) && input) { const filePath = input?.filePath || input?.file_path || input?.path; if (typeof filePath === 'string') { return getRelativePath(filePath, currentDirectory); } } return null; }; const getToolDescription = (part: ToolPartType, state: ToolStateUnion, currentDirectory: string): string => { const stateWithData = state as ToolStateWithMetadata; const metadata = stateWithData.metadata; const input = stateWithData.input; const filePathLabel = getToolDescriptionPath(part, state, currentDirectory); if (filePathLabel) { return filePathLabel; } if (part.tool === 'apply_patch') { const files = Array.isArray(metadata?.files) ? metadata?.files : []; if (files.length > 1) { return `${files.length} files`; } return ''; } // Question tool: show "Asked N question(s)" if (part.tool === 'question' && input?.questions && Array.isArray(input.questions)) { const count = input.questions.length; return `Asked ${count} question${count !== 1 ? 's' : ''}`; } if (part.tool === 'bash' && input?.command && typeof input.command === 'string') { const firstLine = input.command.split('\n')[0]; return firstLine.substring(0, 100); } if (part.tool === 'task' && input?.description && typeof input.description === 'string') { return input.description.substring(0, 80); } const desc = input?.description || metadata?.description || ('title' in state && state.title) || ''; return typeof desc === 'string' ? desc : ''; }; interface ToolScrollableSectionProps { children: React.ReactNode; maxHeightClass?: string; className?: string; outerClassName?: string; disableHorizontal?: boolean; } const ToolScrollableSection: React.FC = ({ children, maxHeightClass = 'max-h-[60vh]', className, outerClassName, disableHorizontal = false, }) => (
{children}
); const getToolOutputLanguage = ( output: string, part: ToolPartType, metadata: Record | undefined, input: Record | undefined, ): string => { if (part.tool === 'bash') { return 'bash'; } return detectLanguageFromOutput(formatEditOutput(output, part.tool, metadata), part.tool, input); }; const getToolOutputText = ( output: string, part: ToolPartType, metadata: Record | undefined, ): string => { if (part.tool === 'bash') { return output; } return formatEditOutput(output, part.tool, metadata); }; const ToolScrollableTextOutput: React.FC<{ output: string; part: ToolPartType; metadata: Record | undefined; input: Record | undefined; syntaxTheme: { [key: string]: React.CSSProperties }; }> = ({ output, part, metadata, input, syntaxTheme }) => { const renderedOutput = getToolOutputText(output, part, metadata); const outputLanguage = getToolOutputLanguage(output, part, metadata, input); return (
{renderedOutput}
); }; ToolScrollableTextOutput.displayName = 'ToolScrollableTextOutput'; type TaskToolSummaryEntry = { id?: string; tool?: string; state?: { status?: string; title?: string; input?: Record; }; }; type SessionMessageWithParts = MessageRecord; const normalizeSessionIdCandidate = (value: unknown): string | undefined => { if (typeof value !== 'string') { return undefined; } const trimmed = value.trim(); return trimmed.length > 0 ? trimmed : undefined; }; const readTaskSessionIdFromRecord = (value: unknown): string | undefined => { if (!value || typeof value !== 'object') { return undefined; } const record = value as Record; return ( normalizeSessionIdCandidate(record.sessionID) ?? normalizeSessionIdCandidate(record.sessionId) ); }; const readTaskSessionIdFromOutput = (output: string | undefined): string | undefined => { if (typeof output !== 'string' || output.trim().length === 0) { return undefined; } const parsedMetadata = parseTaskMetadataBlock(output); if (parsedMetadata.sessionId) { return parsedMetadata.sessionId; } const taskMatch = output.match(/task_id\s*:\s*([^\s<"']+)/i); const sessionMatch = output.match(/session[_\s-]?id\s*:\s*([^\s<"']+)/i); const candidate = taskMatch?.[1] ?? sessionMatch?.[1]; return normalizeSessionIdCandidate(candidate); }; const buildTaskSummaryEntriesFromSession = (messages: SessionMessageWithParts[]): TaskToolSummaryEntry[] => { const entries: TaskToolSummaryEntry[] = []; for (const message of messages) { if (message?.info?.role !== 'assistant') { continue; } const parts = Array.isArray(message.parts) ? message.parts : []; for (const part of parts) { if (part?.type !== 'tool') { continue; } const toolName = normalizeToolName(part.tool); if (!toolName || toolName === 'task' || toolName === 'todowrite' || toolName === 'todoread') { continue; } const partState = part.state as { status?: string; title?: string; input?: unknown } | undefined; entries.push({ id: part.id, tool: part.tool, state: { status: partState?.status, title: partState?.title, input: partState?.input && typeof partState.input === 'object' ? (partState.input as Record) : undefined, }, }); } } return entries; }; const buildTaskSessionMessagesSignature = (messages: SessionMessageWithParts[]): string => { if (!Array.isArray(messages) || messages.length === 0) { return '0'; } const lastMessage = messages[messages.length - 1]; const lastMessageId = typeof lastMessage?.info?.id === 'string' ? lastMessage.info.id : ''; const lastMessageUpdated = typeof lastMessage?.info?.time?.completed === 'number' ? lastMessage.info.time.completed : typeof lastMessage?.info?.time?.created === 'number' ? lastMessage.info.time.created : 0; const lastParts = Array.isArray(lastMessage?.parts) ? lastMessage.parts : []; const lastPart = lastParts[lastParts.length - 1] as Record | undefined; const tailType = typeof lastPart?.type === 'string' ? lastPart.type : ''; const tailId = typeof lastPart?.id === 'string' ? lastPart.id : ''; const tailTextLength = (() => { const textCandidate = lastPart?.text; if (typeof textCandidate === 'string') { return textCandidate.length; } const stateCandidate = lastPart?.state; if (stateCandidate && typeof stateCandidate === 'object') { const stateStatus = (stateCandidate as Record).status; if (typeof stateStatus === 'string') { return stateStatus.length; } } return 0; })(); return `${messages.length}:${lastMessageId}:${lastMessageUpdated}:${lastParts.length}:${tailType}:${tailId}:${tailTextLength}`; }; const getTaskSummaryLabel = (entry: TaskToolSummaryEntry): string => { const title = entry.state?.title; if (typeof title === 'string' && title.trim().length > 0) { return title; } const input = entry.state?.input; if (input && typeof input === 'object') { const pathCandidate = input.filePath ?? input.file_path ?? input.path; if (typeof pathCandidate === 'string' && pathCandidate.trim().length > 0) { return pathCandidate.trim(); } const urlCandidate = input.url; if (typeof urlCandidate === 'string' && urlCandidate.trim().length > 0) { return urlCandidate.trim(); } } return ''; }; const FILE_PATH_LABEL_TOOLS = new Set([ 'read', 'view', 'file_read', 'cat', 'write', 'create', 'file_write', 'edit', 'multiedit', 'apply_patch', ]); const shouldRenderGitPathLabel = (toolName: string, label: string): boolean => { if (!FILE_PATH_LABEL_TOOLS.has(toolName.toLowerCase())) { return false; } const trimmed = label.trim(); if (!trimmed || trimmed === 'Patch' || /^\d+\s+files$/.test(trimmed)) { return false; } if (trimmed.includes('/') || trimmed.includes('\\')) { return true; } const baseName = trimmed.split(/[\\/]/).pop() || trimmed; if (baseName.startsWith('.') || baseName.includes('.')) { return true; } return /^[A-Za-z0-9_-]+$/.test(baseName); }; const stripTaskMetadataFromOutput = (output: string): string => { // Strip only a trailing ... block. return output.replace(/\n*[\s\S]*?<\/task_metadata>\s*$/i, '').trimEnd(); }; const normalizeTaskSummaryEntries = (value: unknown): TaskToolSummaryEntry[] => { if (!Array.isArray(value)) { return []; } const normalized: TaskToolSummaryEntry[] = []; for (const entry of value) { if (typeof entry === 'string') { normalized.push({ tool: 'tool', state: { status: 'completed', title: entry }, }); continue; } if (!entry || typeof entry !== 'object') { continue; } const record = entry as { id?: unknown; tool?: unknown; title?: unknown; status?: unknown; state?: { status?: unknown; title?: unknown; input?: unknown }; }; const stateStatus = typeof record.state?.status === 'string' ? record.state.status : undefined; const stateTitle = typeof record.state?.title === 'string' ? record.state.title : undefined; const status = stateStatus ?? (typeof record.status === 'string' ? record.status : undefined); const title = stateTitle ?? (typeof record.title === 'string' ? record.title : undefined); normalized.push({ id: typeof record.id === 'string' ? record.id : undefined, tool: typeof record.tool === 'string' ? record.tool : 'tool', state: { status, title, input: record.state?.input && typeof record.state.input === 'object' ? (record.state.input as Record) : undefined, }, }); } return normalized; }; const parseTaskMetadataBlock = (output: string | undefined): { sessionId?: string; summaryEntries: TaskToolSummaryEntry[]; } => { if (typeof output !== 'string' || output.trim().length === 0) { return { summaryEntries: [] }; } const blockMatch = output.match(/\s*([\s\S]*?)\s*<\/task_metadata>/i); if (!blockMatch?.[1]) { return { summaryEntries: [] }; } const raw = blockMatch[1].trim(); if (!raw) { return { summaryEntries: [] }; } try { const parsed = JSON.parse(raw) as { sessionId?: unknown; sessionID?: unknown; summary?: unknown; entries?: unknown; tools?: unknown; calls?: unknown; }; const summaryEntries = normalizeTaskSummaryEntries( parsed.summary ?? parsed.entries ?? parsed.tools ?? parsed.calls ); const sessionId = (typeof parsed.sessionId === 'string' && parsed.sessionId.trim().length > 0 ? parsed.sessionId.trim() : undefined) ?? (typeof parsed.sessionID === 'string' && parsed.sessionID.trim().length > 0 ? parsed.sessionID.trim() : undefined); return { sessionId, summaryEntries }; } catch { return { summaryEntries: [] }; } }; const TaskToolSummary: React.FC<{ entries: TaskToolSummaryEntry[]; isExpanded: boolean; isMobile: boolean; output?: string; sessionId?: string; onShowPopup?: (content: ToolPopupContent) => void; input?: Record; animateTailText?: boolean; isActive?: boolean; }> = ({ entries, isExpanded, isMobile, output, sessionId, onShowPopup, input, animateTailText = true, isActive = false }) => { const setCurrentSession = useSessionUIStore((state) => state.setCurrentSession); const showToolFileIcons = useUIStore((state) => state.showToolFileIcons); const displayEntries = entries; const trimmedOutput = typeof output === 'string' ? stripTaskMetadataFromOutput(output) : ''; const hasOutput = trimmedOutput.length > 0; const [isOutputExpanded, setIsOutputExpanded] = React.useState(false); const handleOpenSession = (event: React.MouseEvent) => { event.stopPropagation(); if (sessionId) { setCurrentSession(sessionId); } }; const agentType = typeof input?.subagent_type === 'string' ? input.subagent_type : 'subagent'; if (displayEntries.length === 0 && !hasOutput && !sessionId) { return (
{isActive ? 'Waiting for subagent activity...' : 'No subagent session id on task metadata.'}
); } const visibleEntries = isExpanded ? displayEntries : displayEntries.slice(-6); const hiddenCount = Math.max(0, displayEntries.length - visibleEntries.length); return (
{displayEntries.length > 0 ? (
{hiddenCount > 0 ? (
+{hiddenCount} more…
) : null} {visibleEntries.map((entry, idx) => { const normalizedToolName = normalizeToolName(entry.tool); const toolName = normalizedToolName.length > 0 ? normalizedToolName : 'tool'; const label = getTaskSummaryLabel(entry); const hasLabel = label.trim().length > 0; const status = entry.state?.status; const displayName = getToolMetadata(toolName).displayName; return (
{getToolIcon(toolName)} {displayName} {hasLabel ? ( status !== 'error' && shouldRenderGitPathLabel(toolName, label) ? ( renderAnimatedPathWithIcon(label, animateTailText, true, showToolFileIcons) ) : ( status === 'error' ? ( {label} ) : ( {label} ) ) ) : null}
); })}
) : null} {sessionId && ( )} {hasOutput ? (
0 || sessionId) && 'pt-1')} > {isOutputExpanded ? (
) : null}
) : null}
); }; interface DiffPreviewProps { diff: string; pierreTheme: { light: string; dark: string }; pierreThemeType: 'light' | 'dark'; diffViewMode: DiffViewMode; } const TOOL_DIFF_UNSAFE_CSS = ` [data-diff-header], [data-diff] { [data-separator] { height: 24px !important; } } `; const TOOL_DIFF_METRICS = { hunkLineCount: 50, lineHeight: 24, diffHeaderHeight: 44, hunkSeparatorHeight: 24, fileGap: 0, }; type DiffPatchEntry = { id: string; title: string; patch: string; }; const renderPathLikeGitChanges = (path: string, grow = true) => { const lastSlash = path.lastIndexOf('/'); if (lastSlash === -1) { return ( {path} ); } const dir = path.slice(0, lastSlash); const name = path.slice(lastSlash + 1); const hasAbsoluteRoot = dir.startsWith('/'); const displayDir = hasAbsoluteRoot ? dir.slice(1) : dir; return ( {hasAbsoluteRoot ? / : null} {displayDir} / {name} ); }; const renderAnimatedPathWithIcon = (path: string, _animate = true, grow = true, showFileIcons = true) => { void _animate; const lastSlash = path.lastIndexOf('/'); if (lastSlash === -1) { return ( {showFileIcons ? : null} {path} ); } const dir = path.slice(0, lastSlash); const name = path.slice(lastSlash + 1); const hasAbsoluteRoot = dir.startsWith('/'); const displayDir = hasAbsoluteRoot ? dir.slice(1) : dir; return ( {showFileIcons ? : null} {hasAbsoluteRoot ? / : null} {displayDir} / {name} ); }; const getDiffPatchEntries = ( metadata: Record | undefined, fallbackDiff: string, currentDirectory: string, ): DiffPatchEntry[] => { const files = Array.isArray(metadata?.files) ? metadata.files : []; const entries = files .map((file, index) => { if (!file || typeof file !== 'object') { return null; } const record = file as { relativePath?: unknown; filePath?: unknown; diff?: unknown }; const patch = typeof record.diff === 'string' ? record.diff.trim() : ''; if (!patch) { return null; } const rawPath = typeof record.relativePath === 'string' ? record.relativePath : typeof record.filePath === 'string' ? record.filePath : `File ${index + 1}`; const title = typeof rawPath === 'string' ? getRelativePath(rawPath, currentDirectory) : `File ${index + 1}`; return { id: `${title}-${index}`, title, patch, } satisfies DiffPatchEntry; }) .filter((entry): entry is DiffPatchEntry => entry !== null); if (entries.length > 0) { return entries; } return [ { id: 'diff-0', title: 'Diff', patch: fallbackDiff, }, ]; }; const DiffPreview: React.FC = React.memo(({ diff, pierreTheme, pierreThemeType, diffViewMode }) => { return (
); }); DiffPreview.displayName = 'DiffPreview'; interface WriteInputPreviewProps { content: string; filePath?: string; displayPath: string; pierreTheme: { light: string; dark: string }; pierreThemeType: 'light' | 'dark'; } const WriteInputPreview: React.FC = React.memo(({ content, filePath, displayPath, pierreTheme, pierreThemeType, }) => { const language = React.useMemo( () => getLanguageFromExtension(filePath ?? '') || detectLanguageFromOutput(content, 'write', filePath ? { filePath } : undefined), [content, filePath] ); const lineCount = Math.max(content.split('\n').length, 1); const headerLineLabel = lineCount === 1 ? 'line 1' : `lines 1-${lineCount}`; return (
{renderPathLikeGitChanges(displayPath)} ({headerLineLabel})
); }); WriteInputPreview.displayName = 'WriteInputPreview'; interface ImagePreviewProps { content: string; filePath: string; displayPath: string; } const ImagePreview: React.FC = React.memo(({ content, filePath, displayPath }) => { const mimeType = getImageMimeType(filePath); const isSvg = filePath.toLowerCase().endsWith('.svg'); // For SVG, content might be raw XML, otherwise assume base64 const imageSrc = React.useMemo(() => { if (isSvg && !content.startsWith('data:')) { // Raw SVG content return `data:image/svg+xml;base64,${btoa(content)}`; } if (content.startsWith('data:')) { return content; } // Assume base64 encoded return `data:${mimeType};base64,${content}`; }, [content, mimeType, isSvg]); return (
{renderPathLikeGitChanges(displayPath)}
{displayPath}
); }); ImagePreview.displayName = 'ImagePreview'; interface ToolExpandedContentProps { part: ToolPartType; state: ToolStateUnion; syntaxTheme: { [key: string]: React.CSSProperties }; currentDirectory: string; onShowPopup?: (content: ToolPopupContent) => void; } const ToolExpandedContent: React.FC = React.memo(({ part, state, syntaxTheme, currentDirectory, onShowPopup, }) => { const { pierreTheme, pierreThemeType } = usePierreThemeConfig(); const [diffViewMode, setDiffViewMode] = React.useState('unified'); const stateWithData = state as ToolStateWithMetadata; const metadata = stateWithData.metadata; const input = stateWithData.input; const rawOutput = stateWithData.output; const hasStringOutput = typeof rawOutput === 'string' && rawOutput.length > 0; const outputString = typeof rawOutput === 'string' ? rawOutput : ''; const diffContent = typeof metadata?.diff === 'string' ? (metadata.diff as string) : null; const diffEntries = React.useMemo( () => (diffContent ? getDiffPatchEntries(metadata, diffContent, currentDirectory) : []), [currentDirectory, diffContent, metadata] ); const writeFilePath = part.tool === 'write' ? typeof input?.filePath === 'string' ? input.filePath : typeof input?.file_path === 'string' ? input.file_path : typeof input?.path === 'string' ? input.path : undefined : undefined; const writeInputContent = part.tool === 'write' ? typeof (input as { content?: unknown })?.content === 'string' ? (input as { content?: string }).content : typeof (input as { text?: unknown })?.text === 'string' ? (input as { text?: string }).text : null : null; const shouldShowWriteInputPreview = part.tool === 'write' && !!writeInputContent; const isWriteImageFile = writeFilePath ? isImageFile(writeFilePath) : false; const writeDisplayPath = shouldShowWriteInputPreview ? (writeFilePath ? getRelativePath(writeFilePath, currentDirectory) : 'New file') : null; const inputTextContent = React.useMemo(() => { if (!input || typeof input !== 'object' || Object.keys(input).length === 0) { return ''; } if ('command' in input && typeof input.command === 'string' && part.tool === 'bash') { return formatInputForDisplay(input, part.tool); } if (typeof (input as { content?: unknown }).content === 'string') { return (input as { content?: string }).content ?? ''; } return formatInputForDisplay(input, part.tool); }, [input, part.tool]); const hasInputText = part.tool !== 'apply_patch' && inputTextContent.trim().length > 0; React.useEffect(() => { setDiffViewMode('unified'); }, [part.id]); const renderScrollableBlock = ( content: React.ReactNode, options?: { maxHeightClass?: string; className?: string; disableHorizontal?: boolean; outerClassName?: string } ) => ( {content} ); const renderResultContent = () => { // Question tool: show parsed Q&A summary if (part.tool === 'question') { if (state.status === 'completed' && hasStringOutput) { const parsedQA = parseQuestionOutput(outputString); if (parsedQA && parsedQA.length > 0) { return renderScrollableBlock(
{parsedQA.map((qa, index) => (
{qa.question}
{qa.answer}
))}
, { maxHeightClass: 'max-h-[40vh]' } ); } } if (state.status === 'error' && 'error' in state) { return (
Error:
{state.error}
); } return
Awaiting response...
; } if (part.tool === 'task' && hasStringOutput) { return renderScrollableBlock(
); } if ((part.tool === 'edit' || part.tool === 'multiedit' || part.tool === 'apply_patch') && diffEntries.length > 0) { return renderScrollableBlock(
{diffEntries.map((entry) => (
{diffEntries.length > 1 ? (
{renderPathLikeGitChanges(entry.title)}
) : null}
))}
, { className: 'p-1' } ); } if (hasStringOutput && outputString.trim()) { return renderScrollableBlock( , { className: 'p-1', maxHeightClass: part.tool === 'bash' ? 'max-h-[46vh]' : undefined, } ); } return renderScrollableBlock(
No output produced
, { maxHeightClass: 'max-h-60' } ); }; return (
{part.tool === 'question' ? ( renderResultContent() ) : ( <> {shouldShowWriteInputPreview && isWriteImageFile ? (
{renderScrollableBlock( )}
) : shouldShowWriteInputPreview ? (
{renderScrollableBlock( )}
) : hasInputText ? (
{renderScrollableBlock( part.tool === 'bash' ? (
                                        {inputTextContent}
                                    
) : (
{inputTextContent}
), { maxHeightClass: 'max-h-60', className: part.tool === 'bash' ? 'tool-input-surface p-0' : 'tool-input-surface', } )}
) : null} {part.tool !== 'write' && state.status === 'completed' && 'output' in state && (
{(part.tool === 'edit' || part.tool === 'multiedit' || part.tool === 'apply_patch') && diffContent ? (
) : null} {renderResultContent()}
)} {state.status === 'error' && 'error' in state && (
Error:
{state.error}
)} )}
); }); ToolExpandedContent.displayName = 'ToolExpandedContent'; const ToolPart: React.FC = ({ part, isExpanded, onToggle, syntaxTheme, isMobile, onContentChange, onShowPopup, animateTailText = true, }) => { const state = part.state; const showToolFileIcons = useUIStore((s) => s.showToolFileIcons); const currentDirectory = useDirectoryStore((s) => s.currentDirectory); const normalizedPartTool = normalizeToolName(part.tool); const isTaskTool = normalizedPartTool === 'task'; const status = state?.status as string | undefined; const isFinalized = status === 'completed' || status === 'error' || status === 'aborted' || status === 'failed' || status === 'timeout' || status === 'cancelled'; const isError = status === 'error' || status === 'failed'; const [activeLatched, setActiveLatched] = React.useState(!isFinalized); const previousPartIdRef = React.useRef(part.id); React.useEffect(() => { if (previousPartIdRef.current === part.id) { return; } previousPartIdRef.current = part.id; // Reset latch only when tool identity changes. setActiveLatched(!isFinalized); }, [isFinalized, part.id]); React.useEffect(() => { if (!isFinalized) { setActiveLatched(true); } }, [isFinalized]); const shouldNotifyStructuralChange = isFinalized || isTaskTool; React.useEffect(() => { if (!shouldNotifyStructuralChange) { return; } if (typeof isExpanded === 'boolean') { onContentChange?.('structural'); } }, [isExpanded, onContentChange, shouldNotifyStructuralChange]); const stateWithData = state as ToolStateWithMetadata; const metadata = stateWithData.metadata; const partMetadata = (part as unknown as { metadata?: unknown }).metadata; const input = stateWithData.input; const time = stateWithData.time; const [pinnedTime, setPinnedTime] = React.useState<{ start?: number; end?: number }>({}); const [localStartAt, setLocalStartAt] = React.useState(undefined); const [localFinalizedAt, setLocalFinalizedAt] = React.useState(undefined); React.useEffect(() => { setPinnedTime({}); setLocalStartAt(undefined); setLocalFinalizedAt(undefined); }, [part.id]); React.useEffect(() => { if (isFinalized) { return; } if (typeof time?.start === 'number') { return; } setLocalStartAt((prev) => prev ?? Date.now()); }, [isFinalized, time?.start]); React.useEffect(() => { setPinnedTime((prev) => { const next = { ...prev }; let changed = false; if (typeof time?.start === 'number' && (typeof prev.start !== 'number' || time.start < prev.start)) { next.start = time.start; changed = true; } if (typeof time?.end === 'number' && (typeof prev.end !== 'number' || time.end > prev.end)) { next.end = time.end; changed = true; } return changed ? next : prev; }); }, [time?.end, time?.start]); const effectiveTimeStart = React.useMemo(() => { // Once we captured a local start (during pending, before server sends time.start), // always prefer it so the timer never jumps when server start arrives later. if (typeof localStartAt === 'number') { return localStartAt; } const candidates = [pinnedTime.start, time?.start].filter( (value): value is number => typeof value === 'number' ); if (candidates.length === 0) { return undefined; } return Math.min(...candidates); }, [localStartAt, pinnedTime.start, time?.start]); const taskOutputString = React.useMemo(() => { return typeof stateWithData.output === 'string' ? stateWithData.output : undefined; }, [stateWithData.output]); const parsedTaskMetadata = React.useMemo(() => { return parseTaskMetadataBlock(taskOutputString); }, [taskOutputString]); const taskSessionId = React.useMemo(() => { if (!isTaskTool) { return undefined; } const metadataSessionId = readTaskSessionIdFromRecord(metadata); if (metadataSessionId) { return metadataSessionId; } const partLevelSessionId = readTaskSessionIdFromRecord(partMetadata); if (partLevelSessionId) { return partLevelSessionId; } if (parsedTaskMetadata.sessionId) { return parsedTaskMetadata.sessionId; } return readTaskSessionIdFromOutput(taskOutputString); }, [isTaskTool, metadata, parsedTaskMetadata.sessionId, partMetadata, taskOutputString]); const childSessionMessages = useSessionMessageRecords(taskSessionId ?? ''); const metadataTaskSummaryEntries = React.useMemo(() => { if (!isTaskTool) { return []; } const candidateSummary = (metadata as { summary?: unknown; entries?: unknown; tools?: unknown; calls?: unknown } | undefined); const normalized = normalizeTaskSummaryEntries( candidateSummary?.summary ?? candidateSummary?.entries ?? candidateSummary?.tools ?? candidateSummary?.calls ); if (normalized.length > 0) { return normalized; } return parsedTaskMetadata.summaryEntries; }, [isTaskTool, metadata, parsedTaskMetadata.summaryEntries]); const childSessionTaskSummaryEntries = React.useMemo(() => { if (!isTaskTool || !taskSessionId) { return []; } if (!Array.isArray(childSessionMessages) || childSessionMessages.length === 0) { return []; } return buildTaskSummaryEntriesFromSession(childSessionMessages); }, [childSessionMessages, isTaskTool, taskSessionId]); const childSessionHasInFlightTools = React.useMemo(() => { if (!isTaskTool || !taskSessionId || !Array.isArray(childSessionMessages) || childSessionMessages.length === 0) { return false; } for (const message of childSessionMessages) { if (message?.info?.role !== 'assistant') { continue; } const parts = Array.isArray(message.parts) ? message.parts : []; for (const childPart of parts) { if (childPart?.type !== 'tool') { continue; } const childStatus = typeof childPart === 'object' && childPart !== null && 'state' in childPart ? (childPart.state as { status?: string } | undefined)?.status : undefined; if (childStatus === 'running' || childStatus === 'pending' || childStatus === 'started') { return true; } } } return false; }, [childSessionMessages, isTaskTool, taskSessionId]); const childSessionActivity = useSessionActivity(taskSessionId); const [taskChildSeenActive, setTaskChildSeenActive] = React.useState(false); const [taskChildPollingStopped, setTaskChildPollingStopped] = React.useState(false); const taskPollNoChangeCountRef = React.useRef(0); const taskPollLastSignatureRef = React.useRef(''); React.useEffect(() => { setTaskChildSeenActive(false); setTaskChildPollingStopped(false); taskPollNoChangeCountRef.current = 0; taskPollLastSignatureRef.current = ''; }, [taskSessionId]); React.useEffect(() => { if (!isTaskTool || !taskSessionId) { return; } const childSessionIsActive = childSessionActivity.phase === 'busy' || childSessionActivity.phase === 'retry' || childSessionHasInFlightTools || (!isFinalized && activeLatched); if (childSessionIsActive) { if (!taskChildSeenActive) { setTaskChildSeenActive(true); } if (taskChildPollingStopped) { setTaskChildPollingStopped(false); } return; } if (!taskChildSeenActive || taskChildPollingStopped || childSessionTaskSummaryEntries.length === 0) { return; } if (typeof window === 'undefined') { setTaskChildPollingStopped(true); return; } const timer = window.setTimeout(() => { setTaskChildPollingStopped(true); }, TASK_TOOL_SETTLE_GRACE_MS); return () => { window.clearTimeout(timer); }; }, [ childSessionActivity.phase, childSessionHasInFlightTools, childSessionTaskSummaryEntries.length, activeLatched, isFinalized, isTaskTool, taskChildPollingStopped, taskChildSeenActive, taskSessionId, ]); React.useEffect(() => { if (typeof time?.end === 'number' || typeof pinnedTime.end === 'number') { setLocalFinalizedAt(undefined); return; } if (typeof effectiveTimeStart !== 'number') { return; } if (!isFinalized) { return; } setLocalFinalizedAt((prev) => prev ?? Date.now()); }, [ effectiveTimeStart, isFinalized, pinnedTime.end, time?.end, ]); const effectiveTimeEnd = isFinalized ? (pinnedTime.end ?? time?.end ?? localFinalizedAt) : undefined; const isActive = !isFinalized && activeLatched; const shouldTreatAsFinalized = isFinalized; const taskSummaryEntries = React.useMemo(() => { if (childSessionTaskSummaryEntries.length > 0) { return childSessionTaskSummaryEntries; } return metadataTaskSummaryEntries; }, [childSessionTaskSummaryEntries, metadataTaskSummaryEntries]); React.useEffect(() => { if (!isTaskTool || !taskSessionId) { return; } const childSessionActive = childSessionActivity.phase === 'busy' || childSessionActivity.phase === 'retry'; const shouldPoll = !taskChildPollingStopped && (isActive || childSessionHasInFlightTools || childSessionActive || childSessionTaskSummaryEntries.length === 0); const shouldFetchSnapshot = childSessionTaskSummaryEntries.length === 0 || shouldPoll; if (!shouldFetchSnapshot) { return; } let cancelled = false; let pollTimer: number | undefined; const isVisible = () => { if (typeof document === 'undefined') { return true; } return document.visibilityState === 'visible'; }; const resolveFetchLimit = (isInitialFetch: boolean) => { if (isInitialFetch && childSessionTaskSummaryEntries.length === 0) { return TASK_TOOL_INITIAL_FETCH_LIMIT; } if (isActive || childSessionHasInFlightTools || childSessionActive) { return TASK_TOOL_ACTIVE_FETCH_LIMIT; } return TASK_TOOL_IDLE_FETCH_LIMIT; }; const resolvePollDelay = () => { if (!isVisible()) { return TASK_TOOL_POLL_HIDDEN_MS; } if (taskPollNoChangeCountRef.current >= TASK_TOOL_NO_CHANGE_BACKOFF_AFTER_POLLS) { return TASK_TOOL_POLL_IDLE_MS; } return TASK_TOOL_POLL_FAST_MS; }; const scheduleNextPoll = () => { if (!shouldPoll || typeof window === 'undefined' || cancelled) { return; } pollTimer = window.setTimeout(() => { pollTimer = undefined; void fetchSessionMessages(false); }, resolvePollDelay()); }; const fetchSessionMessages = async (isInitialFetch: boolean) => { try { const messages = await opencodeClient.getSessionMessages(taskSessionId, resolveFetchLimit(isInitialFetch)); if (cancelled || !Array.isArray(messages) || messages.length === 0) { return; } const nextSignature = buildTaskSessionMessagesSignature(messages as SessionMessageWithParts[]); if (nextSignature === taskPollLastSignatureRef.current) { taskPollNoChangeCountRef.current += 1; return; } taskPollLastSignatureRef.current = nextSignature; taskPollNoChangeCountRef.current = 0; // Inject fetched subagent messages into sync child store const childStores = getSyncChildStores(); const dir = getSyncDirectory(); childStores.update(dir, (prev) => { const records = messages as SessionMessageWithParts[]; const partPatch: Record = { ...prev.part }; for (const rec of records) { partPatch[rec.info.id] = rec.parts; } return { message: { ...prev.message, [taskSessionId]: records.map((r) => r.info) as import('@opencode-ai/sdk/v2').Message[] }, part: partPatch, }; }); } catch { // Ignore transient subagent fetch errors. } finally { scheduleNextPoll(); } }; void fetchSessionMessages(true); return () => { cancelled = true; if (typeof pollTimer === 'number') { window.clearTimeout(pollTimer); } }; }, [ childSessionActivity.phase, childSessionHasInFlightTools, childSessionTaskSummaryEntries.length, isActive, isTaskTool, taskChildPollingStopped, taskSessionId, ]); const taskSummaryLenRef = React.useRef(taskSummaryEntries.length); React.useEffect(() => { if (!isTaskTool) { return; } if (taskSummaryLenRef.current === taskSummaryEntries.length) { return; } taskSummaryLenRef.current = taskSummaryEntries.length; onContentChange?.('structural'); }, [isTaskTool, onContentChange, taskSummaryEntries.length]); const diffStats = (normalizedPartTool === 'edit' || normalizedPartTool === 'multiedit' || normalizedPartTool === 'apply_patch') ? parseDiffStats(metadata) : null; const writeLineCount = normalizedPartTool === 'write' ? parseWriteLineCount(input) : null; const isMultiFileApplyPatch = normalizedPartTool === 'apply_patch' && Array.isArray(metadata?.files) && (metadata?.files as []).length > 1; const normalizedPart = normalizedPartTool !== part.tool ? ({ ...part, tool: normalizedPartTool } as ToolPartType) : part; const descriptionPath = getToolDescriptionPath(normalizedPart, state, currentDirectory); const description = getToolDescription(normalizedPart, state, currentDirectory); const displayName = getToolMetadata(normalizedPartTool || part.tool).displayName; // Tool title/description — shown inline as context const justificationText = React.useMemo(() => { if (normalizedPartTool === 'bash') { return null; } if (normalizedPartTool === 'apply_patch') { return null; } if ( descriptionPath && (normalizedPartTool === 'apply_patch' || normalizedPartTool === 'edit' || normalizedPartTool === 'multiedit' || normalizedPartTool === 'write') ) { return null; } const title = (stateWithData as { title?: string }).title; if (typeof title === 'string' && title.trim().length > 0) { return title; } const inputDesc = input?.description; if (typeof inputDesc === 'string' && inputDesc.trim().length > 0) { return inputDesc; } return null; }, [descriptionPath, normalizedPartTool, stateWithData, input]); const runtime = React.useContext(RuntimeAPIContext); const handleMainClick = (e: { stopPropagation: () => void }) => { if (isTaskTool || !runtime?.editor) { onToggle(part.id); return; } let filePath: unknown; let targetLine: number | undefined; let toolDiff: string | undefined; if (part.tool === 'edit' || part.tool === 'multiedit') { filePath = input?.filePath || input?.file_path || input?.path || metadata?.filePath || metadata?.file_path || metadata?.path; targetLine = getFirstChangedLineFromMetadata(part.tool, metadata); if (typeof filePath === 'string') { toolDiff = getPrimaryDiffFromMetadata(part.tool, metadata, filePath); } } else if (part.tool === 'apply_patch') { const files = Array.isArray(metadata?.files) ? metadata?.files : []; const firstFile = files[0] as { relativePath?: string; filePath?: string } | undefined; filePath = firstFile?.relativePath || firstFile?.filePath; targetLine = getFirstChangedLineFromMetadata(part.tool, metadata); if (typeof filePath === 'string') { toolDiff = getPrimaryDiffFromMetadata(part.tool, metadata, filePath); } } else if (['write', 'create', 'file_write'].includes(part.tool)) { filePath = input?.filePath || input?.file_path || input?.path || metadata?.filePath || metadata?.file_path || metadata?.path; } if (typeof filePath === 'string') { e.stopPropagation(); let absolutePath = filePath; if (!filePath.startsWith('/')) { absolutePath = currentDirectory.endsWith('/') ? currentDirectory + filePath : currentDirectory + '/' + filePath; } if (runtime.runtime.isVSCode && toolDiff && (part.tool === 'edit' || part.tool === 'multiedit' || part.tool === 'apply_patch')) { const label = `${getRelativePath(absolutePath, currentDirectory)} (changes)`; void runtime.editor.openDiff('', absolutePath, label, { line: targetLine, patch: toolDiff }); return; } runtime.editor.openFile(absolutePath, targetLine); } else { onToggle(part.id); } }; const handleMainKeyDown = (event: React.KeyboardEvent) => { if (event.key !== 'Enter' && event.key !== ' ') { return; } event.preventDefault(); handleMainClick(event); }; if (!shouldTreatAsFinalized && !isActive && !isTaskTool) { return null; } return (
{}
{}
{ event.stopPropagation(); onToggle(part.id); }} > {}
{getToolIcon(normalizedPartTool || part.tool)}
{}
{isExpanded ? : }
{isMultiFileApplyPatch ? ( <> {displayName} {getMultiFileDescription(metadata, animateTailText, showToolFileIcons)} ) : ( <>
{displayName}
{normalizedPartTool === 'bash' && typeof effectiveTimeStart === 'number' ? ( ) : null} )}
{!isMultiFileApplyPatch && (
{justificationText && ( {justificationText} )} {!justificationText && description && ( descriptionPath && description === descriptionPath ? ( renderAnimatedPathWithIcon(descriptionPath, animateTailText, false, showToolFileIcons) ) : ( {description} ) )} {diffStats && ( +{diffStats.added} / -{diffStats.removed} )} {writeLineCount && ( +{writeLineCount} )}
)}
{} {isTaskTool && (taskSummaryEntries.length > 0 || isActive || shouldTreatAsFinalized || taskSessionId) ? ( ) : null} {!isTaskTool && isExpanded ? (
) : null}
); }; export default ToolPart;