mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-25 16:51:03 +00:00
3b1c4e19a4
React chat store GitOrigin-RevId: 204009eb5798b02a41e621b33b05ef0cb9d10b15
91 lines
2.2 KiB
JavaScript
91 lines
2.2 KiB
JavaScript
import React, { useEffect } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import MessageList from './message-list'
|
|
import MessageInput from './message-input'
|
|
import InfiniteScroll from './infinite-scroll'
|
|
import Icon from '../../../shared/components/icon'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { useChatStore } from '../store/chat-store-effect'
|
|
import withErrorBoundary from '../../../infrastructure/error-boundary'
|
|
|
|
function ChatPane({ resetUnreadMessages }) {
|
|
const { t } = useTranslation()
|
|
|
|
const {
|
|
atEnd,
|
|
loading,
|
|
loadMoreMessages,
|
|
messages,
|
|
sendMessage,
|
|
userId
|
|
} = useChatStore()
|
|
|
|
useEffect(() => {
|
|
loadMoreMessages()
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [])
|
|
|
|
const shouldDisplayPlaceholder = !loading && messages.length === 0
|
|
|
|
const messageContentCount = messages.reduce(
|
|
(acc, { contents }) => acc + contents.length,
|
|
0
|
|
)
|
|
|
|
return (
|
|
<aside className="chat">
|
|
<InfiniteScroll
|
|
atEnd={atEnd}
|
|
className="messages"
|
|
fetchData={loadMoreMessages}
|
|
isLoading={loading}
|
|
itemCount={messageContentCount}
|
|
>
|
|
<div>
|
|
<h2 className="sr-only">{t('chat')}</h2>
|
|
{loading && <LoadingSpinner />}
|
|
{shouldDisplayPlaceholder && <Placeholder />}
|
|
<MessageList
|
|
messages={messages}
|
|
userId={userId}
|
|
resetUnreadMessages={resetUnreadMessages}
|
|
/>
|
|
</div>
|
|
</InfiniteScroll>
|
|
<MessageInput
|
|
resetUnreadMessages={resetUnreadMessages}
|
|
sendMessage={sendMessage}
|
|
/>
|
|
</aside>
|
|
)
|
|
}
|
|
|
|
function LoadingSpinner() {
|
|
const { t } = useTranslation()
|
|
return (
|
|
<div className="loading">
|
|
<Icon type="fw" modifier="refresh" spin />
|
|
{` ${t('loading')}…`}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
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>
|
|
</>
|
|
)
|
|
}
|
|
|
|
ChatPane.propTypes = {
|
|
resetUnreadMessages: PropTypes.func.isRequired
|
|
}
|
|
|
|
export default withErrorBoundary(ChatPane)
|