mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-02 02:29:08 +00:00
119 lines
4 KiB
TypeScript
119 lines
4 KiB
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
import {
|
|
ChatSection,
|
|
ChatHandler,
|
|
ChatCanvas,
|
|
ChatMessages,
|
|
useChatUI,
|
|
ChatMessage,
|
|
Message,
|
|
} from "@llamaindex/chat-ui";
|
|
import { Document } from "@/hooks/use-documents";
|
|
import { CustomChatInput } from "@/components/chat_v2/ChatInputGroup";
|
|
import { ResearchMode } from "@/components/chat";
|
|
import TerminalDisplay from "@/components/chat_v2/ChatTerminal";
|
|
import ChatSourcesDisplay from "@/components/chat_v2/ChatSources";
|
|
import { CitationDisplay } from "@/components/chat_v2/ChatCitation";
|
|
import { ChatFurtherQuestions } from "@/components/chat_v2/ChatFurtherQuestions";
|
|
|
|
interface ChatInterfaceProps {
|
|
handler: ChatHandler;
|
|
onDocumentSelectionChange?: (documents: Document[]) => void;
|
|
selectedDocuments?: Document[];
|
|
onConnectorSelectionChange?: (connectorTypes: string[]) => void;
|
|
selectedConnectors?: string[];
|
|
searchMode?: "DOCUMENTS" | "CHUNKS";
|
|
onSearchModeChange?: (mode: "DOCUMENTS" | "CHUNKS") => void;
|
|
researchMode?: ResearchMode;
|
|
onResearchModeChange?: (mode: ResearchMode) => void;
|
|
}
|
|
|
|
|
|
function ChatMessageDisplay({
|
|
message,
|
|
isLast,
|
|
}: {
|
|
message: Message;
|
|
isLast: boolean;
|
|
}) {
|
|
return (
|
|
<ChatMessage
|
|
message={message}
|
|
isLast={isLast}
|
|
className="flex flex-col "
|
|
>
|
|
{message.role === "assistant" ? (
|
|
<div className="flex-1 flex flex-col space-y-4">
|
|
<TerminalDisplay message={message} open={isLast} />
|
|
<ChatSourcesDisplay message={message} />
|
|
<ChatMessage.Content className="flex-1">
|
|
<ChatMessage.Content.Markdown citationComponent={CitationDisplay} />
|
|
</ChatMessage.Content>
|
|
<div className="flex flex-row justify-end gap-2">
|
|
{isLast && <ChatFurtherQuestions message={message} />}
|
|
<ChatMessage.Actions className="flex-1 flex-row" />
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<ChatMessage.Content className="flex-1">
|
|
<ChatMessage.Content.Markdown />
|
|
</ChatMessage.Content>
|
|
)}
|
|
</ChatMessage>
|
|
);
|
|
}
|
|
|
|
function ChatMessagesDisplay() {
|
|
const { messages } = useChatUI();
|
|
|
|
return (
|
|
<ChatMessages className="flex-1">
|
|
<ChatMessages.List className="p-4">
|
|
{messages.map((message, index) => (
|
|
<ChatMessageDisplay
|
|
key={`Message-${index}`}
|
|
message={message}
|
|
isLast={index === messages.length - 1}
|
|
/>
|
|
))}
|
|
</ChatMessages.List>
|
|
<ChatMessages.Loading />
|
|
</ChatMessages>
|
|
);
|
|
}
|
|
|
|
export default function ChatInterface({
|
|
handler,
|
|
onDocumentSelectionChange,
|
|
selectedDocuments = [],
|
|
onConnectorSelectionChange,
|
|
selectedConnectors = [],
|
|
searchMode,
|
|
onSearchModeChange,
|
|
researchMode,
|
|
onResearchModeChange,
|
|
}: ChatInterfaceProps) {
|
|
return (
|
|
<ChatSection handler={handler} className="flex h-full">
|
|
<div className="flex flex-1 flex-col">
|
|
<ChatMessagesDisplay />
|
|
<div className="border-t p-4">
|
|
<CustomChatInput
|
|
onDocumentSelectionChange={onDocumentSelectionChange}
|
|
selectedDocuments={selectedDocuments}
|
|
onConnectorSelectionChange={onConnectorSelectionChange}
|
|
selectedConnectors={selectedConnectors}
|
|
searchMode={searchMode}
|
|
onSearchModeChange={onSearchModeChange}
|
|
researchMode={researchMode}
|
|
onResearchModeChange={onResearchModeChange}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<ChatCanvas className="w-1/2 border-l" />
|
|
</ChatSection>
|
|
);
|
|
}
|