Files
claudia/src/components/ToolWidgets.tsx
Mufeed VH 0a70ac0146 feat(ui): enhance message rendering with thinking widget and session improvements
- Add ThinkingWidget component for displaying AI reasoning content in collapsible interface
- Improve session initialization by removing redundant event listener and enhancing ID extraction
- Enhance StreamMessage component to handle diverse content structures and thinking content
- Add comprehensive debug logging for better message structure understanding
- Fix cost display logic to handle both cost_usd and total_cost_usd fields
- Refactor user message rendering to support both nested and direct content structures
2025-06-25 04:37:16 +05:30

1922 lines
64 KiB
TypeScript

import React, { useState } from "react";
import {
CheckCircle2,
Circle,
Clock,
FolderOpen,
FileText,
Search,
Terminal,
FileEdit,
Code,
ChevronRight,
Maximize2,
GitBranch,
X,
Info,
AlertCircle,
Settings,
Fingerprint,
Cpu,
FolderSearch,
List,
LogOut,
Edit3,
FilePlus,
Book,
BookOpen,
Globe,
ListChecks,
ListPlus,
Globe2,
Package,
ChevronDown,
Package2,
Wrench,
CheckSquare,
type LucideIcon,
Sparkles,
Bot,
Zap,
FileCode,
Folder,
ChevronUp,
} from "lucide-react";
import { Badge } from "@/components/ui/badge";
import { cn } from "@/lib/utils";
import { Prism as SyntaxHighlighter } from "react-syntax-highlighter";
import { claudeSyntaxTheme } from "@/lib/claudeSyntaxTheme";
import { Button } from "@/components/ui/button";
import { createPortal } from "react-dom";
import * as Diff from 'diff';
import { Card, CardContent } from "@/components/ui/card";
import { detectLinks, makeLinksClickable } from "@/lib/linkDetector";
/**
* Widget for TodoWrite tool - displays a beautiful TODO list
*/
export const TodoWidget: React.FC<{ todos: any[]; result?: any }> = ({ todos, result: _result }) => {
const statusIcons = {
completed: <CheckCircle2 className="h-4 w-4 text-green-500" />,
in_progress: <Clock className="h-4 w-4 text-blue-500 animate-pulse" />,
pending: <Circle className="h-4 w-4 text-muted-foreground" />
};
const priorityColors = {
high: "bg-red-500/10 text-red-500 border-red-500/20",
medium: "bg-yellow-500/10 text-yellow-500 border-yellow-500/20",
low: "bg-green-500/10 text-green-500 border-green-500/20"
};
return (
<div className="space-y-2">
<div className="flex items-center gap-2 mb-3">
<FileEdit className="h-4 w-4 text-primary" />
<span className="text-sm font-medium">Todo List</span>
</div>
<div className="space-y-2">
{todos.map((todo, idx) => (
<div
key={todo.id || idx}
className={cn(
"flex items-start gap-3 p-3 rounded-lg border bg-card/50",
todo.status === "completed" && "opacity-60"
)}
>
<div className="mt-0.5">
{statusIcons[todo.status as keyof typeof statusIcons] || statusIcons.pending}
</div>
<div className="flex-1 space-y-1">
<p className={cn(
"text-sm",
todo.status === "completed" && "line-through"
)}>
{todo.content}
</p>
{todo.priority && (
<Badge
variant="outline"
className={cn("text-xs", priorityColors[todo.priority as keyof typeof priorityColors])}
>
{todo.priority}
</Badge>
)}
</div>
</div>
))}
</div>
</div>
);
};
/**
* Widget for LS (List Directory) tool
*/
export const LSWidget: React.FC<{ path: string; result?: any }> = ({ path, result }) => {
// If we have a result, show it using the LSResultWidget
if (result) {
let resultContent = '';
if (typeof result.content === 'string') {
resultContent = result.content;
} else if (result.content && typeof result.content === 'object') {
if (result.content.text) {
resultContent = result.content.text;
} else if (Array.isArray(result.content)) {
resultContent = result.content
.map((c: any) => (typeof c === 'string' ? c : c.text || JSON.stringify(c)))
.join('\n');
} else {
resultContent = JSON.stringify(result.content, null, 2);
}
}
return (
<div className="space-y-2">
<div className="flex items-center gap-2 p-3 rounded-lg bg-muted/50">
<FolderOpen className="h-4 w-4 text-primary" />
<span className="text-sm">Directory contents for:</span>
<code className="text-sm font-mono bg-background px-2 py-0.5 rounded">
{path}
</code>
</div>
{resultContent && <LSResultWidget content={resultContent} />}
</div>
);
}
return (
<div className="flex items-center gap-2 p-3 rounded-lg bg-muted/50">
<FolderOpen className="h-4 w-4 text-primary" />
<span className="text-sm">Listing directory:</span>
<code className="text-sm font-mono bg-background px-2 py-0.5 rounded">
{path}
</code>
{!result && (
<div className="ml-auto flex items-center gap-1 text-xs text-muted-foreground">
<div className="h-2 w-2 bg-blue-500 rounded-full animate-pulse" />
<span>Loading...</span>
</div>
)}
</div>
);
};
/**
* Widget for LS tool result - displays directory tree structure
*/
export const LSResultWidget: React.FC<{ content: string }> = ({ content }) => {
const [expandedDirs, setExpandedDirs] = useState<Set<string>>(new Set());
// Parse the directory tree structure
const parseDirectoryTree = (rawContent: string) => {
const lines = rawContent.split('\n');
const entries: Array<{
path: string;
name: string;
type: 'file' | 'directory';
level: number;
}> = [];
let currentPath: string[] = [];
for (const line of lines) {
// Skip NOTE section and everything after it
if (line.startsWith('NOTE:')) {
break;
}
// Skip empty lines
if (!line.trim()) continue;
// Calculate indentation level
const indent = line.match(/^(\s*)/)?.[1] || '';
const level = Math.floor(indent.length / 2);
// Extract the entry name
const entryMatch = line.match(/^\s*-\s+(.+?)(\/$)?$/);
if (!entryMatch) continue;
const fullName = entryMatch[1];
const isDirectory = line.trim().endsWith('/');
const name = isDirectory ? fullName : fullName;
// Update current path based on level
currentPath = currentPath.slice(0, level);
currentPath.push(name);
entries.push({
path: currentPath.join('/'),
name,
type: isDirectory ? 'directory' : 'file',
level,
});
}
return entries;
};
const entries = parseDirectoryTree(content);
const toggleDirectory = (path: string) => {
setExpandedDirs(prev => {
const next = new Set(prev);
if (next.has(path)) {
next.delete(path);
} else {
next.add(path);
}
return next;
});
};
// Group entries by parent for collapsible display
const getChildren = (parentPath: string, parentLevel: number) => {
return entries.filter(e => {
if (e.level !== parentLevel + 1) return false;
const parentParts = parentPath.split('/').filter(Boolean);
const entryParts = e.path.split('/').filter(Boolean);
// Check if this entry is a direct child of the parent
if (entryParts.length !== parentParts.length + 1) return false;
// Check if all parent parts match
for (let i = 0; i < parentParts.length; i++) {
if (parentParts[i] !== entryParts[i]) return false;
}
return true;
});
};
const renderEntry = (entry: typeof entries[0], isRoot = false) => {
const hasChildren = entry.type === 'directory' &&
entries.some(e => e.path.startsWith(entry.path + '/') && e.level === entry.level + 1);
const isExpanded = expandedDirs.has(entry.path) || isRoot;
const getIcon = () => {
if (entry.type === 'directory') {
return isExpanded ?
<FolderOpen className="h-3.5 w-3.5 text-blue-500" /> :
<Folder className="h-3.5 w-3.5 text-blue-500" />;
}
// File type icons based on extension
const ext = entry.name.split('.').pop()?.toLowerCase();
switch (ext) {
case 'rs':
return <FileCode className="h-3.5 w-3.5 text-orange-500" />;
case 'toml':
case 'yaml':
case 'yml':
case 'json':
return <FileText className="h-3.5 w-3.5 text-yellow-500" />;
case 'md':
return <FileText className="h-3.5 w-3.5 text-blue-400" />;
case 'js':
case 'jsx':
case 'ts':
case 'tsx':
return <FileCode className="h-3.5 w-3.5 text-yellow-400" />;
case 'py':
return <FileCode className="h-3.5 w-3.5 text-blue-500" />;
case 'go':
return <FileCode className="h-3.5 w-3.5 text-cyan-500" />;
case 'sh':
case 'bash':
return <Terminal className="h-3.5 w-3.5 text-green-500" />;
default:
return <FileText className="h-3.5 w-3.5 text-muted-foreground" />;
}
};
return (
<div key={entry.path}>
<div
className={cn(
"flex items-center gap-2 py-1 px-2 rounded hover:bg-muted/50 transition-colors cursor-pointer",
!isRoot && "ml-4"
)}
onClick={() => entry.type === 'directory' && hasChildren && toggleDirectory(entry.path)}
>
{entry.type === 'directory' && hasChildren && (
<ChevronRight className={cn(
"h-3 w-3 text-muted-foreground transition-transform",
isExpanded && "rotate-90"
)} />
)}
{(!hasChildren || entry.type !== 'directory') && (
<div className="w-3" />
)}
{getIcon()}
<span className="text-sm font-mono">{entry.name}</span>
</div>
{entry.type === 'directory' && hasChildren && isExpanded && (
<div className="ml-2">
{getChildren(entry.path, entry.level).map(child => renderEntry(child))}
</div>
)}
</div>
);
};
// Get root entries
const rootEntries = entries.filter(e => e.level === 0);
return (
<div className="rounded-lg border bg-muted/20 p-3">
<div className="space-y-1">
{rootEntries.map(entry => renderEntry(entry, true))}
</div>
</div>
);
};
/**
* Widget for Read tool
*/
export const ReadWidget: React.FC<{ filePath: string; result?: any }> = ({ filePath, result }) => {
// If we have a result, show it using the ReadResultWidget
if (result) {
let resultContent = '';
if (typeof result.content === 'string') {
resultContent = result.content;
} else if (result.content && typeof result.content === 'object') {
if (result.content.text) {
resultContent = result.content.text;
} else if (Array.isArray(result.content)) {
resultContent = result.content
.map((c: any) => (typeof c === 'string' ? c : c.text || JSON.stringify(c)))
.join('\n');
} else {
resultContent = JSON.stringify(result.content, null, 2);
}
}
return (
<div className="space-y-2">
<div className="flex items-center gap-2 p-3 rounded-lg bg-muted/50">
<FileText className="h-4 w-4 text-primary" />
<span className="text-sm">File content:</span>
<code className="text-sm font-mono bg-background px-2 py-0.5 rounded flex-1 truncate">
{filePath}
</code>
</div>
{resultContent && <ReadResultWidget content={resultContent} filePath={filePath} />}
</div>
);
}
return (
<div className="flex items-center gap-2 p-3 rounded-lg bg-muted/50">
<FileText className="h-4 w-4 text-primary" />
<span className="text-sm">Reading file:</span>
<code className="text-sm font-mono bg-background px-2 py-0.5 rounded flex-1 truncate">
{filePath}
</code>
{!result && (
<div className="ml-auto flex items-center gap-1 text-xs text-muted-foreground">
<div className="h-2 w-2 bg-blue-500 rounded-full animate-pulse" />
<span>Loading...</span>
</div>
)}
</div>
);
};
/**
* Widget for Read tool result - shows file content with line numbers
*/
export const ReadResultWidget: React.FC<{ content: string; filePath?: string }> = ({ content, filePath }) => {
const [isExpanded, setIsExpanded] = useState(false);
// Extract file extension for syntax highlighting
const getLanguage = (path?: string) => {
if (!path) return "text";
const ext = path.split('.').pop()?.toLowerCase();
const languageMap: Record<string, string> = {
ts: "typescript",
tsx: "tsx",
js: "javascript",
jsx: "jsx",
py: "python",
rs: "rust",
go: "go",
java: "java",
cpp: "cpp",
c: "c",
cs: "csharp",
php: "php",
rb: "ruby",
swift: "swift",
kt: "kotlin",
scala: "scala",
sh: "bash",
bash: "bash",
zsh: "bash",
yaml: "yaml",
yml: "yaml",
json: "json",
xml: "xml",
html: "html",
css: "css",
scss: "scss",
sass: "sass",
less: "less",
sql: "sql",
md: "markdown",
toml: "ini",
ini: "ini",
dockerfile: "dockerfile",
makefile: "makefile"
};
return languageMap[ext || ""] || "text";
};
// Parse content to separate line numbers from code
const parseContent = (rawContent: string) => {
const lines = rawContent.split('\n');
const codeLines: string[] = [];
let minLineNumber = Infinity;
// First, determine if the content is likely a numbered list from the 'read' tool.
// It is if more than half the non-empty lines match the expected format.
const nonEmptyLines = lines.filter(line => line.trim() !== '');
if (nonEmptyLines.length === 0) {
return { codeContent: rawContent, startLineNumber: 1 };
}
const parsableLines = nonEmptyLines.filter(line => /^\s*\d+→/.test(line)).length;
const isLikelyNumbered = (parsableLines / nonEmptyLines.length) > 0.5;
if (!isLikelyNumbered) {
return { codeContent: rawContent, startLineNumber: 1 };
}
// If it's a numbered list, parse it strictly.
for (const line of lines) {
// Remove leading whitespace before parsing
const trimmedLine = line.trimStart();
const match = trimmedLine.match(/^(\d+)→(.*)$/);
if (match) {
const lineNum = parseInt(match[1], 10);
if (minLineNumber === Infinity) {
minLineNumber = lineNum;
}
// Preserve the code content exactly as it appears after the arrow
codeLines.push(match[2]);
} else if (line.trim() === '') {
// Preserve empty lines
codeLines.push('');
} else {
// If a line in a numbered block does not match, it's a formatting anomaly.
// Render it as a blank line to avoid showing the raw, un-parsed string.
codeLines.push('');
}
}
// Remove trailing empty lines
while (codeLines.length > 0 && codeLines[codeLines.length - 1] === '') {
codeLines.pop();
}
return {
codeContent: codeLines.join('\n'),
startLineNumber: minLineNumber === Infinity ? 1 : minLineNumber
};
};
const language = getLanguage(filePath);
const { codeContent, startLineNumber } = parseContent(content);
const lineCount = content.split('\n').filter(line => line.trim()).length;
const isLargeFile = lineCount > 20;
return (
<div className="rounded-lg overflow-hidden border bg-zinc-950 w-full">
<div className="px-4 py-2 border-b bg-zinc-900/50 flex items-center justify-between">
<div className="flex items-center gap-2">
<FileText className="h-3.5 w-3.5 text-muted-foreground" />
<span className="text-xs font-mono text-muted-foreground">
{filePath || "File content"}
</span>
{isLargeFile && (
<span className="text-xs text-muted-foreground">
({lineCount} lines)
</span>
)}
</div>
{isLargeFile && (
<button
onClick={() => setIsExpanded(!isExpanded)}
className="flex items-center gap-1 text-xs text-muted-foreground hover:text-foreground transition-colors"
>
<ChevronRight className={cn("h-3 w-3 transition-transform", isExpanded && "rotate-90")} />
{isExpanded ? "Collapse" : "Expand"}
</button>
)}
</div>
{(!isLargeFile || isExpanded) && (
<div className="relative overflow-x-auto">
<SyntaxHighlighter
language={language}
style={claudeSyntaxTheme}
showLineNumbers
startingLineNumber={startLineNumber}
wrapLongLines={false}
customStyle={{
margin: 0,
background: 'transparent',
lineHeight: '1.6'
}}
codeTagProps={{
style: {
fontSize: '0.75rem'
}
}}
lineNumberStyle={{
minWidth: "3.5rem",
paddingRight: "1rem",
textAlign: "right",
opacity: 0.5,
}}
>
{codeContent}
</SyntaxHighlighter>
</div>
)}
{isLargeFile && !isExpanded && (
<div className="px-4 py-3 text-xs text-muted-foreground text-center bg-zinc-900/30">
Click "Expand" to view the full file
</div>
)}
</div>
);
};
/**
* Widget for Glob tool
*/
export const GlobWidget: React.FC<{ pattern: string; result?: any }> = ({ pattern, result }) => {
// Extract result content if available
let resultContent = '';
let isError = false;
if (result) {
isError = result.is_error || false;
if (typeof result.content === 'string') {
resultContent = result.content;
} else if (result.content && typeof result.content === 'object') {
if (result.content.text) {
resultContent = result.content.text;
} else if (Array.isArray(result.content)) {
resultContent = result.content
.map((c: any) => (typeof c === 'string' ? c : c.text || JSON.stringify(c)))
.join('\n');
} else {
resultContent = JSON.stringify(result.content, null, 2);
}
}
}
return (
<div className="space-y-2">
<div className="flex items-center gap-2 p-3 rounded-lg bg-muted/50">
<Search className="h-4 w-4 text-primary" />
<span className="text-sm">Searching for pattern:</span>
<code className="text-sm font-mono bg-background px-2 py-0.5 rounded">
{pattern}
</code>
{!result && (
<div className="ml-auto flex items-center gap-1 text-xs text-muted-foreground">
<div className="h-2 w-2 bg-blue-500 rounded-full animate-pulse" />
<span>Searching...</span>
</div>
)}
</div>
{/* Show result if available */}
{result && (
<div className={cn(
"p-3 rounded-md border text-xs font-mono whitespace-pre-wrap overflow-x-auto",
isError
? "border-red-500/20 bg-red-500/5 text-red-400"
: "border-green-500/20 bg-green-500/5 text-green-300"
)}>
{resultContent || (isError ? "Search failed" : "No matches found")}
</div>
)}
</div>
);
};
/**
* Widget for Bash tool
*/
export const BashWidget: React.FC<{
command: string;
description?: string;
result?: any;
}> = ({ command, description, result }) => {
// Extract result content if available
let resultContent = '';
let isError = false;
if (result) {
isError = result.is_error || false;
if (typeof result.content === 'string') {
resultContent = result.content;
} else if (result.content && typeof result.content === 'object') {
if (result.content.text) {
resultContent = result.content.text;
} else if (Array.isArray(result.content)) {
resultContent = result.content
.map((c: any) => (typeof c === 'string' ? c : c.text || JSON.stringify(c)))
.join('\n');
} else {
resultContent = JSON.stringify(result.content, null, 2);
}
}
}
return (
<div className="rounded-lg border bg-zinc-950 overflow-hidden">
<div className="px-4 py-2 bg-zinc-900/50 flex items-center gap-2 border-b">
<Terminal className="h-3.5 w-3.5 text-green-500" />
<span className="text-xs font-mono text-muted-foreground">Terminal</span>
{description && (
<>
<ChevronRight className="h-3 w-3 text-muted-foreground" />
<span className="text-xs text-muted-foreground">{description}</span>
</>
)}
{/* Show loading indicator when no result yet */}
{!result && (
<div className="ml-auto flex items-center gap-1 text-xs text-muted-foreground">
<div className="h-2 w-2 bg-green-500 rounded-full animate-pulse" />
<span>Running...</span>
</div>
)}
</div>
<div className="p-4 space-y-3">
<code className="text-xs font-mono text-green-400 block">
$ {command}
</code>
{/* Show result if available */}
{result && (
<div className={cn(
"mt-3 p-3 rounded-md border text-xs font-mono whitespace-pre-wrap overflow-x-auto",
isError
? "border-red-500/20 bg-red-500/5 text-red-400"
: "border-green-500/20 bg-green-500/5 text-green-300"
)}>
{resultContent || (isError ? "Command failed" : "Command completed")}
</div>
)}
</div>
</div>
);
};
/**
* Widget for Write tool
*/
export const WriteWidget: React.FC<{ filePath: string; content: string; result?: any }> = ({ filePath, content, result: _result }) => {
const [isMaximized, setIsMaximized] = useState(false);
// Extract file extension for syntax highlighting
const getLanguage = (path: string) => {
const ext = path.split('.').pop()?.toLowerCase();
const languageMap: Record<string, string> = {
ts: "typescript",
tsx: "tsx",
js: "javascript",
jsx: "jsx",
py: "python",
rs: "rust",
go: "go",
java: "java",
cpp: "cpp",
c: "c",
cs: "csharp",
php: "php",
rb: "ruby",
swift: "swift",
kt: "kotlin",
scala: "scala",
sh: "bash",
bash: "bash",
zsh: "bash",
yaml: "yaml",
yml: "yaml",
json: "json",
xml: "xml",
html: "html",
css: "css",
scss: "scss",
sass: "sass",
less: "less",
sql: "sql",
md: "markdown",
toml: "ini",
ini: "ini",
dockerfile: "dockerfile",
makefile: "makefile"
};
return languageMap[ext || ""] || "text";
};
const language = getLanguage(filePath);
const isLargeContent = content.length > 1000;
const displayContent = isLargeContent ? content.substring(0, 1000) + "\n..." : content;
// Maximized view as a modal
const MaximizedView = () => {
if (!isMaximized) return null;
return createPortal(
<div className="fixed inset-0 z-50 flex items-center justify-center">
{/* Backdrop with blur */}
<div
className="absolute inset-0 bg-black/60 backdrop-blur-sm"
onClick={() => setIsMaximized(false)}
/>
{/* Modal content */}
<div className="relative w-[90vw] h-[90vh] max-w-7xl bg-zinc-950 rounded-lg border shadow-2xl overflow-hidden flex flex-col">
{/* Header */}
<div className="px-6 py-4 border-b bg-zinc-950 flex items-center justify-between">
<div className="flex items-center gap-3">
<FileText className="h-4 w-4 text-muted-foreground" />
<span className="text-sm font-mono text-muted-foreground">{filePath}</span>
</div>
<Button
variant="ghost"
size="icon"
className="h-8 w-8"
onClick={() => setIsMaximized(false)}
>
<X className="h-4 w-4" />
</Button>
</div>
{/* Code content */}
<div className="flex-1 overflow-auto">
<SyntaxHighlighter
language={language}
style={claudeSyntaxTheme}
customStyle={{
margin: 0,
padding: '1.5rem',
background: 'transparent',
fontSize: '0.75rem',
lineHeight: '1.5',
height: '100%'
}}
showLineNumbers
>
{content}
</SyntaxHighlighter>
</div>
</div>
</div>,
document.body
);
};
const CodePreview = ({ codeContent, truncated }: { codeContent: string; truncated: boolean }) => (
<div
className="rounded-lg border bg-zinc-950 overflow-hidden w-full"
style={{
height: truncated ? '440px' : 'auto',
maxHeight: truncated ? '440px' : undefined,
display: 'flex',
flexDirection: 'column'
}}
>
<div className="px-4 py-2 border-b bg-zinc-950 flex items-center justify-between sticky top-0 z-10">
<span className="text-xs font-mono text-muted-foreground">Preview</span>
{isLargeContent && truncated && (
<div className="flex items-center gap-2">
<Badge variant="outline" className="text-xs whitespace-nowrap">
Truncated to 1000 chars
</Badge>
<Button
variant="ghost"
size="icon"
className="h-6 w-6"
onClick={() => setIsMaximized(true)}
>
<Maximize2 className="h-3 w-3" />
</Button>
</div>
)}
</div>
<div className="overflow-auto flex-1">
<SyntaxHighlighter
language={language}
style={claudeSyntaxTheme}
customStyle={{
margin: 0,
padding: '1rem',
background: 'transparent',
fontSize: '0.75rem',
lineHeight: '1.5',
overflowX: 'auto'
}}
wrapLongLines={false}
>
{codeContent}
</SyntaxHighlighter>
</div>
</div>
);
return (
<div className="space-y-2">
<div className="flex items-center gap-2 p-3 rounded-lg bg-muted/50">
<FileEdit className="h-4 w-4 text-primary" />
<span className="text-sm">Writing to file:</span>
<code className="text-sm font-mono bg-background px-2 py-0.5 rounded flex-1 truncate">
{filePath}
</code>
</div>
<CodePreview codeContent={displayContent} truncated={true} />
<MaximizedView />
</div>
);
};
/**
* Widget for Grep tool
*/
export const GrepWidget: React.FC<{
pattern: string;
include?: string;
path?: string;
exclude?: string;
result?: any;
}> = ({ pattern, include, path, exclude, result: _result }) => {
return (
<div className="space-y-2">
<div className="flex items-center gap-2 mb-2">
<Code className="h-4 w-4 text-primary" />
<span className="text-sm font-medium">Searching with grep</span>
</div>
<div className="space-y-1.5 text-xs">
<div className="flex gap-2 items-center">
<span className="text-muted-foreground w-16">Pattern:</span>
<code className="font-mono bg-muted px-2 py-0.5 rounded flex-1">
{pattern}
</code>
</div>
{path && (
<div className="flex gap-2 items-center">
<span className="text-muted-foreground w-16">Path:</span>
<code className="font-mono bg-muted px-2 py-0.5 rounded flex-1">
{path}
</code>
</div>
)}
{include && (
<div className="flex gap-2 items-center">
<span className="text-muted-foreground w-16">Include:</span>
<code className="font-mono bg-muted px-2 py-0.5 rounded">
{include}
</code>
</div>
)}
{exclude && (
<div className="flex gap-2 items-center">
<span className="text-muted-foreground w-16">Exclude:</span>
<code className="font-mono bg-muted px-2 py-0.5 rounded">
{exclude}
</code>
</div>
)}
</div>
</div>
);
};
const getLanguage = (path: string) => {
const ext = path.split('.').pop()?.toLowerCase();
const languageMap: Record<string, string> = {
ts: "typescript",
tsx: "tsx",
js: "javascript",
jsx: "jsx",
py: "python",
rs: "rust",
go: "go",
java: "java",
cpp: "cpp",
c: "c",
cs: "csharp",
php: "php",
rb: "ruby",
swift: "swift",
kt: "kotlin",
scala: "scala",
sh: "bash",
bash: "bash",
zsh: "bash",
yaml: "yaml",
yml: "yaml",
json: "json",
xml: "xml",
html: "html",
css: "css",
scss: "scss",
sass: "sass",
less: "less",
sql: "sql",
md: "markdown",
toml: "ini",
ini: "ini",
dockerfile: "dockerfile",
makefile: "makefile"
};
return languageMap[ext || ""] || "text";
};
/**
* Widget for Edit tool - shows the edit operation
*/
export const EditWidget: React.FC<{
file_path: string;
old_string: string;
new_string: string;
result?: any;
}> = ({ file_path, old_string, new_string, result: _result }) => {
const diffResult = Diff.diffLines(old_string || '', new_string || '', {
newlineIsToken: true,
ignoreWhitespace: false
});
const language = getLanguage(file_path);
return (
<div className="space-y-2">
<div className="flex items-center gap-2 mb-2">
<FileEdit className="h-4 w-4 text-primary" />
<span className="text-sm font-medium">Applying Edit to:</span>
<code className="text-sm font-mono bg-background px-2 py-0.5 rounded flex-1 truncate">
{file_path}
</code>
</div>
<div className="rounded-lg border bg-zinc-950 overflow-hidden text-xs font-mono">
<div className="max-h-[440px] overflow-y-auto overflow-x-auto">
{diffResult.map((part, index) => {
const partClass = part.added
? 'bg-green-950/20'
: part.removed
? 'bg-red-950/20'
: '';
if (!part.added && !part.removed && part.count && part.count > 8) {
return (
<div key={index} className="px-4 py-1 bg-zinc-900 border-y border-zinc-800 text-center text-zinc-500 text-xs">
... {part.count} unchanged lines ...
</div>
);
}
const value = part.value.endsWith('\n') ? part.value.slice(0, -1) : part.value;
return (
<div key={index} className={cn(partClass, "flex")}>
<div className="w-8 select-none text-center flex-shrink-0">
{part.added ? <span className="text-green-400">+</span> : part.removed ? <span className="text-red-400">-</span> : null}
</div>
<div className="flex-1">
<SyntaxHighlighter
language={language}
style={claudeSyntaxTheme}
PreTag="div"
wrapLongLines={false}
customStyle={{
margin: 0,
padding: 0,
background: 'transparent',
}}
codeTagProps={{
style: {
fontSize: '0.75rem',
lineHeight: '1.6',
}
}}
>
{value}
</SyntaxHighlighter>
</div>
</div>
);
})}
</div>
</div>
</div>
);
};
/**
* Widget for Edit tool result - shows a diff view
*/
export const EditResultWidget: React.FC<{ content: string }> = ({ content }) => {
// Parse the content to extract file path and code snippet
const lines = content.split('\n');
let filePath = '';
const codeLines: { lineNumber: string; code: string }[] = [];
let inCodeBlock = false;
for (const rawLine of lines) {
const line = rawLine.replace(/\r$/, '');
if (line.includes('The file') && line.includes('has been updated')) {
const match = line.match(/The file (.+) has been updated/);
if (match) {
filePath = match[1];
}
} else if (/^\s*\d+/.test(line)) {
inCodeBlock = true;
const lineMatch = line.match(/^\s*(\d+)\t?(.*)$/);
if (lineMatch) {
const [, lineNum, codePart] = lineMatch;
codeLines.push({
lineNumber: lineNum,
code: codePart,
});
}
} else if (inCodeBlock) {
// Allow non-numbered lines inside a code block (for empty lines)
codeLines.push({ lineNumber: '', code: line });
}
}
const codeContent = codeLines.map(l => l.code).join('\n');
const firstNumberedLine = codeLines.find(l => l.lineNumber !== '');
const startLineNumber = firstNumberedLine ? parseInt(firstNumberedLine.lineNumber) : 1;
const language = getLanguage(filePath);
return (
<div className="rounded-lg border bg-zinc-950 overflow-hidden">
<div className="px-4 py-2 border-b bg-emerald-950/30 flex items-center gap-2">
<GitBranch className="h-3.5 w-3.5 text-emerald-500" />
<span className="text-xs font-mono text-emerald-400">Edit Result</span>
{filePath && (
<>
<ChevronRight className="h-3 w-3 text-muted-foreground" />
<span className="text-xs font-mono text-muted-foreground">{filePath}</span>
</>
)}
</div>
<div className="overflow-x-auto max-h-[440px]">
<SyntaxHighlighter
language={language}
style={claudeSyntaxTheme}
showLineNumbers
startingLineNumber={startLineNumber}
wrapLongLines={false}
customStyle={{
margin: 0,
background: 'transparent',
lineHeight: '1.6'
}}
codeTagProps={{
style: {
fontSize: '0.75rem'
}
}}
lineNumberStyle={{
minWidth: "3.5rem",
paddingRight: "1rem",
textAlign: "right",
opacity: 0.5,
}}
>
{codeContent}
</SyntaxHighlighter>
</div>
</div>
);
};
/**
* Widget for MCP (Model Context Protocol) tools
*/
export const MCPWidget: React.FC<{
toolName: string;
input?: any;
result?: any;
}> = ({ toolName, input, result: _result }) => {
const [isExpanded, setIsExpanded] = useState(false);
// Parse the tool name to extract components
// Format: mcp__namespace__method
const parts = toolName.split('__');
const namespace = parts[1] || '';
const method = parts[2] || '';
// Format namespace for display (handle kebab-case and snake_case)
const formatNamespace = (ns: string) => {
return ns
.replace(/-/g, ' ')
.replace(/_/g, ' ')
.split(' ')
.map(word => word.charAt(0).toUpperCase() + word.slice(1))
.join(' ');
};
// Format method name
const formatMethod = (m: string) => {
return m
.replace(/_/g, ' ')
.split(' ')
.map(word => word.charAt(0).toUpperCase() + word.slice(1))
.join(' ');
};
const hasInput = input && Object.keys(input).length > 0;
const inputString = hasInput ? JSON.stringify(input, null, 2) : '';
const isLargeInput = inputString.length > 200;
// Count tokens approximation (very rough estimate)
const estimateTokens = (str: string) => {
// Rough approximation: ~4 characters per token
return Math.ceil(str.length / 4);
};
const inputTokens = hasInput ? estimateTokens(inputString) : 0;
return (
<div className="rounded-lg border border-violet-500/20 bg-gradient-to-br from-violet-500/5 to-purple-500/5 overflow-hidden">
{/* Header */}
<div className="px-4 py-3 bg-gradient-to-r from-violet-500/10 to-purple-500/10 border-b border-violet-500/20">
<div className="flex items-center justify-between">
<div className="flex items-center gap-2">
<div className="relative">
<Package2 className="h-4 w-4 text-violet-500" />
<Sparkles className="h-2.5 w-2.5 text-violet-400 absolute -top-1 -right-1" />
</div>
<span className="text-sm font-medium text-violet-600 dark:text-violet-400">MCP Tool</span>
</div>
{hasInput && (
<div className="flex items-center gap-2">
<Badge
variant="outline"
className="text-xs border-violet-500/30 text-violet-600 dark:text-violet-400"
>
~{inputTokens} tokens
</Badge>
{isLargeInput && (
<button
onClick={() => setIsExpanded(!isExpanded)}
className="text-violet-500 hover:text-violet-600 transition-colors"
>
{isExpanded ? (
<ChevronUp className="h-3.5 w-3.5" />
) : (
<ChevronDown className="h-3.5 w-3.5" />
)}
</button>
)}
</div>
)}
</div>
</div>
{/* Tool Path */}
<div className="px-4 py-3 space-y-3">
<div className="flex items-center gap-2 text-sm">
<span className="text-violet-500 font-medium">MCP</span>
<ChevronRight className="h-3.5 w-3.5 text-muted-foreground" />
<span className="text-purple-600 dark:text-purple-400 font-medium">
{formatNamespace(namespace)}
</span>
<ChevronRight className="h-3.5 w-3.5 text-muted-foreground" />
<div className="flex items-center gap-1.5">
<Zap className="h-3.5 w-3.5 text-violet-500" />
<code className="text-sm font-mono font-semibold text-foreground">
{formatMethod(method)}
<span className="text-muted-foreground">()</span>
</code>
</div>
</div>
{/* Input Parameters */}
{hasInput && (
<div className={cn(
"transition-all duration-200",
!isExpanded && isLargeInput && "max-h-[200px]"
)}>
<div className="relative">
<div className={cn(
"rounded-lg border bg-zinc-950/50 overflow-hidden",
!isExpanded && isLargeInput && "max-h-[200px]"
)}>
<div className="px-3 py-2 border-b bg-zinc-900/50 flex items-center gap-2">
<Code className="h-3 w-3 text-violet-500" />
<span className="text-xs font-mono text-muted-foreground">Parameters</span>
</div>
<div className={cn(
"overflow-auto",
!isExpanded && isLargeInput && "max-h-[150px]"
)}>
<SyntaxHighlighter
language="json"
style={claudeSyntaxTheme}
customStyle={{
margin: 0,
padding: '0.75rem',
background: 'transparent',
fontSize: '0.75rem',
lineHeight: '1.5',
}}
wrapLongLines={false}
>
{inputString}
</SyntaxHighlighter>
</div>
</div>
{/* Gradient fade for collapsed view */}
{!isExpanded && isLargeInput && (
<div className="absolute bottom-0 left-0 right-0 h-12 bg-gradient-to-t from-zinc-950/80 to-transparent pointer-events-none" />
)}
</div>
{/* Expand hint */}
{!isExpanded && isLargeInput && (
<div className="text-center mt-2">
<button
onClick={() => setIsExpanded(true)}
className="text-xs text-violet-500 hover:text-violet-600 transition-colors inline-flex items-center gap-1"
>
<ChevronDown className="h-3 w-3" />
Show full parameters
</button>
</div>
)}
</div>
)}
{/* No input message */}
{!hasInput && (
<div className="text-xs text-muted-foreground italic px-2">
No parameters required
</div>
)}
</div>
</div>
);
};
/**
* Widget for user commands (e.g., model, clear)
*/
export const CommandWidget: React.FC<{
commandName: string;
commandMessage: string;
commandArgs?: string;
}> = ({ commandName, commandMessage, commandArgs }) => {
return (
<div className="rounded-lg border bg-zinc-950/50 overflow-hidden">
<div className="px-4 py-2 border-b bg-zinc-900/50 flex items-center gap-2">
<Terminal className="h-3.5 w-3.5 text-blue-500" />
<span className="text-xs font-mono text-blue-400">Command</span>
</div>
<div className="p-3 space-y-1">
<div className="flex items-center gap-2">
<span className="text-xs text-muted-foreground">$</span>
<code className="text-sm font-mono text-foreground">{commandName}</code>
{commandArgs && (
<code className="text-sm font-mono text-muted-foreground">{commandArgs}</code>
)}
</div>
{commandMessage && commandMessage !== commandName && (
<div className="text-xs text-muted-foreground ml-4">{commandMessage}</div>
)}
</div>
</div>
);
};
/**
* Widget for command output/stdout
*/
export const CommandOutputWidget: React.FC<{
output: string;
onLinkDetected?: (url: string) => void;
}> = ({ output, onLinkDetected }) => {
// Check for links on mount and when output changes
React.useEffect(() => {
if (output && onLinkDetected) {
const links = detectLinks(output);
if (links.length > 0) {
// Notify about the first detected link
onLinkDetected(links[0].fullUrl);
}
}
}, [output, onLinkDetected]);
// Parse ANSI codes for basic styling
const parseAnsiToReact = (text: string) => {
// Simple ANSI parsing - handles bold (\u001b[1m) and reset (\u001b[22m)
const parts = text.split(/(\u001b\[\d+m)/);
let isBold = false;
const elements: React.ReactNode[] = [];
parts.forEach((part, idx) => {
if (part === '\u001b[1m') {
isBold = true;
return;
} else if (part === '\u001b[22m') {
isBold = false;
return;
} else if (part.match(/\u001b\[\d+m/)) {
// Ignore other ANSI codes for now
return;
}
if (!part) return;
// Make links clickable within this part
const linkElements = makeLinksClickable(part, (url) => {
onLinkDetected?.(url);
});
if (isBold) {
elements.push(
<span key={idx} className="font-bold">
{linkElements}
</span>
);
} else {
elements.push(...linkElements);
}
});
return elements;
};
return (
<div className="rounded-lg border bg-zinc-950/50 overflow-hidden">
<div className="px-4 py-2 bg-zinc-900/50 flex items-center gap-2">
<ChevronRight className="h-3 w-3 text-green-500" />
<span className="text-xs font-mono text-green-400">Output</span>
</div>
<div className="p-3">
<pre className="text-sm font-mono text-zinc-300 whitespace-pre-wrap">
{output ? parseAnsiToReact(output) : <span className="text-zinc-500 italic">No output</span>}
</pre>
</div>
</div>
);
};
/**
* Widget for AI-generated summaries
*/
export const SummaryWidget: React.FC<{
summary: string;
leafUuid?: string;
}> = ({ summary, leafUuid }) => {
return (
<div className="rounded-lg border border-blue-500/20 bg-blue-500/5 overflow-hidden">
<div className="px-4 py-3 flex items-start gap-3">
<div className="mt-0.5">
<div className="h-8 w-8 rounded-full bg-blue-500/10 flex items-center justify-center">
<Info className="h-4 w-4 text-blue-500" />
</div>
</div>
<div className="flex-1 space-y-1">
<div className="text-xs font-medium text-blue-600 dark:text-blue-400">AI Summary</div>
<p className="text-sm text-foreground">{summary}</p>
{leafUuid && (
<div className="text-xs text-muted-foreground mt-2">
ID: <code className="font-mono">{leafUuid.slice(0, 8)}...</code>
</div>
)}
</div>
</div>
</div>
);
};
/**
* Widget for displaying MultiEdit tool usage
*/
export const MultiEditWidget: React.FC<{
file_path: string;
edits: Array<{ old_string: string; new_string: string }>;
result?: any;
}> = ({ file_path, edits, result: _result }) => {
const [isExpanded, setIsExpanded] = useState(false);
const language = getLanguage(file_path);
return (
<div className="space-y-2">
<div className="flex items-center gap-2 mb-2">
<FileEdit className="h-4 w-4 text-muted-foreground" />
<span className="text-sm font-medium">Using tool: MultiEdit</span>
</div>
<div className="ml-6 space-y-2">
<div className="flex items-center gap-2">
<FileText className="h-3 w-3 text-blue-500" />
<code className="text-xs font-mono text-blue-500">{file_path}</code>
</div>
<div className="space-y-1">
<button
onClick={() => setIsExpanded(!isExpanded)}
className="flex items-center gap-1 text-xs text-muted-foreground hover:text-foreground transition-colors"
>
<ChevronRight className={cn("h-3 w-3 transition-transform", isExpanded && "rotate-90")} />
{edits.length} edit{edits.length !== 1 ? 's' : ''}
</button>
{isExpanded && (
<div className="space-y-3 mt-3">
{edits.map((edit, index) => {
const diffResult = Diff.diffLines(edit.old_string || '', edit.new_string || '', {
newlineIsToken: true,
ignoreWhitespace: false
});
return (
<div key={index} className="space-y-1">
<div className="text-xs font-medium text-muted-foreground">Edit {index + 1}</div>
<div className="rounded-lg border bg-zinc-950 overflow-hidden text-xs font-mono">
<div className="max-h-[300px] overflow-y-auto overflow-x-auto">
{diffResult.map((part, partIndex) => {
const partClass = part.added
? 'bg-green-950/20'
: part.removed
? 'bg-red-950/20'
: '';
if (!part.added && !part.removed && part.count && part.count > 8) {
return (
<div key={partIndex} className="px-4 py-1 bg-zinc-900 border-y border-zinc-800 text-center text-zinc-500 text-xs">
... {part.count} unchanged lines ...
</div>
);
}
const value = part.value.endsWith('\n') ? part.value.slice(0, -1) : part.value;
return (
<div key={partIndex} className={cn(partClass, "flex")}>
<div className="w-8 select-none text-center flex-shrink-0">
{part.added ? <span className="text-green-400">+</span> : part.removed ? <span className="text-red-400">-</span> : null}
</div>
<div className="flex-1">
<SyntaxHighlighter
language={language}
style={claudeSyntaxTheme}
PreTag="div"
wrapLongLines={false}
customStyle={{
margin: 0,
padding: 0,
background: 'transparent',
}}
codeTagProps={{
style: {
fontSize: '0.75rem',
lineHeight: '1.6',
}
}}
>
{value}
</SyntaxHighlighter>
</div>
</div>
);
})}
</div>
</div>
</div>
);
})}
</div>
)}
</div>
</div>
</div>
);
};
/**
* Widget for displaying MultiEdit tool results with diffs
*/
export const MultiEditResultWidget: React.FC<{
content: string;
edits?: Array<{ old_string: string; new_string: string }>;
}> = ({ content, edits }) => {
// If we have the edits array, show a nice diff view
if (edits && edits.length > 0) {
return (
<div className="space-y-3">
<div className="flex items-center gap-2 px-3 py-2 bg-green-500/10 rounded-t-md border-b border-green-500/20">
<GitBranch className="h-4 w-4 text-green-500" />
<span className="text-sm font-medium text-green-600 dark:text-green-400">
{edits.length} Changes Applied
</span>
</div>
<div className="space-y-4">
{edits.map((edit, index) => {
// Split the strings into lines for diff display
const oldLines = edit.old_string.split('\n');
const newLines = edit.new_string.split('\n');
return (
<div key={index} className="border border-border/50 rounded-md overflow-hidden">
<div className="px-3 py-1 bg-muted/50 border-b border-border/50">
<span className="text-xs font-medium text-muted-foreground">Change {index + 1}</span>
</div>
<div className="font-mono text-xs">
{/* Show removed lines */}
{oldLines.map((line, lineIndex) => (
<div
key={`old-${lineIndex}`}
className="flex bg-red-500/10 border-l-4 border-red-500"
>
<span className="w-12 px-2 py-1 text-red-600 dark:text-red-400 select-none text-right bg-red-500/10">
-{lineIndex + 1}
</span>
<pre className="flex-1 px-3 py-1 text-red-700 dark:text-red-300 overflow-x-auto">
<code>{line || ' '}</code>
</pre>
</div>
))}
{/* Show added lines */}
{newLines.map((line, lineIndex) => (
<div
key={`new-${lineIndex}`}
className="flex bg-green-500/10 border-l-4 border-green-500"
>
<span className="w-12 px-2 py-1 text-green-600 dark:text-green-400 select-none text-right bg-green-500/10">
+{lineIndex + 1}
</span>
<pre className="flex-1 px-3 py-1 text-green-700 dark:text-green-300 overflow-x-auto">
<code>{line || ' '}</code>
</pre>
</div>
))}
</div>
</div>
);
})}
</div>
</div>
);
}
// Fallback to simple content display
return (
<div className="p-3 bg-muted/50 rounded-md border">
<pre className="text-xs font-mono whitespace-pre-wrap">{content}</pre>
</div>
);
};
/**
* Widget for displaying system reminders (instead of raw XML)
*/
export const SystemReminderWidget: React.FC<{ message: string }> = ({ message }) => {
// Extract icon based on message content
let icon = <Info className="h-4 w-4" />;
let colorClass = "border-blue-500/20 bg-blue-500/5 text-blue-600";
if (message.toLowerCase().includes("warning")) {
icon = <AlertCircle className="h-4 w-4" />;
colorClass = "border-yellow-500/20 bg-yellow-500/5 text-yellow-600";
} else if (message.toLowerCase().includes("error")) {
icon = <AlertCircle className="h-4 w-4" />;
colorClass = "border-destructive/20 bg-destructive/5 text-destructive";
}
return (
<div className={cn("flex items-start gap-2 p-3 rounded-md border", colorClass)}>
<div className="mt-0.5">{icon}</div>
<div className="flex-1 text-sm">{message}</div>
</div>
);
};
/**
* Widget for displaying system initialization information in a visually appealing way
* Separates regular tools from MCP tools and provides icons for each tool type
*/
export const SystemInitializedWidget: React.FC<{
sessionId?: string;
model?: string;
cwd?: string;
tools?: string[];
}> = ({ sessionId, model, cwd, tools = [] }) => {
const [mcpExpanded, setMcpExpanded] = useState(false);
// Separate regular tools from MCP tools
const regularTools = tools.filter(tool => !tool.startsWith('mcp__'));
const mcpTools = tools.filter(tool => tool.startsWith('mcp__'));
// Tool icon mapping for regular tools
const toolIcons: Record<string, LucideIcon> = {
'task': CheckSquare,
'bash': Terminal,
'glob': FolderSearch,
'grep': Search,
'ls': List,
'exit_plan_mode': LogOut,
'read': FileText,
'edit': Edit3,
'multiedit': Edit3,
'write': FilePlus,
'notebookread': Book,
'notebookedit': BookOpen,
'webfetch': Globe,
'todoread': ListChecks,
'todowrite': ListPlus,
'websearch': Globe2,
};
// Get icon for a tool, fallback to Wrench
const getToolIcon = (toolName: string) => {
const normalizedName = toolName.toLowerCase();
return toolIcons[normalizedName] || Wrench;
};
// Format MCP tool name (remove mcp__ prefix and format underscores)
const formatMcpToolName = (toolName: string) => {
// Remove mcp__ prefix
const withoutPrefix = toolName.replace(/^mcp__/, '');
// Split by double underscores first (provider separator)
const parts = withoutPrefix.split('__');
if (parts.length >= 2) {
// Format provider name and method name separately
const provider = parts[0].replace(/_/g, ' ').replace(/-/g, ' ')
.split(' ')
.map(word => word.charAt(0).toUpperCase() + word.slice(1))
.join(' ');
const method = parts.slice(1).join('__').replace(/_/g, ' ')
.split(' ')
.map(word => word.charAt(0).toUpperCase() + word.slice(1))
.join(' ');
return { provider, method };
}
// Fallback formatting
return {
provider: 'MCP',
method: withoutPrefix.replace(/_/g, ' ')
.split(' ')
.map(word => word.charAt(0).toUpperCase() + word.slice(1))
.join(' ')
};
};
// Group MCP tools by provider
const mcpToolsByProvider = mcpTools.reduce((acc, tool) => {
const { provider } = formatMcpToolName(tool);
if (!acc[provider]) {
acc[provider] = [];
}
acc[provider].push(tool);
return acc;
}, {} as Record<string, string[]>);
return (
<Card className="border-blue-500/20 bg-blue-500/5">
<CardContent className="p-4">
<div className="flex items-start gap-3">
<Settings className="h-5 w-5 text-blue-500 mt-0.5" />
<div className="flex-1 space-y-4">
<h4 className="font-semibold text-sm">System Initialized</h4>
{/* Session Info */}
<div className="space-y-2">
{sessionId && (
<div className="flex items-center gap-2 text-xs">
<Fingerprint className="h-3.5 w-3.5 text-muted-foreground" />
<span className="text-muted-foreground">Session ID:</span>
<code className="font-mono text-xs bg-muted px-1.5 py-0.5 rounded">
{sessionId}
</code>
</div>
)}
{model && (
<div className="flex items-center gap-2 text-xs">
<Cpu className="h-3.5 w-3.5 text-muted-foreground" />
<span className="text-muted-foreground">Model:</span>
<code className="font-mono text-xs bg-muted px-1.5 py-0.5 rounded">
{model}
</code>
</div>
)}
{cwd && (
<div className="flex items-center gap-2 text-xs">
<FolderOpen className="h-3.5 w-3.5 text-muted-foreground" />
<span className="text-muted-foreground">Working Directory:</span>
<code className="font-mono text-xs bg-muted px-1.5 py-0.5 rounded break-all">
{cwd}
</code>
</div>
)}
</div>
{/* Regular Tools */}
{regularTools.length > 0 && (
<div className="space-y-2">
<div className="flex items-center gap-2">
<Wrench className="h-3.5 w-3.5 text-muted-foreground" />
<span className="text-xs font-medium text-muted-foreground">
Available Tools ({regularTools.length})
</span>
</div>
<div className="flex flex-wrap gap-1.5">
{regularTools.map((tool, idx) => {
const Icon = getToolIcon(tool);
return (
<Badge
key={idx}
variant="secondary"
className="text-xs py-0.5 px-2 flex items-center gap-1"
>
<Icon className="h-3 w-3" />
{tool}
</Badge>
);
})}
</div>
</div>
)}
{/* MCP Tools */}
{mcpTools.length > 0 && (
<div className="space-y-2">
<button
onClick={() => setMcpExpanded(!mcpExpanded)}
className="flex items-center gap-2 text-xs font-medium text-muted-foreground hover:text-foreground transition-colors"
>
<Package className="h-3.5 w-3.5" />
<span>MCP Services ({mcpTools.length})</span>
<ChevronDown className={cn(
"h-3 w-3 transition-transform",
mcpExpanded && "rotate-180"
)} />
</button>
{mcpExpanded && (
<div className="ml-5 space-y-3">
{Object.entries(mcpToolsByProvider).map(([provider, providerTools]) => (
<div key={provider} className="space-y-1.5">
<div className="flex items-center gap-1.5 text-xs text-muted-foreground">
<Package2 className="h-3 w-3" />
<span className="font-medium">{provider}</span>
<span className="text-muted-foreground/60">({providerTools.length})</span>
</div>
<div className="ml-4 flex flex-wrap gap-1">
{providerTools.map((tool, idx) => {
const { method } = formatMcpToolName(tool);
return (
<Badge
key={idx}
variant="outline"
className="text-xs py-0 px-1.5 font-normal"
>
{method}
</Badge>
);
})}
</div>
</div>
))}
</div>
)}
</div>
)}
{/* Show message if no tools */}
{tools.length === 0 && (
<div className="text-xs text-muted-foreground italic">
No tools available
</div>
)}
</div>
</div>
</CardContent>
</Card>
);
};
/**
* Widget for Task tool - displays sub-agent task information
*/
export const TaskWidget: React.FC<{
description?: string;
prompt?: string;
result?: any;
}> = ({ description, prompt, result: _result }) => {
const [isExpanded, setIsExpanded] = useState(false);
return (
<div className="space-y-2">
<div className="flex items-center gap-2 mb-2">
<div className="relative">
<Bot className="h-4 w-4 text-purple-500" />
<Sparkles className="h-2.5 w-2.5 text-purple-400 absolute -top-1 -right-1" />
</div>
<span className="text-sm font-medium">Spawning Sub-Agent Task</span>
</div>
<div className="ml-6 space-y-3">
{description && (
<div className="rounded-lg border border-purple-500/20 bg-purple-500/5 p-3">
<div className="flex items-center gap-2 mb-1">
<Zap className="h-3.5 w-3.5 text-purple-500" />
<span className="text-xs font-medium text-purple-600 dark:text-purple-400">Task Description</span>
</div>
<p className="text-sm text-foreground ml-5">{description}</p>
</div>
)}
{prompt && (
<div className="space-y-2">
<button
onClick={() => setIsExpanded(!isExpanded)}
className="flex items-center gap-1.5 text-xs font-medium text-muted-foreground hover:text-foreground transition-colors"
>
<ChevronRight className={cn("h-3 w-3 transition-transform", isExpanded && "rotate-90")} />
<span>Task Instructions</span>
</button>
{isExpanded && (
<div className="rounded-lg border bg-muted/30 p-3">
<pre className="text-xs font-mono text-muted-foreground whitespace-pre-wrap">
{prompt}
</pre>
</div>
)}
</div>
)}
</div>
</div>
);
};
/**
* Widget for displaying AI thinking/reasoning content
* Collapsible and closed by default
*/
export const ThinkingWidget: React.FC<{
thinking: string;
signature?: string;
}> = ({ thinking, signature }) => {
const [isExpanded, setIsExpanded] = useState(false);
return (
<div className="rounded-lg border border-purple-500/20 bg-gradient-to-br from-purple-500/5 to-violet-500/5 overflow-hidden">
<button
onClick={() => setIsExpanded(!isExpanded)}
className="w-full px-4 py-3 flex items-center justify-between hover:bg-purple-500/10 transition-colors"
>
<div className="flex items-center gap-2">
<div className="relative">
<Bot className="h-4 w-4 text-purple-500" />
<Sparkles className="h-2.5 w-2.5 text-purple-400 absolute -top-1 -right-1 animate-pulse" />
</div>
<span className="text-sm font-medium text-purple-600 dark:text-purple-400">
Thinking...
</span>
</div>
<ChevronRight className={cn(
"h-4 w-4 text-purple-500 transition-transform",
isExpanded && "rotate-90"
)} />
</button>
{isExpanded && (
<div className="px-4 pb-4 pt-2 space-y-3 border-t border-purple-500/20">
<div className="prose prose-sm dark:prose-invert max-w-none">
<pre className="text-xs font-mono text-purple-700 dark:text-purple-300 whitespace-pre-wrap bg-purple-500/5 p-3 rounded-lg">
{thinking}
</pre>
</div>
{signature && (
<div className="text-xs text-purple-600/60 dark:text-purple-400/60 font-mono truncate">
Signature: {signature.slice(0, 16)}...
</div>
)}
</div>
)}
</div>
);
};