|
import React from "react";
|
|
import { useDispatch, useSelector } from "react-redux";
|
|
import {
|
|
useWsClient,
|
|
WsClientProviderStatus,
|
|
} from "#/context/ws-client-provider";
|
|
import { createChatMessage } from "#/services/chat-service";
|
|
import { setCurrentAgentState } from "#/state/agent-slice";
|
|
import { addUserMessage } from "#/state/chat-slice";
|
|
import { clearFiles, clearInitialQuery } from "#/state/initial-query-slice";
|
|
import { RootState } from "#/store";
|
|
import { AgentState } from "#/types/agent-state";
|
|
|
|
export const useWSStatusChange = () => {
|
|
const { send, status } = useWsClient();
|
|
const { curAgentState } = useSelector((state: RootState) => state.agent);
|
|
const dispatch = useDispatch();
|
|
|
|
const statusRef = React.useRef<WsClientProviderStatus | null>(null);
|
|
|
|
const { files, initialQuery } = useSelector(
|
|
(state: RootState) => state.initialQuery,
|
|
);
|
|
|
|
const sendInitialQuery = (query: string, base64Files: string[]) => {
|
|
const timestamp = new Date().toISOString();
|
|
send(createChatMessage(query, base64Files, timestamp));
|
|
};
|
|
|
|
const dispatchInitialQuery = (query: string) => {
|
|
sendInitialQuery(query, files);
|
|
dispatch(clearFiles());
|
|
dispatch(clearInitialQuery());
|
|
};
|
|
|
|
const handleAgentInit = () => {
|
|
if (initialQuery) {
|
|
dispatchInitialQuery(initialQuery);
|
|
}
|
|
};
|
|
React.useEffect(() => {
|
|
if (curAgentState === AgentState.INIT) {
|
|
handleAgentInit();
|
|
}
|
|
}, [curAgentState]);
|
|
|
|
React.useEffect(() => {
|
|
if (statusRef.current === status) {
|
|
return;
|
|
}
|
|
statusRef.current = status;
|
|
|
|
if (status !== WsClientProviderStatus.DISCONNECTED && initialQuery) {
|
|
dispatch(
|
|
addUserMessage({
|
|
content: initialQuery,
|
|
imageUrls: files,
|
|
timestamp: new Date().toISOString(),
|
|
pending: true,
|
|
}),
|
|
);
|
|
}
|
|
|
|
if (status === WsClientProviderStatus.DISCONNECTED) {
|
|
dispatch(setCurrentAgentState(AgentState.STOPPED));
|
|
}
|
|
}, [status]);
|
|
};
|
|
|