157 lines
4.5 KiB
JavaScript
Executable File
157 lines
4.5 KiB
JavaScript
Executable File
import React, { memo } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
import injectWbResizeEvent from '/imports/ui/components/presentation/resize-wrapper/component';
|
|
import Button from '/imports/ui/components/button/component';
|
|
import { Session } from 'meteor/session';
|
|
import withShortcutHelper from '/imports/ui/components/shortcut-help/service';
|
|
import { styles } from './styles.scss';
|
|
import MessageForm from './message-form/container';
|
|
import MessageList from './message-list/container';
|
|
import ChatDropdown from './chat-dropdown/component';
|
|
|
|
const ELEMENT_ID = 'chat-messages';
|
|
|
|
const intlMessages = defineMessages({
|
|
closeChatLabel: {
|
|
id: 'app.chat.closeChatLabel',
|
|
description: 'aria-label for closing chat button',
|
|
},
|
|
hideChatLabel: {
|
|
id: 'app.chat.hideChatLabel',
|
|
description: 'aria-label for hiding chat button',
|
|
},
|
|
});
|
|
const Chat = (props) => {
|
|
const {
|
|
chatID,
|
|
chatName,
|
|
title,
|
|
messages,
|
|
partnerIsLoggedOut,
|
|
isChatLocked,
|
|
actions,
|
|
intl,
|
|
shortcuts,
|
|
isMeteorConnected,
|
|
lastReadMessageTime,
|
|
hasUnreadMessages,
|
|
scrollPosition,
|
|
UnsentMessagesCollection,
|
|
minMessageLength,
|
|
maxMessageLength,
|
|
amIModerator,
|
|
meetingIsBreakout,
|
|
} = props;
|
|
|
|
const HIDE_CHAT_AK = shortcuts.hidePrivateChat;
|
|
const CLOSE_CHAT_AK = shortcuts.closePrivateChat;
|
|
|
|
return (
|
|
<div
|
|
data-test="publicChat"
|
|
className={styles.chat}
|
|
>
|
|
<header className={styles.header}>
|
|
<div
|
|
data-test="chatTitle"
|
|
className={styles.title}
|
|
>
|
|
<Button
|
|
onClick={() => {
|
|
Session.set('idChatOpen', '');
|
|
Session.set('openPanel', 'userlist');
|
|
}}
|
|
aria-label={intl.formatMessage(intlMessages.hideChatLabel, { 0: title })}
|
|
accessKey={HIDE_CHAT_AK}
|
|
label={title}
|
|
icon="left_arrow"
|
|
className={styles.hideBtn}
|
|
/>
|
|
</div>
|
|
{
|
|
chatID !== 'public'
|
|
? (
|
|
<Button
|
|
icon="close"
|
|
size="sm"
|
|
ghost
|
|
color="dark"
|
|
hideLabel
|
|
onClick={() => {
|
|
actions.handleClosePrivateChat(chatID);
|
|
Session.set('idChatOpen', '');
|
|
Session.set('openPanel', 'userlist');
|
|
}}
|
|
aria-label={intl.formatMessage(intlMessages.closeChatLabel, { 0: title })}
|
|
label={intl.formatMessage(intlMessages.closeChatLabel, { 0: title })}
|
|
accessKey={CLOSE_CHAT_AK}
|
|
/>
|
|
)
|
|
: <ChatDropdown {...{ meetingIsBreakout, isMeteorConnected, amIModerator }} />
|
|
}
|
|
</header>
|
|
<MessageList
|
|
id={ELEMENT_ID}
|
|
chatId={chatID}
|
|
handleScrollUpdate={actions.handleScrollUpdate}
|
|
handleReadMessage={actions.handleReadMessage}
|
|
{...{
|
|
partnerIsLoggedOut,
|
|
lastReadMessageTime,
|
|
hasUnreadMessages,
|
|
scrollPosition,
|
|
messages,
|
|
}}
|
|
/>
|
|
<MessageForm
|
|
{...{
|
|
UnsentMessagesCollection,
|
|
chatName,
|
|
minMessageLength,
|
|
maxMessageLength,
|
|
}}
|
|
chatId={chatID}
|
|
chatTitle={title}
|
|
chatAreaId={ELEMENT_ID}
|
|
disabled={isChatLocked || !isMeteorConnected}
|
|
connected={isMeteorConnected}
|
|
locked={isChatLocked}
|
|
handleSendMessage={actions.handleSendMessage}
|
|
partnerIsLoggedOut={partnerIsLoggedOut}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default withShortcutHelper(injectWbResizeEvent(injectIntl(memo(Chat))), ['hidePrivateChat', 'closePrivateChat']);
|
|
|
|
const propTypes = {
|
|
chatID: PropTypes.string.isRequired,
|
|
chatName: PropTypes.string.isRequired,
|
|
title: PropTypes.string.isRequired,
|
|
messages: PropTypes.arrayOf(PropTypes.objectOf(PropTypes.oneOfType([
|
|
PropTypes.array,
|
|
PropTypes.string,
|
|
PropTypes.number,
|
|
PropTypes.object,
|
|
])).isRequired).isRequired,
|
|
shortcuts: PropTypes.objectOf(PropTypes.string),
|
|
partnerIsLoggedOut: PropTypes.bool.isRequired,
|
|
isChatLocked: PropTypes.bool.isRequired,
|
|
isMeteorConnected: PropTypes.bool.isRequired,
|
|
actions: PropTypes.shape({
|
|
handleClosePrivateChat: PropTypes.func.isRequired,
|
|
}).isRequired,
|
|
intl: PropTypes.shape({
|
|
formatMessage: PropTypes.func.isRequired,
|
|
}).isRequired,
|
|
};
|
|
|
|
const defaultProps = {
|
|
shortcuts: [],
|
|
};
|
|
|
|
Chat.propTypes = propTypes;
|
|
Chat.defaultProps = defaultProps;
|