mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-18 11:51:41 +03:00
6acb13d4ae
* refactor(<ChatPage/>) * test(<ChatInput />): add unit tests * test(<ChatMessages />): add unit tests
89 lines
2.3 KiB
TypeScript
89 lines
2.3 KiB
TypeScript
"use client";
|
|
|
|
import { createContext, useContext, useState } from "react";
|
|
|
|
import { ChatHistory } from "../../app/chat/[chatId]/types";
|
|
|
|
type ChatContextProps = {
|
|
history: ChatHistory[];
|
|
setHistory: (history: ChatHistory[]) => void;
|
|
addToHistory: (message: ChatHistory) => void;
|
|
updateHistory: (chat: ChatHistory) => void;
|
|
updateStreamingHistory: (streamedChat: ChatHistory) => void;
|
|
};
|
|
|
|
export const ChatContext = createContext<ChatContextProps | undefined>(
|
|
undefined
|
|
);
|
|
|
|
export const ChatProvider = ({
|
|
children,
|
|
}: {
|
|
children: JSX.Element | JSX.Element[];
|
|
}): JSX.Element => {
|
|
const [history, setHistory] = useState<ChatHistory[]>([]);
|
|
|
|
const addToHistory = (message: ChatHistory) => {
|
|
setHistory((prevHistory) => [...prevHistory, message]);
|
|
};
|
|
|
|
const updateStreamingHistory = (streamedChat: ChatHistory): void => {
|
|
setHistory((prevHistory: ChatHistory[]) => {
|
|
console.log("new chat", streamedChat);
|
|
const updatedHistory = prevHistory.find(
|
|
(item) => item.message_id === streamedChat.message_id
|
|
)
|
|
? prevHistory.map((item: ChatHistory) =>
|
|
item.message_id === streamedChat.message_id
|
|
? { ...item, assistant: item.assistant + streamedChat.assistant }
|
|
: item
|
|
)
|
|
: [...prevHistory, streamedChat];
|
|
|
|
console.log("updated history", updatedHistory);
|
|
|
|
return updatedHistory;
|
|
});
|
|
};
|
|
|
|
const updateHistory = (chat: ChatHistory): void => {
|
|
setHistory((prevHistory: ChatHistory[]) => {
|
|
const updatedHistory = prevHistory.find(
|
|
(item) => item.message_id === chat.message_id
|
|
)
|
|
? prevHistory.map((item: ChatHistory) =>
|
|
item.message_id === chat.message_id
|
|
? { ...item, assistant: chat.assistant }
|
|
: item
|
|
)
|
|
: [...prevHistory, chat];
|
|
|
|
return updatedHistory;
|
|
});
|
|
};
|
|
|
|
return (
|
|
<ChatContext.Provider
|
|
value={{
|
|
history,
|
|
setHistory,
|
|
addToHistory,
|
|
updateHistory,
|
|
updateStreamingHistory,
|
|
}}
|
|
>
|
|
{children}
|
|
</ChatContext.Provider>
|
|
);
|
|
};
|
|
|
|
export const useChatContext = (): ChatContextProps => {
|
|
const context = useContext(ChatContext);
|
|
|
|
if (context === undefined) {
|
|
throw new Error("useChatContext must be used inside ChatProvider");
|
|
}
|
|
|
|
return context;
|
|
};
|