import React, { useEffect, useRef, useState } from 'react' import { useTranslation } from 'react-i18next' const hasEndThink = (children: any): boolean => { if (typeof children === 'string') return children.includes('[ENDTHINKFLAG]') if (Array.isArray(children)) return children.some(child => hasEndThink(child)) if (children?.props?.children) return hasEndThink(children.props.children) return false } const removeEndThink = (children: any): any => { if (typeof children === 'string') return children.replace('[ENDTHINKFLAG]', '') if (Array.isArray(children)) return children.map(child => removeEndThink(child)) if (children?.props?.children) { return React.cloneElement( children, { ...children.props, children: removeEndThink(children.props.children), }, ) } return children } const useThinkTimer = (children: any) => { const [startTime] = useState(Date.now()) const [elapsedTime, setElapsedTime] = useState(0) const [isComplete, setIsComplete] = useState(false) const timerRef = useRef() useEffect(() => { timerRef.current = setInterval(() => { if (!isComplete) setElapsedTime(Math.floor((Date.now() - startTime) / 100) / 10) }, 100) return () => { if (timerRef.current) clearInterval(timerRef.current) } }, [startTime, isComplete]) useEffect(() => { if (hasEndThink(children)) { setIsComplete(true) if (timerRef.current) clearInterval(timerRef.current) } }, [children]) return { elapsedTime, isComplete } } export const ThinkBlock = ({ children, ...props }: any) => { const { elapsedTime, isComplete } = useThinkTimer(children) const displayContent = removeEndThink(children) const { t } = useTranslation() return (
{isComplete ? `${t('common.chat.thought')}(${elapsedTime.toFixed(1)}s)` : `${t('common.chat.thinking')}(${elapsedTime.toFixed(1)}s)`}
{displayContent}
) } export default ThinkBlock