mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-21 02:11:35 +03:00
f4aa22417f
* 🚚 move footer component * 🚚 move navbar component * 🚚 move ui components * 🚚 move browser tab icon to public folder * 🚚 move Chat Provider * 🚚 move hooks to lib * 🚚 move helpers to lib * 🚚 move types to lib
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
"use client";
|
|
import Card from "@/lib/components/ui/Card";
|
|
import useChatsContext from "@/lib/context/ChatsProvider/hooks/useChatsContext";
|
|
import { FC, useEffect, useRef } from "react";
|
|
import ChatMessage from "./ChatMessage";
|
|
|
|
export const ChatMessages: FC = () => {
|
|
const lastChatRef = useRef<HTMLDivElement | null>(null);
|
|
|
|
const { chat } = useChatsContext();
|
|
|
|
useEffect(() => {
|
|
if (!chat || !lastChatRef.current) return;
|
|
|
|
// if (chat.history.length > 2) {
|
|
lastChatRef.current?.scrollIntoView({
|
|
behavior: "smooth",
|
|
block: "end",
|
|
});
|
|
// }
|
|
}, [chat, lastChatRef]);
|
|
|
|
if (!chat) return null;
|
|
|
|
return (
|
|
<Card className="p-5 max-w-3xl w-full flex flex-col h-full mb-8">
|
|
<div className="flex-1">
|
|
{chat.history.length === 0 ? (
|
|
<div className="text-center opacity-50">
|
|
Ask a question, or describe a task.
|
|
</div>
|
|
) : (
|
|
chat.history.map(([speaker, text], idx) => {
|
|
return (
|
|
<ChatMessage
|
|
ref={idx === chat.history.length - 1 ? lastChatRef : null}
|
|
key={idx}
|
|
speaker={speaker}
|
|
text={text}
|
|
/>
|
|
);
|
|
})
|
|
)}
|
|
</div>
|
|
</Card>
|
|
);
|
|
};
|
|
export default ChatMessages;
|