LibreChat/src/components/main/Messages.jsx

65 lines
2 KiB
React
Raw Normal View History

import React, { useEffect, useState, useRef } from 'react';
import { useSelector } from 'react-redux';
import useDocumentTitle from '~/hooks/useDocumentTitle';
import useDidMountEffect from '~/hooks/useDidMountEffect';
import Message from './Message';
import ScrollToBottom from './ScrollToBottom';
import Landing from './Landing';
export default function Messages({ title, messages }) {
if (messages.length === 0) {
return <Landing title={title}/>;
}
useDocumentTitle(title);
const messagesEndRef = useRef(null);
const [showScrollButton, setShowScrollButton] = useState(false);
const scrollToBottom = () => {
messagesEndRef.current?.scrollIntoView({ behavior: 'smooth' });
};
if (document.body.clientHeight > window.innerHeight) {
setShowScrollButton(true);
}
const handleScroll = (e) => {
const bottom = e.target.scrollHeight - e.target.scrollTop === e.target.clientHeight;
if (bottom) {
setShowScrollButton(false);
} else {
setShowScrollButton(true);
}
}
const scrollHandler = (e) => {
e.preventDefault();
scrollToBottom();
};
return (
<div className="flex-1 overflow-y-auto " onScroll={handleScroll}>
2023-02-08 22:58:24 -05:00
{/* <div className="flex-1 overflow-hidden"> */}
<div className="h-full dark:bg-gray-800">
<div className="flex h-full flex-col items-center text-sm dark:bg-gray-800">
{messages.map((message, i) => (
<Message
key={i}
sender={message.sender}
text={message.text}
last={i === messages.length - 1}
error={!!message.error ? true : false}
/>
))}
{showScrollButton && <ScrollToBottom scrollHandler={scrollHandler} />}
<div
className="group h-32 w-full flex-shrink-0 dark:border-gray-900/50 dark:bg-gray-800 md:h-48"
ref={messagesEndRef}
/>
</div>
</div>
2023-02-08 22:58:24 -05:00
{/* </div> */}
</div>
);
}