Add stop button in playground

This commit is contained in:
akhisud3195 2025-07-21 16:05:31 +05:30
parent cb23be8e16
commit a1e4eddb72
2 changed files with 42 additions and 7 deletions

View file

@ -57,6 +57,7 @@ export function Chat({
// --- Scroll/auto-scroll/unread bubble logic ---
const scrollContainerRef = useRef<HTMLDivElement>(null);
const eventSourceRef = useRef<EventSource | null>(null);
const [autoScroll, setAutoScroll] = useState(true);
const [showUnreadBubble, setShowUnreadBubble] = useState(false);
@ -215,6 +216,7 @@ export function Chat({
console.log(`chat.tsx: got streamid: ${streamId}`);
eventSource = new EventSource(`/api/stream-response/${streamId}`);
eventSourceRef.current = eventSource;
eventSource.addEventListener("message", (event) => {
console.log(`chat.tsx: got message: ${event.data}`);
@ -238,6 +240,7 @@ export function Chat({
console.log(`chat.tsx: got done event: ${event.data}`);
if (eventSource) {
eventSource.close();
eventSourceRef.current = null;
}
const parsed = JSON.parse(event.data);
@ -256,6 +259,7 @@ export function Chat({
console.log(`chat.tsx: got stream_error event: ${event.data}`);
if (eventSource) {
eventSource.close();
eventSourceRef.current = null;
}
console.error('SSE Error:', event);
@ -296,6 +300,7 @@ export function Chat({
ignore = true;
if (eventSource) {
eventSource.close();
eventSourceRef.current = null;
}
};
}, [
@ -309,6 +314,15 @@ export function Chat({
projectTools,
]);
// Add a stop handler function
const handleStop = useCallback(() => {
if (eventSourceRef.current) {
eventSourceRef.current.close();
eventSourceRef.current = null;
setLoadingAssistantResponse(false);
}
}, []);
return <div className="w-11/12 max-w-6xl mx-auto h-full flex flex-col relative">
<div className="sticky top-0 z-10 bg-white dark:bg-zinc-900 pt-4 pb-4">
</div>
@ -387,6 +401,7 @@ export function Chat({
loading={loadingAssistantResponse}
shouldAutoFocus={isLastInteracted}
onFocus={() => setIsLastInteracted(true)}
onCancel={handleStop}
/>
</div>

View file

@ -9,6 +9,7 @@ interface ComposeBoxPlaygroundProps {
disabled?: boolean;
shouldAutoFocus?: boolean;
onFocus?: () => void;
onCancel?: () => void; // Add this prop
}
export function ComposeBoxPlayground({
@ -18,6 +19,7 @@ export function ComposeBoxPlayground({
disabled = false,
shouldAutoFocus = false,
onFocus,
onCancel,
}: ComposeBoxPlaygroundProps) {
const [input, setInput] = useState('');
const [isFocused, setIsFocused] = useState(false);
@ -93,17 +95,19 @@ export function ComposeBoxPlayground({
/>
</div>
{/* Send button */}
{/* Send/Stop button */}
<Button
size="sm"
isIconOnly
disabled={disabled || loading || !input.trim()}
onPress={handleInput}
disabled={disabled || (loading ? false : !input.trim())}
onPress={loading ? onCancel : handleInput}
className={`
transition-all duration-200
${input.trim()
? 'bg-indigo-50 hover:bg-indigo-100 text-indigo-700 dark:bg-indigo-900/50 dark:hover:bg-indigo-800/60 dark:text-indigo-300'
: 'bg-gray-100 dark:bg-gray-800 text-gray-400 dark:text-gray-500'
${loading
? 'bg-red-50 hover:bg-red-100 text-red-700 dark:bg-red-900/50 dark:hover:bg-red-800/60 dark:text-red-300'
: input.trim()
? 'bg-indigo-50 hover:bg-indigo-100 text-indigo-700 dark:bg-indigo-900/50 dark:hover:bg-indigo-800/60 dark:text-indigo-300'
: 'bg-gray-100 dark:bg-gray-800 text-gray-400 dark:text-gray-500'
}
scale-100 hover:scale-105 active:scale-95
disabled:opacity-50 disabled:scale-95
@ -112,7 +116,7 @@ export function ComposeBoxPlayground({
`}
>
{loading ? (
<Spinner size="sm" color={input.trim() ? "primary" : "default"} />
<StopIcon size={16} />
) : (
<SendIcon
size={16}
@ -143,4 +147,20 @@ function SendIcon({ size, className }: { size: number, className?: string }) {
<path d="M22 2L15 22L11 13L2 9L22 2Z" />
</svg>
);
}
// Add StopIcon component (copy from ComposeBoxCopilot)
function StopIcon({ size, className }: { size: number, className?: string }) {
return (
<svg
width={size}
height={size}
viewBox="0 0 24 24"
fill="currentColor"
stroke="none"
className={className}
>
<rect x="6" y="6" width="12" height="12" rx="1" />
</svg>
);
}