import { useSelector } from "react-redux"; import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; import PauseIcon from "#/assets/pause"; import PlayIcon from "#/assets/play"; import { generateAgentStateChangeEvent } from "#/services/agent-state-service"; import { RootState } from "#/store"; import { AgentState } from "#/types/agent-state"; import { useWsClient } from "#/context/ws-client-provider"; import { IGNORE_TASK_STATE_MAP } from "#/ignore-task-state-map.constant"; import { ActionButton } from "#/components/shared/buttons/action-button"; export function AgentControlBar() { const { t } = useTranslation(); const { send } = useWsClient(); const { curAgentState } = useSelector((state: RootState) => state.agent); const handleAction = (action: AgentState) => { if (!IGNORE_TASK_STATE_MAP[action].includes(curAgentState)) { send(generateAgentStateChangeEvent(action)); } }; return (