| 1 |
import { AnimateChunks } from '@agent/components/messages/AnimateChunks'; |
| 2 |
import { useStatusStore } from '@agent/state/status'; |
| 3 |
import { useEffect, useMemo, useState } from '@wordpress/element'; |
| 4 |
import { decodeEntities } from '@wordpress/html-entities'; |
| 5 |
import { __ } from '@wordpress/i18n'; |
| 6 |
import classNames from 'classnames'; |
| 7 |
|
| 8 |
const canAnimateTypes = ['calling-agent', 'agent-working', 'tool-started']; |
| 9 |
|
| 10 |
export const StatusIndicator = () => { |
| 11 |
const status = useStatusStore((s) => s.statuses.at(-1)); |
| 12 |
const { type, label } = status ?? {}; |
| 13 |
const [index, setIndex] = useState(0); |
| 14 |
const statusContent = useMemo( |
| 15 |
() => ({ |
| 16 |
'calling-agent': __('Thinking...', 'extendify-local'), |
| 17 |
'agent-working': [ |
| 18 |
__('Working on it...', 'extendify-local'), |
| 19 |
__('Interpreting message...', 'extendify-local'), |
| 20 |
__('Formulating a response...', 'extendify-local'), |
| 21 |
__('Reviewing logic...', 'extendify-local'), |
| 22 |
], |
| 23 |
'workflow-tool-processing': __('Processing...', 'extendify-local'), |
| 24 |
'tool-started': label || __('Gathering data...', 'extendify-local'), |
| 25 |
'tool-completed': label || __('Analyzing...', 'extendify-local'), |
| 26 |
'credits-exhausted': __('Usage limit reached', 'extendify-local'), |
| 27 |
'credits-restored': __('Usage limit restored', 'extendify-local'), |
| 28 |
}), |
| 29 |
[label], |
| 30 |
); |
| 31 |
const content = statusContent[type]; |
| 32 |
const isList = Array.isArray(content); |
| 33 |
|
| 34 |
useEffect(() => setIndex(0), [type]); |
| 35 |
|
| 36 |
useEffect(() => { |
| 37 |
if (!isList) return; |
| 38 |
// Cycle verbs on a randomized 3-5s beat so it never looks stuck. |
| 39 |
const timer = setTimeout( |
| 40 |
() => setIndex((i) => (i + 1) % content.length), |
| 41 |
3000 + Math.random() * 2000, |
| 42 |
); |
| 43 |
return () => clearTimeout(timer); |
| 44 |
}, [isList, content, index]); |
| 45 |
|
| 46 |
if (!type || !content) return null; |
| 47 |
const text = isList ? content[index] : content; |
| 48 |
|
| 49 |
return ( |
| 50 |
<div |
| 51 |
className={classNames('p-2 text-center text-xs italic text-gray-700', { |
| 52 |
'status-animation': canAnimateTypes.includes(type), |
| 53 |
})} |
| 54 |
> |
| 55 |
<AnimateChunks |
| 56 |
key={`${type}-${index}`} |
| 57 |
words={decodeEntities(text).split('')} |
| 58 |
delay={0.02} |
| 59 |
/> |
| 60 |
</div> |
| 61 |
); |
| 62 |
}; |
| 63 |
|