suna/frontend/src/components/thread/tool-call-side-panel.tsx

742 lines
28 KiB
TypeScript
Raw Normal View History

2025-04-20 08:27:32 +08:00
'use client';
import { Project } from '@/lib/api';
2025-05-25 17:51:20 +08:00
import { getToolIcon, getUserFriendlyToolName } from '@/components/thread/utils';
import React from 'react';
import { Slider } from '@/components/ui/slider';
import { Skeleton } from '@/components/ui/skeleton';
2025-04-20 08:27:32 +08:00
import { ApiMessageType } from '@/components/thread/types';
import { CircleDashed, X, ChevronLeft, ChevronRight, Computer, Radio } from 'lucide-react';
import { cn } from '@/lib/utils';
import { useIsMobile } from '@/hooks/use-mobile';
import { Button } from '@/components/ui/button';
2025-05-19 01:37:00 +08:00
import { ToolView } from './tool-views/wrapper';
2025-04-16 15:16:38 +08:00
2025-04-18 20:28:11 +08:00
export interface ToolCallInput {
assistantCall: {
content?: string;
name?: string;
2025-04-18 21:42:23 +08:00
timestamp?: string;
2025-04-18 20:28:11 +08:00
};
toolResult?: {
content?: string;
isSuccess?: boolean;
2025-04-18 21:42:23 +08:00
timestamp?: string;
2025-04-18 20:28:11 +08:00
};
2025-04-20 08:27:32 +08:00
messages?: ApiMessageType[];
2025-04-17 08:43:33 +08:00
}
2025-04-18 20:28:11 +08:00
interface ToolCallSidePanelProps {
isOpen: boolean;
onClose: () => void;
toolCalls: ToolCallInput[];
currentIndex: number;
onNavigate: (newIndex: number) => void;
externalNavigateToIndex?: number;
2025-04-20 08:27:32 +08:00
messages?: ApiMessageType[];
agentStatus: string;
2025-04-18 20:28:11 +08:00
project?: Project;
renderAssistantMessage?: (
assistantContent?: string,
toolContent?: string,
) => React.ReactNode;
renderToolResult?: (
toolContent?: string,
isSuccess?: boolean,
) => React.ReactNode;
isLoading?: boolean;
agentName?: string;
2025-05-25 23:33:50 +08:00
onFileClick?: (filePath: string) => void;
2025-04-18 20:28:11 +08:00
}
interface ToolCallSnapshot {
id: string;
toolCall: ToolCallInput;
index: number;
timestamp: number;
}
2025-04-17 01:04:54 +08:00
export function ToolCallSidePanel({
isOpen,
onClose,
2025-04-18 20:28:11 +08:00
toolCalls,
2025-04-17 01:04:54 +08:00
currentIndex,
2025-04-17 08:43:33 +08:00
onNavigate,
2025-04-20 08:27:32 +08:00
messages,
agentStatus,
2025-04-20 04:02:44 +08:00
project,
isLoading = false,
externalNavigateToIndex,
2025-05-27 00:24:04 +08:00
agentName,
2025-05-25 23:33:50 +08:00
onFileClick,
2025-04-17 01:04:54 +08:00
}: ToolCallSidePanelProps) {
2025-04-20 12:29:55 +08:00
const [dots, setDots] = React.useState('');
const [internalIndex, setInternalIndex] = React.useState(0);
const [navigationMode, setNavigationMode] = React.useState<'live' | 'manual'>('live');
const [toolCallSnapshots, setToolCallSnapshots] = React.useState<ToolCallSnapshot[]>([]);
const [isInitialized, setIsInitialized] = React.useState(false);
const isMobile = useIsMobile();
React.useEffect(() => {
const newSnapshots = toolCalls.map((toolCall, index) => ({
id: `${index}-${toolCall.assistantCall.timestamp || Date.now()}`,
toolCall,
index,
timestamp: Date.now(),
}));
const hadSnapshots = toolCallSnapshots.length > 0;
const hasNewSnapshots = newSnapshots.length > toolCallSnapshots.length;
setToolCallSnapshots(newSnapshots);
if (!isInitialized && newSnapshots.length > 0) {
const completedCount = newSnapshots.filter(s =>
s.toolCall.toolResult?.content &&
2025-05-27 15:10:50 +08:00
s.toolCall.toolResult.content !== 'STREAMING'
).length;
2025-05-27 15:10:50 +08:00
if (completedCount > 0) {
let lastCompletedIndex = -1;
for (let i = newSnapshots.length - 1; i >= 0; i--) {
const snapshot = newSnapshots[i];
if (snapshot.toolCall.toolResult?.content &&
snapshot.toolCall.toolResult.content !== 'STREAMING') {
2025-05-27 15:10:50 +08:00
lastCompletedIndex = i;
break;
}
}
setInternalIndex(Math.max(0, lastCompletedIndex));
} else {
setInternalIndex(Math.max(0, newSnapshots.length - 1));
}
setIsInitialized(true);
} else if (hasNewSnapshots && navigationMode === 'live') {
2025-05-27 15:10:50 +08:00
const latestSnapshot = newSnapshots[newSnapshots.length - 1];
const isLatestStreaming = latestSnapshot?.toolCall.toolResult?.content === 'STREAMING';
if (isLatestStreaming) {
let lastCompletedIndex = -1;
for (let i = newSnapshots.length - 1; i >= 0; i--) {
const snapshot = newSnapshots[i];
if (snapshot.toolCall.toolResult?.content &&
snapshot.toolCall.toolResult.content !== 'STREAMING') {
lastCompletedIndex = i;
break;
}
}
if (lastCompletedIndex >= 0) {
setInternalIndex(lastCompletedIndex);
} else {
setInternalIndex(newSnapshots.length - 1);
}
} else {
2025-05-27 15:10:50 +08:00
setInternalIndex(newSnapshots.length - 1);
}
} else if (hasNewSnapshots && navigationMode === 'manual') {
}
}, [toolCalls, navigationMode, toolCallSnapshots.length, isInitialized]);
React.useEffect(() => {
if (isOpen && !isInitialized && toolCallSnapshots.length > 0) {
setInternalIndex(Math.min(currentIndex, toolCallSnapshots.length - 1));
}
}, [isOpen, currentIndex, isInitialized, toolCallSnapshots.length]);
2025-05-27 00:18:14 +08:00
const safeInternalIndex = Math.min(internalIndex, Math.max(0, toolCallSnapshots.length - 1));
const currentSnapshot = toolCallSnapshots[safeInternalIndex];
const currentToolCall = currentSnapshot?.toolCall;
const totalCalls = toolCallSnapshots.length;
2025-05-25 02:17:55 +08:00
// Extract meaningful tool name, especially for MCP tools
const extractToolName = (toolCall: any) => {
const rawName = toolCall?.assistantCall?.name || 'Tool Call';
2025-05-25 02:17:55 +08:00
// Handle MCP tools specially
if (rawName === 'call-mcp-tool') {
const assistantContent = toolCall?.assistantCall?.content;
if (assistantContent) {
try {
// Try to extract the actual MCP tool name from the content
const toolNameMatch = assistantContent.match(/tool_name="([^"]+)"/);
if (toolNameMatch && toolNameMatch[1]) {
const mcpToolName = toolNameMatch[1];
// Use the MCP tool name for better display
return getUserFriendlyToolName(mcpToolName);
}
} catch (e) {
// Fall back to generic name if parsing fails
}
}
return 'External Tool';
}
2025-05-25 02:17:55 +08:00
// For all other tools, use the friendly name
return getUserFriendlyToolName(rawName);
};
const completedToolCalls = toolCallSnapshots.filter(snapshot =>
snapshot.toolCall.toolResult?.content &&
2025-05-27 15:10:50 +08:00
snapshot.toolCall.toolResult.content !== 'STREAMING'
);
const totalCompletedCalls = completedToolCalls.length;
2025-05-27 15:10:50 +08:00
let displayToolCall = currentToolCall;
let displayIndex = safeInternalIndex;
let displayTotalCalls = totalCalls;
2025-05-27 15:10:50 +08:00
const isCurrentToolStreaming = currentToolCall?.toolResult?.content === 'STREAMING';
if (isCurrentToolStreaming && totalCompletedCalls > 0) {
const lastCompletedSnapshot = completedToolCalls[completedToolCalls.length - 1];
displayToolCall = lastCompletedSnapshot.toolCall;
displayIndex = totalCompletedCalls - 1;
displayTotalCalls = totalCompletedCalls;
} else if (!isCurrentToolStreaming) {
const completedIndex = completedToolCalls.findIndex(snapshot => snapshot.id === currentSnapshot?.id);
if (completedIndex >= 0) {
displayIndex = completedIndex;
displayTotalCalls = totalCompletedCalls;
}
}
2025-05-27 15:10:50 +08:00
const currentToolName = displayToolCall?.assistantCall?.name || 'Tool Call';
const CurrentToolIcon = getToolIcon(
2025-05-25 02:17:55 +08:00
currentToolCall?.assistantCall?.name || 'unknown',
);
2025-05-27 15:10:50 +08:00
const isStreaming = displayToolCall?.toolResult?.content === 'STREAMING';
const isSuccess = displayToolCall?.toolResult?.isSuccess ?? true;
const internalNavigate = React.useCallback((newIndex: number, source: string = 'internal') => {
if (newIndex < 0 || newIndex >= totalCalls) return;
const isNavigatingToLatest = newIndex === totalCalls - 1;
console.log(`[INTERNAL_NAV] ${source}: ${internalIndex} -> ${newIndex}, mode will be: ${isNavigatingToLatest ? 'live' : 'manual'}`);
setInternalIndex(newIndex);
if (isNavigatingToLatest) {
setNavigationMode('live');
} else {
setNavigationMode('manual');
}
if (source === 'user_explicit') {
onNavigate(newIndex);
}
}, [internalIndex, totalCalls, onNavigate]);
const isLiveMode = navigationMode === 'live';
const showJumpToLive = navigationMode === 'manual' && agentStatus === 'running';
const showJumpToLatest = navigationMode === 'manual' && agentStatus !== 'running';
const navigateToPrevious = React.useCallback(() => {
2025-05-27 15:10:50 +08:00
if (displayIndex > 0) {
const targetCompletedIndex = displayIndex - 1;
const targetSnapshot = completedToolCalls[targetCompletedIndex];
if (targetSnapshot) {
const actualIndex = toolCallSnapshots.findIndex(s => s.id === targetSnapshot.id);
if (actualIndex >= 0) {
setNavigationMode('manual');
internalNavigate(actualIndex, 'user_explicit');
}
}
}
2025-05-27 15:10:50 +08:00
}, [displayIndex, completedToolCalls, toolCallSnapshots, internalNavigate]);
const navigateToNext = React.useCallback(() => {
2025-05-27 15:10:50 +08:00
if (displayIndex < displayTotalCalls - 1) {
const targetCompletedIndex = displayIndex + 1;
const targetSnapshot = completedToolCalls[targetCompletedIndex];
if (targetSnapshot) {
const actualIndex = toolCallSnapshots.findIndex(s => s.id === targetSnapshot.id);
if (actualIndex >= 0) {
const isLatestCompleted = targetCompletedIndex === completedToolCalls.length - 1;
if (isLatestCompleted) {
setNavigationMode('live');
} else {
setNavigationMode('manual');
}
internalNavigate(actualIndex, 'user_explicit');
}
}
}
2025-05-27 15:10:50 +08:00
}, [displayIndex, displayTotalCalls, completedToolCalls, toolCallSnapshots, internalNavigate]);
const jumpToLive = React.useCallback(() => {
setNavigationMode('live');
internalNavigate(totalCalls - 1, 'user_explicit');
}, [totalCalls, internalNavigate]);
const jumpToLatest = React.useCallback(() => {
setNavigationMode('manual');
internalNavigate(totalCalls - 1, 'user_explicit');
}, [totalCalls, internalNavigate]);
const handleSliderChange = React.useCallback(([newValue]: [number]) => {
2025-05-27 15:10:50 +08:00
const targetSnapshot = completedToolCalls[newValue];
if (targetSnapshot) {
const actualIndex = toolCallSnapshots.findIndex(s => s.id === targetSnapshot.id);
if (actualIndex >= 0) {
const isLatestCompleted = newValue === completedToolCalls.length - 1;
if (isLatestCompleted) {
setNavigationMode('live');
} else {
setNavigationMode('manual');
}
2025-05-27 15:10:50 +08:00
internalNavigate(actualIndex, 'user_explicit');
}
}
}, [completedToolCalls, toolCallSnapshots, internalNavigate]);
React.useEffect(() => {
if (!isOpen) return;
const handleKeyDown = (event: KeyboardEvent) => {
if ((event.metaKey || event.ctrlKey) && event.key === 'i') {
event.preventDefault();
onClose();
}
};
window.addEventListener('keydown', handleKeyDown);
return () => window.removeEventListener('keydown', handleKeyDown);
}, [isOpen, onClose]);
React.useEffect(() => {
if (!isOpen) return;
const handleSidebarToggle = (event: CustomEvent) => {
if (event.detail.expanded) {
onClose();
}
};
window.addEventListener(
'sidebar-left-toggled',
handleSidebarToggle as EventListener,
);
return () =>
window.removeEventListener(
'sidebar-left-toggled',
handleSidebarToggle as EventListener,
);
}, [isOpen, onClose]);
React.useEffect(() => {
if (externalNavigateToIndex !== undefined && externalNavigateToIndex >= 0 && externalNavigateToIndex < totalCalls) {
internalNavigate(externalNavigateToIndex, 'external_click');
}
}, [externalNavigateToIndex, totalCalls, internalNavigate]);
2025-04-20 04:02:44 +08:00
React.useEffect(() => {
if (!isStreaming) return;
const interval = setInterval(() => {
setDots((prev) => {
2025-04-20 04:02:44 +08:00
if (prev === '...') return '';
return prev + '.';
});
}, 500);
2025-04-20 04:02:44 +08:00
return () => clearInterval(interval);
}, [isStreaming]);
2025-04-20 12:29:55 +08:00
if (!isOpen) return null;
if (isLoading) {
return (
<div
className={cn(
'fixed inset-y-0 right-0 border-l flex flex-col z-30 h-screen transition-all duration-200 ease-in-out',
isMobile
? 'w-full'
: 'w-[90%] sm:w-[450px] md:w-[500px] lg:w-[550px] xl:w-[650px]',
!isOpen && 'translate-x-full',
)}
>
<div className="flex-1 flex flex-col overflow-hidden bg-background">
<div className="flex flex-col h-full">
<div className="pt-4 pl-4 pr-4">
<div className="flex items-center justify-between">
<div className="ml-2 flex items-center gap-2">
2025-05-20 14:58:14 +08:00
<Computer className="h-4 w-4" />
2025-05-19 01:37:00 +08:00
<h2 className="text-md font-medium text-zinc-900 dark:text-zinc-100">
{agentName ? `${agentName}'s Computer` : 'Suna\'s Computer'}
</h2>
</div>
<Button
variant="ghost"
size="icon"
onClick={onClose}
className="h-8 w-8"
>
<X className="h-4 w-4" />
</Button>
</div>
</div>
<div className="flex-1 p-4 overflow-auto">
<div className="space-y-4">
<Skeleton className="h-8 w-32" />
<Skeleton className="h-20 w-full rounded-md" />
<Skeleton className="h-40 w-full rounded-md" />
<Skeleton className="h-20 w-full rounded-md" />
</div>
</div>
</div>
</div>
</div>
);
}
2025-04-18 18:50:39 +08:00
const renderContent = () => {
2025-05-27 15:10:50 +08:00
if (!displayToolCall && toolCallSnapshots.length === 0) {
2025-04-18 20:28:11 +08:00
return (
2025-04-21 22:59:20 +08:00
<div className="flex flex-col h-full">
<div className="pt-4 pl-4 pr-4">
<div className="flex items-center justify-between">
<div className="ml-2 flex items-center gap-2">
2025-05-20 14:58:14 +08:00
<Computer className="h-4 w-4" />
2025-05-19 01:37:00 +08:00
<h2 className="text-md font-medium text-zinc-900 dark:text-zinc-100">
{agentName ? `${agentName}'s Computer` : 'Suna\'s Computer'}
</h2>
2025-04-21 22:59:20 +08:00
</div>
<Button
variant="ghost"
size="icon"
2025-04-21 22:59:20 +08:00
onClick={onClose}
className="h-8 w-8"
>
<X className="h-4 w-4" />
</Button>
</div>
</div>
<div className="flex flex-col items-center justify-center flex-1 p-8">
<div className="flex flex-col items-center space-y-4 max-w-sm text-center">
<div className="relative">
<div className="w-16 h-16 bg-zinc-100 dark:bg-zinc-800 rounded-full flex items-center justify-center">
<Computer className="h-8 w-8 text-zinc-400 dark:text-zinc-500" />
</div>
<div className="absolute -bottom-1 -right-1 w-6 h-6 bg-zinc-200 dark:bg-zinc-700 rounded-full flex items-center justify-center">
<div className="w-2 h-2 bg-zinc-400 dark:text-zinc-500 rounded-full"></div>
</div>
</div>
<div className="space-y-2">
<h3 className="text-lg font-medium text-zinc-900 dark:text-zinc-100">
No tool activity
</h3>
<p className="text-sm text-zinc-500 dark:text-zinc-400 leading-relaxed">
Tool calls and computer interactions will appear here when they're being executed.
</p>
</div>
</div>
2025-04-21 22:59:20 +08:00
</div>
2025-04-18 20:28:11 +08:00
</div>
2025-04-18 18:50:39 +08:00
);
2025-04-18 06:17:48 +08:00
}
2025-05-27 15:10:50 +08:00
if (!displayToolCall && toolCallSnapshots.length > 0) {
const firstStreamingTool = toolCallSnapshots.find(s => s.toolCall.toolResult?.content === 'STREAMING');
if (firstStreamingTool && totalCompletedCalls === 0) {
return (
<div className="flex flex-col h-full">
<div className="pt-4 pl-4 pr-4">
<div className="flex items-center justify-between">
<div className="ml-2 flex items-center gap-2">
<Computer className="h-4 w-4" />
<h2 className="text-md font-medium text-zinc-900 dark:text-zinc-100">
{agentName ? `${agentName}'s Computer` : 'Suna\'s Computer'}
2025-05-27 15:10:50 +08:00
</h2>
</div>
<div className="flex items-center gap-2">
<div className="px-2.5 py-0.5 rounded-full text-xs font-medium bg-blue-50 text-blue-700 dark:bg-blue-900/20 dark:text-blue-400 flex items-center gap-1.5">
<CircleDashed className="h-3 w-3 animate-spin" />
<span>Running</span>
</div>
<Button
variant="ghost"
size="icon"
onClick={onClose}
className="h-8 w-8 ml-1"
>
<X className="h-4 w-4" />
</Button>
</div>
</div>
</div>
<div className="flex flex-col items-center justify-center flex-1 p-8">
<div className="flex flex-col items-center space-y-4 max-w-sm text-center">
<div className="relative">
<div className="w-16 h-16 bg-blue-50 dark:bg-blue-900/20 rounded-full flex items-center justify-center">
<CircleDashed className="h-8 w-8 text-blue-500 dark:text-blue-400 animate-spin" />
</div>
</div>
<div className="space-y-2">
<h3 className="text-lg font-medium text-zinc-900 dark:text-zinc-100">
Tool is running
</h3>
<p className="text-sm text-zinc-500 dark:text-zinc-400 leading-relaxed">
{getUserFriendlyToolName(firstStreamingTool.toolCall.assistantCall.name || 'Tool')} is currently executing. Results will appear here when complete.
</p>
</div>
</div>
</div>
</div>
);
}
2025-05-27 00:18:14 +08:00
return (
<div className="flex flex-col h-full">
<div className="pt-4 pl-4 pr-4">
<div className="flex items-center justify-between">
<div className="ml-2 flex items-center gap-2">
<Computer className="h-4 w-4" />
<h2 className="text-md font-medium text-zinc-900 dark:text-zinc-100">
{agentName ? `${agentName}'s Computer` : 'Suna\'s Computer'}
2025-05-27 00:18:14 +08:00
</h2>
</div>
<Button
variant="ghost"
size="icon"
onClick={onClose}
className="h-8 w-8"
>
<X className="h-4 w-4" />
</Button>
</div>
</div>
<div className="flex-1 p-4 overflow-auto">
<div className="space-y-4">
<Skeleton className="h-8 w-32" />
<Skeleton className="h-20 w-full rounded-md" />
</div>
</div>
</div>
);
}
2025-05-19 01:37:00 +08:00
const toolView = (
<ToolView
2025-05-27 15:10:50 +08:00
name={displayToolCall.assistantCall.name}
assistantContent={displayToolCall.assistantCall.content}
toolContent={displayToolCall.toolResult?.content}
assistantTimestamp={displayToolCall.assistantCall.timestamp}
toolTimestamp={displayToolCall.toolResult?.timestamp}
isSuccess={isStreaming ? true : (displayToolCall.toolResult?.isSuccess ?? true)}
2025-05-19 01:37:00 +08:00
isStreaming={isStreaming}
project={project}
messages={messages}
agentStatus={agentStatus}
2025-05-27 15:10:50 +08:00
currentIndex={displayIndex}
totalCalls={displayTotalCalls}
2025-05-25 23:33:50 +08:00
onFileClick={onFileClick}
2025-05-19 01:37:00 +08:00
/>
2025-04-20 12:29:55 +08:00
);
return (
<div className="flex flex-col h-full">
2025-05-19 01:37:00 +08:00
<div className="p-3">
2025-04-20 12:29:55 +08:00
<div className="flex items-center justify-between">
<div className="ml-2 flex items-center gap-2">
2025-05-20 14:58:14 +08:00
<Computer className="h-4 w-4" />
2025-05-19 01:37:00 +08:00
<h2 className="text-md font-medium text-zinc-900 dark:text-zinc-100">
{agentName ? `${agentName}'s Computer` : 'Suna\'s Computer'}
</h2>
2025-04-20 12:29:55 +08:00
</div>
2025-05-27 15:10:50 +08:00
{displayToolCall.toolResult?.content && !isStreaming && (
2025-04-21 22:38:27 +08:00
<div className="flex items-center gap-2">
<Button
variant="ghost"
size="icon"
2025-04-21 22:59:20 +08:00
onClick={onClose}
className="h-8 w-8 ml-1"
>
<X className="h-4 w-4" />
</Button>
2025-04-20 12:29:55 +08:00
</div>
)}
2025-04-20 12:29:55 +08:00
{isStreaming && (
2025-04-21 22:59:20 +08:00
<div className="flex items-center gap-2">
<div className="px-2.5 py-0.5 rounded-full text-xs font-medium bg-blue-50 text-blue-700 dark:bg-blue-900/20 dark:text-blue-400 flex items-center gap-1.5">
<CircleDashed className="h-3 w-3 animate-spin" />
<span>Running</span>
</div>
<Button
variant="ghost"
size="icon"
2025-04-21 22:59:20 +08:00
onClick={onClose}
className="h-8 w-8 ml-1"
>
<X className="h-4 w-4" />
</Button>
2025-04-20 12:29:55 +08:00
</div>
)}
2025-05-27 15:10:50 +08:00
{!displayToolCall.toolResult?.content && !isStreaming && (
<Button
variant="ghost"
size="icon"
2025-04-21 22:59:20 +08:00
onClick={onClose}
className="h-8 w-8"
>
<X className="h-4 w-4" />
</Button>
)}
2025-04-20 12:29:55 +08:00
</div>
</div>
2025-04-20 12:29:55 +08:00
<div className="flex-1 overflow-auto scrollbar-thin scrollbar-thumb-zinc-300 dark:scrollbar-thumb-zinc-700 scrollbar-track-transparent">
{toolView}
</div>
</div>
2025-04-18 20:28:11 +08:00
);
2025-04-18 18:50:39 +08:00
};
2025-04-16 15:16:38 +08:00
return (
<div
className={cn(
'fixed inset-y-0 right-0 border-l flex flex-col z-30 h-screen transition-all duration-200 ease-in-out',
isMobile
? 'w-full'
2025-05-20 14:58:14 +08:00
: 'w-[40vw] sm:w-[450px] md:w-[500px] lg:w-[550px] xl:w-[650px]',
!isOpen && 'translate-x-full',
)}
>
2025-04-21 22:59:20 +08:00
<div className="flex-1 flex flex-col overflow-hidden bg-background">
2025-04-18 18:50:39 +08:00
{renderContent()}
2025-04-18 20:28:11 +08:00
</div>
2025-05-27 15:10:50 +08:00
{(displayTotalCalls > 1 || (isCurrentToolStreaming && totalCompletedCalls > 0)) && (
<div
className={cn(
'border-t border-zinc-200 dark:border-zinc-800 bg-zinc-50 dark:bg-zinc-900',
isMobile ? 'p-3' : 'p-4 space-y-2',
)}
>
2025-04-21 22:59:20 +08:00
{!isMobile && (
<div className="flex justify-between items-center gap-4">
<div className="flex items-center gap-2 min-w-0">
<div className="h-5 w-5 rounded-full bg-zinc-100 dark:bg-zinc-800 flex items-center justify-center">
<CurrentToolIcon className="h-3 w-3 text-zinc-800 dark:text-zinc-300" />
</div>
<span
className="text-xs font-medium text-zinc-700 dark:text-zinc-300 truncate"
title={currentToolName}
>
2025-05-25 17:51:20 +08:00
{getUserFriendlyToolName(currentToolName)} {isStreaming && `(Running${dots})`}
2025-04-21 22:59:20 +08:00
</span>
</div>
2025-04-20 12:29:55 +08:00
<div className="flex items-center gap-2">
{showJumpToLive && (
<div className="flex cursor-pointer items-center gap-1.5 px-2 py-0.5 rounded-full bg-green-50 dark:bg-green-900/20 border border-green-200 dark:border-green-800" onClick={jumpToLive}>
<div className="w-1.5 h-1.5 bg-green-500 rounded-full animate-pulse"></div>
<span className="text-xs font-medium text-green-700 dark:text-green-400">Jump to Live</span>
</div>
)}
{showJumpToLatest && (
<div className="flex cursor-pointer items-center gap-1.5 px-2 py-0.5 rounded-full bg-neutral-50 dark:bg-neutral-900/20 border border-neutral-200 dark:border-neutral-800" onClick={jumpToLatest}>
<div className="w-1.5 h-1.5 bg-neutral-500 rounded-full"></div>
<span className="text-xs font-medium text-neutral-700 dark:text-neutral-400">Jump to Latest</span>
</div>
)}
{isLiveMode && agentStatus === 'running' && !showJumpToLive && (
<div className="flex items-center gap-1.5 px-2 py-0.5 rounded-full bg-green-50 dark:bg-green-900/20 border border-green-200 dark:border-green-800">
<div className="w-1.5 h-1.5 bg-green-500 rounded-full animate-pulse"></div>
<span className="text-xs font-medium text-green-700 dark:text-green-400">Live</span>
</div>
)}
<span className="text-xs text-zinc-500 dark:text-zinc-400 flex-shrink-0">
2025-05-27 15:10:50 +08:00
Step {displayIndex + 1} of {displayTotalCalls}
</span>
</div>
2025-04-21 22:59:20 +08:00
</div>
)}
2025-04-21 22:59:20 +08:00
{isMobile ? (
<div className="flex items-center justify-between">
<Button
variant="outline"
size="sm"
onClick={navigateToPrevious}
2025-05-27 15:10:50 +08:00
disabled={displayIndex <= 0}
2025-04-21 22:59:20 +08:00
className="h-9 px-3"
>
<ChevronLeft className="h-4 w-4 mr-1" />
<span>Previous</span>
</Button>
<div className="flex items-center gap-2">
{isLiveMode && agentStatus === 'running' ? (
<div className="flex items-center gap-1.5 px-2 py-0.5 rounded-full bg-green-50 dark:bg-green-900/20 border border-green-200 dark:border-green-800">
<div className="w-1.5 h-1.5 bg-green-500 rounded-full animate-pulse"></div>
<span className="text-xs font-medium text-green-700 dark:text-green-400">Live</span>
</div>
) : (
<div className="flex items-center gap-1.5 px-2 py-0.5 rounded-full bg-neutral-50 dark:bg-neutral-900/20 border border-neutral-200 dark:border-neutral-800">
<div className="w-1.5 h-1.5 bg-neutral-500 rounded-full"></div>
<span className="text-xs font-medium text-neutral-700 dark:text-neutral-400">Live</span>
</div>
)}
<span className="text-xs text-zinc-500 dark:text-zinc-400">
2025-05-27 15:10:50 +08:00
{displayIndex + 1} / {displayTotalCalls}
{isCurrentToolStreaming && totalCompletedCalls > 0 && (
<span className="text-blue-600 dark:text-blue-400"> Running</span>
)}
</span>
</div>
2025-04-21 22:59:20 +08:00
<Button
variant="outline"
size="sm"
onClick={navigateToNext}
2025-05-27 15:10:50 +08:00
disabled={displayIndex >= displayTotalCalls - 1}
2025-04-21 22:59:20 +08:00
className="h-9 px-3"
>
<span>Next</span>
<ChevronRight className="h-4 w-4 ml-1" />
</Button>
</div>
) : (
<div className="relative flex items-center gap-1.5">
2025-04-26 02:18:16 +08:00
<div className="flex items-center gap-1">
<Button
variant="ghost"
size="icon"
onClick={navigateToPrevious}
2025-05-27 15:10:50 +08:00
disabled={displayIndex <= 0}
2025-04-26 02:18:16 +08:00
className="h-6 w-6 text-zinc-500 hover:text-zinc-700 dark:text-zinc-400 dark:hover:text-zinc-200"
>
<ChevronLeft className="h-3.5 w-3.5" />
</Button>
<Button
variant="ghost"
size="icon"
onClick={navigateToNext}
2025-05-27 15:10:50 +08:00
disabled={displayIndex >= displayTotalCalls - 1}
2025-04-26 02:18:16 +08:00
className="h-6 w-6 text-zinc-500 hover:text-zinc-700 dark:text-zinc-400 dark:hover:text-zinc-200"
>
<ChevronRight className="h-3.5 w-3.5" />
</Button>
</div>
<div className="relative w-full">
<Slider
min={0}
2025-05-27 15:10:50 +08:00
max={displayTotalCalls - 1}
step={1}
2025-05-27 15:10:50 +08:00
value={[displayIndex]}
onValueChange={handleSliderChange}
className="w-full [&>span:first-child]:h-1 [&>span:first-child]:bg-zinc-200 dark:[&>span:first-child]:bg-zinc-800 [&>span:first-child>span]:bg-zinc-500 dark:[&>span:first-child>span]:bg-zinc-400 [&>span:first-child>span]:h-1"
/>
2025-04-26 02:18:16 +08:00
</div>
</div>
2025-04-21 22:59:20 +08:00
)}
2025-04-18 20:28:11 +08:00
</div>
2025-04-16 15:16:38 +08:00
)}
</div>
);
}