'use client'; import { useControllableState } from '@radix-ui/react-use-controllable-state'; import { Collapsible, CollapsibleContent, CollapsibleTrigger, } from '@/components/ui/collapsible'; import { cn } from '@/lib/utils'; import { BrainIcon, ChevronDownIcon } from 'lucide-react'; import type { ComponentProps } from 'react'; import { createContext, memo, useContext, useEffect, useState } from 'react'; import { Response } from './response'; type ReasoningContextValue = { isStreaming: boolean; isOpen: boolean; setIsOpen: (open: boolean) => void; duration: number; }; const ReasoningContext = createContext(null); const useReasoning = () => { const context = useContext(ReasoningContext); if (!context) { throw new Error('Reasoning components must be used within Reasoning'); } return context; }; export type ReasoningProps = ComponentProps & { isStreaming?: boolean; open?: boolean; defaultOpen?: boolean; onOpenChange?: (open: boolean) => void; duration?: number; }; const AUTO_CLOSE_DELAY = 1000; export const Reasoning = memo( ({ className, isStreaming = false, open, defaultOpen = false, onOpenChange, duration: durationProp, children, ...props }: ReasoningProps) => { const [isOpen, setIsOpen] = useControllableState({ prop: open, defaultProp: defaultOpen, onChange: onOpenChange, }); const [duration, setDuration] = useControllableState({ prop: durationProp, defaultProp: 0, }); const [hasAutoClosedRef, setHasAutoClosedRef] = useState(false); const [startTime, setStartTime] = useState(null); // Track duration when streaming starts and ends useEffect(() => { if (isStreaming) { if (startTime === null) { setStartTime(Date.now()); } } else if (startTime !== null) { setDuration(Math.round((Date.now() - startTime) / 1000)); setStartTime(null); } }, [isStreaming, startTime, setDuration]); // Auto-open when streaming starts, auto-close when streaming ends (once only) useEffect(() => { if (isStreaming && !isOpen) { setIsOpen(true); } else if (!isStreaming && isOpen && !defaultOpen && !hasAutoClosedRef) { // Add a small delay before closing to allow user to see the content const timer = setTimeout(() => { setIsOpen(false); setHasAutoClosedRef(true); }, AUTO_CLOSE_DELAY); return () => clearTimeout(timer); } }, [isStreaming, isOpen, defaultOpen, setIsOpen, hasAutoClosedRef]); const handleOpenChange = (newOpen: boolean) => { setIsOpen(newOpen); }; return ( {children} ); } ); export type ReasoningTriggerProps = ComponentProps< typeof CollapsibleTrigger > & { title?: string; }; export const ReasoningTrigger = memo( ({ className, title = 'Reasoning', children, ...props }: ReasoningTriggerProps) => { const { isStreaming, isOpen, duration } = useReasoning(); return ( {children ?? ( <> {isStreaming || duration === 0 ? (

Thinking...

) : (

Thought for {duration} seconds

)} )}
); } ); export type ReasoningContentProps = ComponentProps< typeof CollapsibleContent > & { children: string; }; export const ReasoningContent = memo( ({ className, children, ...props }: ReasoningContentProps) => ( {children} ) ); Reasoning.displayName = 'Reasoning'; ReasoningTrigger.displayName = 'ReasoningTrigger'; ReasoningContent.displayName = 'ReasoningContent';