* chore: update core services and module export * Correct version of plugins (#374) Co-authored-by: Hien To <tominhhien97@gmail.com> * janhq/jan: Update tag build 1.0.2 for data-plugin * janhq/jan: Update tag build 1.0.2 for inference-plugin * janhq/jan: Update tag build 1.0.2 for model-management-plugin * janhq/jan: Update tag build 1.0.2 for monitoring-plugin * janhq/jan: Update tag build 1.0.2 for openai-plugin * chore: update web to use @janhq/core module --------- Co-authored-by: hiento09 <136591877+hiento09@users.noreply.github.com> Co-authored-by: Hien To <tominhhien97@gmail.com> Co-authored-by: Service Account <service@jan.ai>
35 lines
1.4 KiB
TypeScript
35 lines
1.4 KiB
TypeScript
import { addNewMessageAtom, updateMessageAtom } from "@/_helpers/atoms/ChatMessage.atom";
|
|
import { toChatMessage } from "@/_models/ChatMessage";
|
|
import { events, EventName, NewMessageResponse } from "@janhq/core";
|
|
import { useSetAtom } from "jotai";
|
|
import { ReactNode, useEffect } from "react";
|
|
|
|
export default function EventHandler({ children }: { children: ReactNode }) {
|
|
const addNewMessage = useSetAtom(addNewMessageAtom);
|
|
const updateMessage = useSetAtom(updateMessageAtom);
|
|
|
|
function handleNewMessageResponse(message: NewMessageResponse) {
|
|
const newResponse = toChatMessage(message);
|
|
addNewMessage(newResponse);
|
|
}
|
|
async function handleMessageResponseUpdate(messageResponse: NewMessageResponse) {
|
|
if (messageResponse.conversationId && messageResponse._id && messageResponse.message)
|
|
updateMessage(messageResponse._id, messageResponse.conversationId, messageResponse.message);
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (window.corePlugin.events) {
|
|
events.on(EventName.OnNewMessageResponse, handleNewMessageResponse);
|
|
events.on(EventName.OnMessageResponseUpdate, handleMessageResponseUpdate);
|
|
}
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
events.off(EventName.OnNewMessageResponse, handleNewMessageResponse);
|
|
events.off(EventName.OnMessageResponseUpdate, handleMessageResponseUpdate);
|
|
};
|
|
}, []);
|
|
return <> {children}</>;
|
|
}
|