* feat: add extesion settings Signed-off-by: James <james@jan.ai> --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai> Co-authored-by: Louis <louis@jan.ai>
42 lines
1.3 KiB
TypeScript
42 lines
1.3 KiB
TypeScript
import ScrollToBottom from 'react-scroll-to-bottom'
|
|
|
|
import { MessageStatus } from '@janhq/core'
|
|
import { useAtomValue } from 'jotai'
|
|
|
|
import ChatItem from '../ChatItem'
|
|
|
|
import ErrorMessage from '../ErrorMessage'
|
|
|
|
import EmptyModel from './EmptyModel'
|
|
import EmptyThread from './EmptyThread'
|
|
|
|
import { getCurrentChatMessagesAtom } from '@/helpers/atoms/ChatMessage.atom'
|
|
import { downloadedModelsAtom } from '@/helpers/atoms/Model.atom'
|
|
|
|
const ChatBody: React.FC = () => {
|
|
const messages = useAtomValue(getCurrentChatMessagesAtom)
|
|
const downloadedModels = useAtomValue(downloadedModelsAtom)
|
|
|
|
if (downloadedModels.length === 0) return <EmptyModel />
|
|
if (messages.length === 0) return <EmptyThread />
|
|
|
|
return (
|
|
<ScrollToBottom className="flex h-full w-full flex-col">
|
|
{messages.map((message, index) => (
|
|
<div key={message.id}>
|
|
{message.status !== MessageStatus.Error &&
|
|
message.content.length > 0 && (
|
|
<ChatItem {...message} key={message.id} />
|
|
)}
|
|
|
|
{(message.status === MessageStatus.Error ||
|
|
message.status === MessageStatus.Stopped) &&
|
|
index === messages.length - 1 && <ErrorMessage message={message} />}
|
|
</div>
|
|
))}
|
|
</ScrollToBottom>
|
|
)
|
|
}
|
|
|
|
export default ChatBody
|