mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-12-03 02:08:17 +00:00
95 lines
2.5 KiB
TypeScript
95 lines
2.5 KiB
TypeScript
'use client';
|
|
|
|
import { Fragment, useEffect, useRef, useState } from 'react';
|
|
import MessageInput from './MessageInput';
|
|
import MessageBox from './MessageBox';
|
|
import MessageBoxLoading from './MessageBoxLoading';
|
|
import { useChat } from '@/lib/hooks/useChat';
|
|
|
|
const Chat = () => {
|
|
const { sections, loading, messageAppeared, messages } = useChat();
|
|
|
|
const [dividerWidth, setDividerWidth] = useState(0);
|
|
const dividerRef = useRef<HTMLDivElement | null>(null);
|
|
const messageEnd = useRef<HTMLDivElement | null>(null);
|
|
const lastScrolledRef = useRef<number>(0);
|
|
|
|
useEffect(() => {
|
|
const updateDividerWidth = () => {
|
|
if (dividerRef.current) {
|
|
setDividerWidth(dividerRef.current.offsetWidth);
|
|
}
|
|
};
|
|
|
|
updateDividerWidth();
|
|
|
|
const resizeObserver = new ResizeObserver(() => {
|
|
updateDividerWidth();
|
|
});
|
|
|
|
const currentRef = dividerRef.current;
|
|
if (currentRef) {
|
|
resizeObserver.observe(currentRef);
|
|
}
|
|
|
|
window.addEventListener('resize', updateDividerWidth);
|
|
|
|
return () => {
|
|
if (currentRef) {
|
|
resizeObserver.unobserve(currentRef);
|
|
}
|
|
resizeObserver.disconnect();
|
|
window.removeEventListener('resize', updateDividerWidth);
|
|
};
|
|
}, [sections.length]);
|
|
|
|
useEffect(() => {
|
|
const scroll = () => {
|
|
messageEnd.current?.scrollIntoView({ behavior: 'auto' });
|
|
};
|
|
|
|
if (messages.length === 1) {
|
|
document.title = `${messages[0].query.substring(0, 30)} - Perplexica`;
|
|
}
|
|
|
|
if (sections.length > lastScrolledRef.current) {
|
|
scroll();
|
|
lastScrolledRef.current = sections.length;
|
|
}
|
|
}, [messages]);
|
|
|
|
return (
|
|
<div className="flex flex-col space-y-6 pt-8 pb-44 lg:pb-32 sm:mx-4 md:mx-8">
|
|
{sections.map((section, i) => {
|
|
const isLast = i === sections.length - 1;
|
|
|
|
return (
|
|
<Fragment key={section.message.messageId}>
|
|
<MessageBox
|
|
section={section}
|
|
sectionIndex={i}
|
|
dividerRef={isLast ? dividerRef : undefined}
|
|
isLast={isLast}
|
|
/>
|
|
{!isLast && (
|
|
<div className="h-px w-full bg-light-secondary dark:bg-dark-secondary" />
|
|
)}
|
|
</Fragment>
|
|
);
|
|
})}
|
|
{loading && !messageAppeared && <MessageBoxLoading />}
|
|
<div ref={messageEnd} className="h-0" />
|
|
{dividerWidth > 0 && (
|
|
<div
|
|
className="bottom-24 lg:bottom-10 fixed z-40"
|
|
style={{ width: dividerWidth }}
|
|
>
|
|
<MessageInput />
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Chat;
|