196 lines
6.2 KiB
TypeScript
196 lines
6.2 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
import { ReactNode, useEffect, useRef } from 'react'
|
|
|
|
import { events, EventName, NewMessageResponse, PluginType } from '@janhq/core'
|
|
|
|
import { ConversationalPlugin, ModelPlugin } from '@janhq/core/lib/plugins'
|
|
import { Message } from '@janhq/core/lib/types'
|
|
import { useAtomValue, useSetAtom } from 'jotai'
|
|
|
|
import { useDownloadState } from '@/hooks/useDownloadState'
|
|
import { useGetDownloadedModels } from '@/hooks/useGetDownloadedModels'
|
|
|
|
import {
|
|
addNewMessageAtom,
|
|
chatMessages,
|
|
updateMessageAtom,
|
|
} from '@/helpers/atoms/ChatMessage.atom'
|
|
import {
|
|
updateConversationAtom,
|
|
updateConversationWaitingForResponseAtom,
|
|
userConversationsAtom,
|
|
} from '@/helpers/atoms/Conversation.atom'
|
|
|
|
import { downloadingModelsAtom } from '@/helpers/atoms/Model.atom'
|
|
import { MessageStatus, toChatMessage } from '@/models/ChatMessage'
|
|
import { pluginManager } from '@/plugin'
|
|
import { ChatMessage, Conversation } from '@/types/chatMessage'
|
|
|
|
let currentConversation: Conversation | undefined = undefined
|
|
|
|
export default function EventHandler({ children }: { children: ReactNode }) {
|
|
const addNewMessage = useSetAtom(addNewMessageAtom)
|
|
const updateMessage = useSetAtom(updateMessageAtom)
|
|
const updateConversation = useSetAtom(updateConversationAtom)
|
|
|
|
const { setDownloadState, setDownloadStateSuccess } = useDownloadState()
|
|
const { downloadedModels, setDownloadedModels } = useGetDownloadedModels()
|
|
|
|
const updateConvWaiting = useSetAtom(updateConversationWaitingForResponseAtom)
|
|
const models = useAtomValue(downloadingModelsAtom)
|
|
const messages = useAtomValue(chatMessages)
|
|
const conversations = useAtomValue(userConversationsAtom)
|
|
const messagesRef = useRef(messages)
|
|
const convoRef = useRef(conversations)
|
|
|
|
useEffect(() => {
|
|
messagesRef.current = messages
|
|
convoRef.current = conversations
|
|
}, [messages, conversations])
|
|
|
|
async function handleNewMessageResponse(message: NewMessageResponse) {
|
|
if (message.conversationId) {
|
|
const convo = convoRef.current.find(
|
|
(e) => e._id == message.conversationId
|
|
)
|
|
if (!convo) return
|
|
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,
|
|
MessageStatus.Pending
|
|
)
|
|
}
|
|
|
|
if (messageResponse.conversationId) {
|
|
if (
|
|
!currentConversation ||
|
|
currentConversation._id !== messageResponse.conversationId
|
|
) {
|
|
if (convoRef.current && messageResponse.conversationId)
|
|
currentConversation = convoRef.current.find(
|
|
(e) => e._id == messageResponse.conversationId
|
|
)
|
|
}
|
|
|
|
if (currentConversation) {
|
|
const updatedConv: Conversation = {
|
|
...currentConversation,
|
|
lastMessage: messageResponse.message,
|
|
}
|
|
|
|
updateConversation(updatedConv)
|
|
}
|
|
}
|
|
}
|
|
|
|
async function handleMessageResponseFinished(
|
|
messageResponse: NewMessageResponse
|
|
) {
|
|
if (!messageResponse.conversationId || !convoRef.current) return
|
|
updateConvWaiting(messageResponse.conversationId, false)
|
|
|
|
if (
|
|
messageResponse.conversationId &&
|
|
messageResponse._id &&
|
|
messageResponse.message
|
|
) {
|
|
updateMessage(
|
|
messageResponse._id,
|
|
messageResponse.conversationId,
|
|
messageResponse.message,
|
|
MessageStatus.Ready
|
|
)
|
|
}
|
|
|
|
const convo = convoRef.current.find(
|
|
(e) => e._id == messageResponse.conversationId
|
|
)
|
|
if (convo) {
|
|
const messagesData = (messagesRef.current ?? [])[convo._id].map<Message>(
|
|
(e: ChatMessage) => {
|
|
return {
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
_id: e.id,
|
|
message: e.text,
|
|
user: e.senderUid,
|
|
updatedAt: new Date(e.createdAt).toISOString(),
|
|
createdAt: new Date(e.createdAt).toISOString(),
|
|
}
|
|
}
|
|
)
|
|
pluginManager
|
|
.get<ConversationalPlugin>(PluginType.Conversational)
|
|
?.saveConversation({
|
|
...convo,
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
_id: convo._id ?? '',
|
|
name: convo.name ?? '',
|
|
message: convo.lastMessage ?? '',
|
|
messages: messagesData,
|
|
})
|
|
}
|
|
}
|
|
|
|
function handleDownloadUpdate(state: any) {
|
|
if (!state) return
|
|
setDownloadState(state)
|
|
}
|
|
|
|
function handleDownloadSuccess(state: any) {
|
|
if (state && state.fileName && state.success === true) {
|
|
state.fileName = state.fileName.replace('models/', '')
|
|
setDownloadStateSuccess(state.fileName)
|
|
const model = models.find((e) => e._id === state.fileName)
|
|
if (model)
|
|
pluginManager
|
|
.get<ModelPlugin>(PluginType.Model)
|
|
?.saveModel(model)
|
|
.then(() => {
|
|
setDownloadedModels([...downloadedModels, model])
|
|
})
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
if (window.corePlugin.events) {
|
|
events.on(EventName.OnNewMessageResponse, handleNewMessageResponse)
|
|
events.on(EventName.OnMessageResponseUpdate, handleMessageResponseUpdate)
|
|
events.on(
|
|
EventName.OnMessageResponseFinished,
|
|
handleMessageResponseFinished
|
|
)
|
|
events.on(EventName.OnDownloadUpdate, handleDownloadUpdate)
|
|
events.on(EventName.OnDownloadSuccess, handleDownloadSuccess)
|
|
}
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [])
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
events.off(EventName.OnNewMessageResponse, handleNewMessageResponse)
|
|
events.off(EventName.OnMessageResponseUpdate, handleMessageResponseUpdate)
|
|
events.off(
|
|
EventName.OnMessageResponseFinished,
|
|
handleMessageResponseFinished
|
|
)
|
|
events.off(EventName.OnDownloadUpdate, handleDownloadUpdate)
|
|
events.off(EventName.OnDownloadSuccess, handleDownloadSuccess)
|
|
}
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [])
|
|
return <>{children}</>
|
|
}
|