mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-28 17:53:21 +08:00

* fix the change assistant didn't take effect immediately #45 * Update src/store/conversation.ts Co-authored-by: boojack <stevenlgtm@gmail.com> * change method name * change method name * fix the call method --------- Co-authored-by: boojack <stevenlgtm@gmail.com>
238 lines
8.0 KiB
TypeScript
238 lines
8.0 KiB
TypeScript
import { head, last } from "lodash-es";
|
|
import { useEffect, useRef, useState } from "react";
|
|
import { toast } from "react-hot-toast";
|
|
import {
|
|
getAssistantById,
|
|
getPromptGeneratorOfAssistant,
|
|
useConversationStore,
|
|
useMessageStore,
|
|
useConnectionStore,
|
|
useSettingStore,
|
|
useLayoutStore,
|
|
} from "@/store";
|
|
import { CreatorRole, Message } from "@/types";
|
|
import { countTextTokens, generateUUID } from "@/utils";
|
|
import Header from "./Header";
|
|
import EmptyView from "../EmptyView";
|
|
import MessageView from "./MessageView";
|
|
import MessageTextarea from "./MessageTextarea";
|
|
import DataStorageBanner from "../DataStorageBanner";
|
|
import ProductHuntBanner from "../ProductHuntBanner";
|
|
|
|
// The maximum number of tokens that can be sent to the OpenAI API.
|
|
// reference: https://platform.openai.com/docs/api-reference/completions/create#completions/create-max_tokens
|
|
const MAX_TOKENS = 4000;
|
|
|
|
const ConversationView = () => {
|
|
const settingStore = useSettingStore();
|
|
const layoutStore = useLayoutStore();
|
|
const connectionStore = useConnectionStore();
|
|
const conversationStore = useConversationStore();
|
|
const messageStore = useMessageStore();
|
|
const [isStickyAtBottom, setIsStickyAtBottom] = useState<boolean>(true);
|
|
const [showHeaderShadow, setShowHeaderShadow] = useState<boolean>(false);
|
|
const conversationViewRef = useRef<HTMLDivElement>(null);
|
|
const currentConversation = conversationStore.getConversationById(conversationStore.currentConversationId);
|
|
const messageList = messageStore.messageList.filter((message) => message.conversationId === currentConversation?.id);
|
|
const lastMessage = last(messageList);
|
|
|
|
useEffect(() => {
|
|
messageStore.messageList.map((message) => {
|
|
if (message.status === "LOADING") {
|
|
if (message.content === "") {
|
|
messageStore.updateMessage(message.id, {
|
|
content: "Failed to send the message.",
|
|
status: "FAILED",
|
|
});
|
|
} else {
|
|
messageStore.updateMessage(message.id, {
|
|
status: "DONE",
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
const handleConversationViewScroll = () => {
|
|
if (!conversationViewRef.current) {
|
|
return;
|
|
}
|
|
setShowHeaderShadow((conversationViewRef.current?.scrollTop || 0) > 0);
|
|
setIsStickyAtBottom(
|
|
conversationViewRef.current.scrollTop + conversationViewRef.current.clientHeight >= conversationViewRef.current.scrollHeight
|
|
);
|
|
};
|
|
conversationViewRef.current?.addEventListener("scroll", handleConversationViewScroll);
|
|
|
|
return () => {
|
|
conversationViewRef.current?.removeEventListener("scroll", handleConversationViewScroll);
|
|
};
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (!conversationViewRef.current) {
|
|
return;
|
|
}
|
|
conversationViewRef.current.scrollTop = conversationViewRef.current.scrollHeight;
|
|
}, [currentConversation, lastMessage?.id]);
|
|
|
|
useEffect(() => {
|
|
if (!conversationViewRef.current) {
|
|
return;
|
|
}
|
|
|
|
if (lastMessage?.status === "LOADING" && isStickyAtBottom) {
|
|
conversationViewRef.current.scrollTop = conversationViewRef.current.scrollHeight;
|
|
}
|
|
}, [lastMessage?.status, lastMessage?.content, isStickyAtBottom]);
|
|
|
|
useEffect(() => {
|
|
if (
|
|
currentConversation?.connectionId === connectionStore.currentConnectionCtx?.connection.id &&
|
|
currentConversation?.databaseName === connectionStore.currentConnectionCtx?.database?.name
|
|
) {
|
|
return;
|
|
}
|
|
|
|
// Auto select the first conversation when the current connection changes.
|
|
const conversationList = conversationStore.conversationList.filter(
|
|
(conversation) =>
|
|
conversation.connectionId === connectionStore.currentConnectionCtx?.connection.id &&
|
|
conversation.databaseName === connectionStore.currentConnectionCtx?.database?.name
|
|
);
|
|
conversationStore.setCurrentConversationId(head(conversationList)?.id);
|
|
}, [currentConversation, connectionStore.currentConnectionCtx]);
|
|
|
|
const sendMessageToCurrentConversation = async () => {
|
|
if (!currentConversation) {
|
|
return;
|
|
}
|
|
if (lastMessage?.status === "LOADING") {
|
|
return;
|
|
}
|
|
|
|
const messageList = messageStore.getState().messageList.filter((message) => message.conversationId === currentConversation.id);
|
|
let prompt = "";
|
|
let tokens = 0;
|
|
|
|
const message: Message = {
|
|
id: generateUUID(),
|
|
conversationId: currentConversation.id,
|
|
creatorId: currentConversation.assistantId,
|
|
creatorRole: CreatorRole.Assistant,
|
|
createdAt: Date.now(),
|
|
content: "",
|
|
status: "LOADING",
|
|
};
|
|
messageStore.addMessage(message);
|
|
|
|
if (connectionStore.currentConnectionCtx?.database) {
|
|
let schema = "";
|
|
try {
|
|
const tables = await connectionStore.getOrFetchDatabaseSchema(connectionStore.currentConnectionCtx?.database);
|
|
for (const table of tables) {
|
|
if (tokens < MAX_TOKENS / 2) {
|
|
tokens += countTextTokens(schema + table.structure);
|
|
schema += table.structure;
|
|
}
|
|
}
|
|
} catch (error: any) {
|
|
toast.error(error.message);
|
|
}
|
|
const promptGenerator = getPromptGeneratorOfAssistant(getAssistantById(currentConversation.assistantId)!);
|
|
prompt = promptGenerator(schema);
|
|
}
|
|
let formatedMessageList = [];
|
|
for (let i = messageList.length - 1; i >= 0; i--) {
|
|
const message = messageList[i];
|
|
if (tokens < MAX_TOKENS) {
|
|
tokens += countTextTokens(message.content);
|
|
formatedMessageList.unshift({
|
|
role: message.creatorRole,
|
|
content: message.content,
|
|
});
|
|
}
|
|
}
|
|
formatedMessageList.unshift({
|
|
role: CreatorRole.System,
|
|
content: prompt,
|
|
});
|
|
|
|
const rawRes = await fetch("/api/chat", {
|
|
method: "POST",
|
|
body: JSON.stringify({
|
|
messages: formatedMessageList,
|
|
openAIApiConfig: settingStore.setting.openAIApiConfig,
|
|
}),
|
|
});
|
|
|
|
if (!rawRes.ok) {
|
|
console.error(rawRes);
|
|
let errorMessage = "Failed to request message, please check your network.";
|
|
try {
|
|
const res = await rawRes.json();
|
|
errorMessage = res.error.message;
|
|
} catch (error) {
|
|
// do nth
|
|
}
|
|
messageStore.updateMessage(message.id, {
|
|
content: errorMessage,
|
|
status: "FAILED",
|
|
});
|
|
return;
|
|
}
|
|
|
|
const data = rawRes.body;
|
|
if (!data) {
|
|
toast.error("No data return");
|
|
return;
|
|
}
|
|
|
|
const reader = data.getReader();
|
|
const decoder = new TextDecoder("utf-8");
|
|
let done = false;
|
|
while (!done) {
|
|
const { value, done: readerDone } = await reader.read();
|
|
if (value) {
|
|
const char = decoder.decode(value);
|
|
if (char) {
|
|
message.content = message.content + char;
|
|
messageStore.updateMessage(message.id, {
|
|
content: message.content,
|
|
});
|
|
}
|
|
}
|
|
done = readerDone;
|
|
}
|
|
messageStore.updateMessage(message.id, {
|
|
status: "DONE",
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div
|
|
ref={conversationViewRef}
|
|
className={`${
|
|
layoutStore.showSidebar && "sm:pl-80"
|
|
} relative w-full h-full max-h-full flex flex-col justify-start items-start overflow-y-auto bg-white dark:bg-zinc-800`}
|
|
>
|
|
<div className="sticky top-0 z-1 bg-white dark:bg-zinc-800 w-full flex flex-col justify-start items-start">
|
|
<ProductHuntBanner />
|
|
<DataStorageBanner />
|
|
<Header className={showHeaderShadow ? "shadow" : ""} />
|
|
</div>
|
|
<div className="p-2 w-full h-auto grow max-w-4xl py-1 px-4 sm:px-8 mx-auto">
|
|
{messageList.length === 0 ? (
|
|
<EmptyView className="mt-16" sendMessage={sendMessageToCurrentConversation} />
|
|
) : (
|
|
messageList.map((message) => <MessageView key={message.id} message={message} />)
|
|
)}
|
|
</div>
|
|
<div className="sticky bottom-0 w-full max-w-4xl py-2 px-4 sm:px-8 mx-auto bg-white dark:bg-zinc-800 bg-opacity-80 backdrop-blur">
|
|
<MessageTextarea disabled={lastMessage?.status === "LOADING"} sendMessage={sendMessageToCurrentConversation} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ConversationView;
|