jan/web/helpers/EventHandler.tsx
Louis 96dba2690d feat: class-based plugin manager
chore: add facades

refactor: core module export

refactor: inference plugin - deprecate function registering (#537)

* refactor: revamp inference plugin as class - deprecate function registering

* refactor: monitoring plugin - deprecate service registering (#538)

refactor: revamp inference plugin as class - deprecate function registering

chore: update import

refactor: plugin revamp - model management

chore: update build steps and remove experimental plugins

refactor: remove pluggable electron

chore: add sorting for conversations

chore: build plugins for testing

chore: consistent plugin directory name

chore: docs

chore: fix CI

chore: update conversation prefix
2023-11-06 13:46:01 +07:00

184 lines
5.8 KiB
TypeScript

import {
addNewMessageAtom,
chatMessages,
updateMessageAtom,
} from './atoms/ChatMessage.atom'
import { toChatMessage } from '@models/ChatMessage'
import { events, EventName, NewMessageResponse, PluginType } from '@janhq/core'
import { useAtomValue, useSetAtom } from 'jotai'
import { ReactNode, useEffect, useRef } from 'react'
import useGetBots from '@hooks/useGetBots'
import {
updateConversationAtom,
updateConversationWaitingForResponseAtom,
userConversationsAtom,
} from './atoms/Conversation.atom'
import {
setDownloadStateAtom,
setDownloadStateSuccessAtom,
} from './atoms/DownloadState.atom'
import { downloadedModelAtom } from './atoms/DownloadedModel.atom'
import { getDownloadedModels } from '../hooks/useGetDownloadedModels'
import { pluginManager } from '../plugin/PluginManager'
import { Message } from '@janhq/core/lib/types'
import { ConversationalPlugin, ModelPlugin } from '@janhq/core/lib/plugins'
import { downloadingModelsAtom } from './atoms/Model.atom'
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 { getBotById } = useGetBots()
const updateConvWaiting = useSetAtom(updateConversationWaitingForResponseAtom)
const setDownloadState = useSetAtom(setDownloadStateAtom)
const setDownloadStateSuccess = useSetAtom(setDownloadStateSuccessAtom)
const setDownloadedModels = useSetAtom(downloadedModelAtom)
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 botId = convo?.botId
if (botId) {
const bot = await getBotById(botId)
const newResponse = toChatMessage(message, bot)
addNewMessage(newResponse)
} else {
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
)
}
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)
const convo = convoRef.current.find(
(e) => e._id == messageResponse.conversationId
)
if (convo) {
const messagesData = (messagesRef.current ?? [])[convo._id].map<Message>(
(e: ChatMessage) => {
return {
_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,
_id: convo._id ?? '',
name: convo.name ?? '',
messages: messagesData,
})
}
}
function handleDownloadUpdate(state: any) {
if (!state) return
setDownloadState(state)
}
function handleDownloadSuccess(state: any) {
if (state && state.fileName && state.success === true) {
setDownloadStateSuccess(state.fileName)
const model = models.find((e) => e._id === state.fileName)
if (model)
pluginManager
.get<ModelPlugin>(PluginType.Model)
?.saveModel(model)
.then(() => {
getDownloadedModels().then((models) => {
setDownloadedModels(models)
})
})
}
}
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)
}
}, [])
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)
}
}, [])
return <>{children}</>
}