Spaces:
Paused
Paused
File size: 12,649 Bytes
4efde5d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 | import React, { useState } from 'react';
import {
Terminal,
CheckCircle,
AlertTriangle,
CircleDashed,
Code,
Clock,
ArrowRight,
TerminalIcon,
} from 'lucide-react';
import { ToolViewProps } from '../types';
import { formatTimestamp, getToolTitle } from '../utils';
import { cn } from '@/lib/utils';
import { useTheme } from 'next-themes';
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card';
import { Badge } from '@/components/ui/badge';
import { ScrollArea } from "@/components/ui/scroll-area";
import { LoadingState } from '../shared/LoadingState';
import { extractCommandData } from './_utils';
export function CommandToolView({
name = 'execute-command',
assistantContent,
toolContent,
assistantTimestamp,
toolTimestamp,
isSuccess = true,
isStreaming = false,
}: ToolViewProps) {
const { resolvedTheme } = useTheme();
const isDarkTheme = resolvedTheme === 'dark';
const [showFullOutput, setShowFullOutput] = useState(true);
const {
command,
output,
exitCode,
sessionName,
cwd,
completed,
actualIsSuccess,
actualToolTimestamp,
actualAssistantTimestamp
} = extractCommandData(
assistantContent,
toolContent,
isSuccess,
toolTimestamp,
assistantTimestamp
);
const displayText = name === 'check-command-output' ? sessionName : command;
const displayLabel = name === 'check-command-output' ? 'Session' : 'Command';
const displayPrefix = name === 'check-command-output' ? 'tmux:' : '$';
const toolTitle = getToolTitle(name);
// Check if this is a non-blocking command with just a status message
const isNonBlockingCommand = React.useMemo(() => {
if (!output) return false;
// Check if output contains typical non-blocking command messages
const nonBlockingPatterns = [
'Command sent to tmux session',
'Use check_command_output to view results',
'Session still running',
'completed: false'
];
return nonBlockingPatterns.some(pattern =>
output.toLowerCase().includes(pattern.toLowerCase())
);
}, [output]);
// Check if there's actual command output to display
const hasActualOutput = React.useMemo(() => {
if (!output) return false;
// If it's a non-blocking command, don't show output section
if (isNonBlockingCommand) return false;
// Check if output contains actual command results (not just status messages)
const actualOutputPatterns = [
'root@',
'COMMAND_DONE_',
'Count:',
'date:',
'ls:',
'pwd:'
];
return actualOutputPatterns.some(pattern =>
output.includes(pattern)
) || output.trim().length > 50; // Arbitrary threshold for "substantial" output
}, [output, isNonBlockingCommand]);
const formattedOutput = React.useMemo(() => {
if (!output || !hasActualOutput) return [];
let processedOutput = output;
// Handle case where output is already an object
if (typeof output === 'object' && output !== null) {
try {
processedOutput = JSON.stringify(output, null, 2);
} catch (e) {
processedOutput = String(output);
}
} else if (typeof output === 'string') {
// Try to parse as JSON first
try {
if (output.trim().startsWith('{') || output.trim().startsWith('[')) {
const parsed = JSON.parse(output);
if (parsed && typeof parsed === 'object') {
// If it's a complex object, stringify it nicely
processedOutput = JSON.stringify(parsed, null, 2);
} else {
processedOutput = String(parsed);
}
} else {
processedOutput = output;
}
} catch (e) {
// If parsing fails, use as plain text
processedOutput = output;
}
} else {
processedOutput = String(output);
}
processedOutput = processedOutput.replace(/\\\\/g, '\\');
processedOutput = processedOutput
.replace(/\\n/g, '\n')
.replace(/\\t/g, '\t')
.replace(/\\"/g, '"')
.replace(/\\'/g, "'");
processedOutput = processedOutput.replace(/\\u([0-9a-fA-F]{4})/g, (_match, group) => {
return String.fromCharCode(parseInt(group, 16));
});
return processedOutput.split('\n');
}, [output, hasActualOutput]);
const hasMoreLines = formattedOutput.length > 10;
const previewLines = formattedOutput.slice(0, 10);
const linesToShow = showFullOutput ? formattedOutput : previewLines;
return (
<Card className="gap-0 flex border shadow-none border-t border-b-0 border-x-0 p-0 rounded-none flex-col h-full overflow-hidden bg-card">
<CardHeader className="h-14 bg-zinc-50/80 dark:bg-zinc-900/80 backdrop-blur-sm border-b p-2 px-4 space-y-2">
<div className="flex flex-row items-center justify-between">
<div className="flex items-center gap-2">
<div className="relative p-2 rounded-lg bg-gradient-to-br from-purple-500/20 to-purple-600/10 border border-purple-500/20">
<Terminal className="w-5 h-5 text-purple-500 dark:text-purple-400" />
</div>
<div>
<CardTitle className="text-base font-medium text-zinc-900 dark:text-zinc-100">
{toolTitle}
</CardTitle>
</div>
</div>
{!isStreaming && (
<Badge
variant="secondary"
className={
actualIsSuccess
? "bg-gradient-to-b from-emerald-200 to-emerald-100 text-emerald-700 dark:from-emerald-800/50 dark:to-emerald-900/60 dark:text-emerald-300"
: "bg-gradient-to-b from-rose-200 to-rose-100 text-rose-700 dark:from-rose-800/50 dark:to-rose-900/60 dark:text-rose-300"
}
>
{actualIsSuccess ? (
<CheckCircle className="h-3.5 w-3.5 mr-1" />
) : (
<AlertTriangle className="h-3.5 w-3.5 mr-1" />
)}
{actualIsSuccess ?
(name === 'check-command-output' ? 'Output retrieved successfully' : 'Command executed successfully') :
(name === 'check-command-output' ? 'Failed to retrieve output' : 'Command failed')
}
</Badge>
)}
</div>
</CardHeader>
<CardContent className="p-0 h-full flex-1 overflow-hidden relative">
{isStreaming ? (
<LoadingState
icon={Terminal}
iconColor="text-purple-500 dark:text-purple-400"
bgColor="bg-gradient-to-b from-purple-100 to-purple-50 shadow-inner dark:from-purple-800/40 dark:to-purple-900/60 dark:shadow-purple-950/20"
title={name === 'check-command-output' ? 'Checking command output' : 'Executing command'}
filePath={displayText || 'Processing command...'}
showProgress={true}
/>
) : displayText ? (
<ScrollArea className="h-full w-full">
<div className="p-4">
<div className="mb-4">
<div className="bg-zinc-100 dark:bg-neutral-900 rounded-lg overflow-hidden border border-zinc-200/20">
<div className="bg-zinc-300 dark:bg-neutral-800 flex items-center justify-between dark:border-zinc-700/50">
<div className="bg-zinc-200 w-full dark:bg-zinc-800 px-4 py-2 flex items-center gap-2">
<TerminalIcon className="h-4 w-4 text-zinc-600 dark:text-zinc-400" />
<span className="text-sm font-medium text-zinc-700 dark:text-zinc-300">Terminal</span>
</div>
{exitCode !== null && exitCode !== 0 && (
<Badge variant="outline" className="text-xs h-5 border-red-700/30 text-red-400">
<AlertTriangle className="h-3 w-3 mr-1" />
Error
</Badge>
)}
</div>
<div className="p-4 max-h-96 overflow-auto scrollbar-hide">
{/* Command line */}
<div className="py-0.5 bg-transparent font-mono text-xs">
{command && (
<>
<span className="text-green-500 dark:text-green-400 font-semibold">{displayPrefix} </span>
<span className="text-zinc-700 dark:text-zinc-300">{command}</span>
</>
)}
</div>
{/* Terminal output (render as real terminal text, not JSON) */}
{formattedOutput.length > 0 && (
<pre className="mt-2 text-xs text-zinc-600 dark:text-zinc-300 font-mono whitespace-pre-wrap break-words">
{linesToShow.map((line, idx) => (
<span key={idx}>
{line}
{'\n'}
</span>
))}
</pre>
)}
{!showFullOutput && hasMoreLines && (
<div className="text-zinc-500 mt-2 border-t border-zinc-700/30 pt-2 text-xs font-mono">
+ {formattedOutput.length - 10} more lines
</div>
)}
</div>
</div>
</div>
{/* Show status message for non-blocking commands */}
{isNonBlockingCommand && output && (
<div className="bg-blue-50 dark:bg-blue-900/20 rounded-lg p-4 border border-blue-200 dark:border-blue-800">
<div className="flex items-center gap-2 mb-2">
<CircleDashed className="h-4 w-4 text-blue-500" />
<span className="text-sm font-medium text-blue-700 dark:text-blue-300">Command Status</span>
</div>
<p className="text-sm text-blue-600 dark:text-blue-400">{output}</p>
</div>
)}
{!output && !isStreaming && !isNonBlockingCommand && (
<div className="bg-black rounded-lg overflow-hidden border border-zinc-700/20 shadow-md p-6 flex items-center justify-center">
<div className="text-center">
<CircleDashed className="h-8 w-8 text-zinc-500 mx-auto mb-2" />
<p className="text-zinc-400 text-sm">No output received</p>
</div>
</div>
)}
</div>
</ScrollArea>
) : (
<div className="flex flex-col items-center justify-center h-full py-12 px-6 bg-gradient-to-b from-white to-zinc-50 dark:from-zinc-950 dark:to-zinc-900">
<div className="w-20 h-20 rounded-full flex items-center justify-center mb-6 bg-gradient-to-b from-zinc-100 to-zinc-50 shadow-inner dark:from-zinc-800/40 dark:to-zinc-900/60">
<Terminal className="h-10 w-10 text-zinc-400 dark:text-zinc-600" />
</div>
<h3 className="text-xl font-semibold mb-2 text-zinc-900 dark:text-zinc-100">
{name === 'check-command-output' ? 'No Session Found' : 'No Command Found'}
</h3>
<p className="text-sm text-zinc-500 dark:text-zinc-400 text-center max-w-md">
{name === 'check-command-output'
? 'No session name was detected. Please provide a valid session name to check.'
: 'No command was detected. Please provide a valid command to execute.'
}
</p>
</div>
)}
</CardContent>
<div className="px-4 py-2 h-10 bg-gradient-to-r from-zinc-50/90 to-zinc-100/90 dark:from-zinc-900/90 dark:to-zinc-800/90 backdrop-blur-sm border-t border-zinc-200 dark:border-zinc-800 flex justify-between items-center gap-4">
<div className="h-full flex items-center gap-2 text-sm text-zinc-500 dark:text-zinc-400">
{!isStreaming && displayText && (
<Badge variant="outline" className="h-6 py-0.5 bg-zinc-50 dark:bg-zinc-900">
<Terminal className="h-3 w-3 mr-1" />
{displayLabel}
</Badge>
)}
</div>
<div className="text-xs text-zinc-500 dark:text-zinc-400 flex items-center gap-2">
<Clock className="h-3.5 w-3.5" />
{actualToolTimestamp && !isStreaming
? formatTimestamp(actualToolTimestamp)
: actualAssistantTimestamp
? formatTimestamp(actualAssistantTimestamp)
: ''}
</div>
</div>
</Card>
);
}
|