mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
3be937c503
Migrate layout context to TypeScript GitOrigin-RevId: ce453bfb67f7c36176fa24144413b556cd3c117e
119 lines
3.3 KiB
JavaScript
119 lines
3.3 KiB
JavaScript
import React, { lazy, Suspense, useEffect, useState } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import MessageInput from './message-input'
|
|
import InfiniteScroll from './infinite-scroll'
|
|
import ChatFallbackError from './chat-fallback-error'
|
|
import Icon from '../../../shared/components/icon'
|
|
import { useLayoutContext } from '../../../shared/context/layout-context'
|
|
import { useUserContext } from '../../../shared/context/user-context'
|
|
import withErrorBoundary from '../../../infrastructure/error-boundary'
|
|
import { FetchError } from '../../../infrastructure/fetch-json'
|
|
import { useChatContext } from '../context/chat-context'
|
|
import LoadingSpinner from '../../../shared/components/loading-spinner'
|
|
|
|
const MessageList = lazy(() => import('./message-list'))
|
|
|
|
const ChatPane = React.memo(function ChatPane() {
|
|
const { t } = useTranslation()
|
|
|
|
const { chatIsOpen } = useLayoutContext()
|
|
const user = useUserContext({
|
|
id: PropTypes.string.isRequired,
|
|
})
|
|
|
|
const {
|
|
status,
|
|
messages,
|
|
initialMessagesLoaded,
|
|
atEnd,
|
|
loadInitialMessages,
|
|
loadMoreMessages,
|
|
reset,
|
|
sendMessage,
|
|
markMessagesAsRead,
|
|
error,
|
|
} = useChatContext()
|
|
|
|
useEffect(() => {
|
|
if (chatIsOpen && !initialMessagesLoaded) {
|
|
loadInitialMessages()
|
|
}
|
|
}, [chatIsOpen, loadInitialMessages, initialMessagesLoaded])
|
|
|
|
const shouldDisplayPlaceholder = status !== 'pending' && messages.length === 0
|
|
|
|
const messageContentCount = messages.reduce(
|
|
(acc, { contents }) => acc + contents.length,
|
|
0
|
|
)
|
|
|
|
// Keep the chat pane in the DOM to avoid resetting the form input and re-rendering MathJax content.
|
|
const [chatOpenedOnce, setChatOpenedOnce] = useState(chatIsOpen)
|
|
useEffect(() => {
|
|
if (chatIsOpen) {
|
|
setChatOpenedOnce(true)
|
|
}
|
|
}, [chatIsOpen])
|
|
|
|
if (error) {
|
|
// let user try recover from fetch errors
|
|
if (error instanceof FetchError) {
|
|
return <ChatFallbackError reconnect={reset} />
|
|
}
|
|
throw error
|
|
}
|
|
|
|
if (!user) {
|
|
return null
|
|
}
|
|
if (!chatOpenedOnce) {
|
|
return null
|
|
}
|
|
|
|
return (
|
|
<aside className="chat">
|
|
<InfiniteScroll
|
|
atEnd={atEnd}
|
|
className="messages"
|
|
fetchData={loadMoreMessages}
|
|
isLoading={status === 'pending'}
|
|
itemCount={messageContentCount}
|
|
>
|
|
<div>
|
|
<h2 className="sr-only">{t('chat')}</h2>
|
|
<Suspense fallback={<LoadingSpinner delay={500} />}>
|
|
{status === 'pending' && <LoadingSpinner delay={500} />}
|
|
{shouldDisplayPlaceholder && <Placeholder />}
|
|
<MessageList
|
|
messages={messages}
|
|
userId={user.id}
|
|
resetUnreadMessages={markMessagesAsRead}
|
|
/>
|
|
</Suspense>
|
|
</div>
|
|
</InfiniteScroll>
|
|
<MessageInput
|
|
resetUnreadMessages={markMessagesAsRead}
|
|
sendMessage={sendMessage}
|
|
/>
|
|
</aside>
|
|
)
|
|
})
|
|
|
|
function Placeholder() {
|
|
const { t } = useTranslation()
|
|
return (
|
|
<>
|
|
<div className="no-messages text-center small">{t('no_messages')}</div>
|
|
<div className="first-message text-center">
|
|
{t('send_first_message')}
|
|
<br />
|
|
<Icon type="arrow-down" />
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default withErrorBoundary(ChatPane, ChatFallbackError)
|