2018-08-29 17:24:25 +00:00
|
|
|
// @flow
|
|
|
|
|
2019-01-13 19:34:38 +00:00
|
|
|
import React from 'react';
|
2018-08-29 17:24:25 +00:00
|
|
|
|
2019-01-13 19:34:38 +00:00
|
|
|
import { translate } from '../../../base/i18n';
|
2019-10-22 07:56:42 +00:00
|
|
|
import { Icon, IconClose } from '../../../base/icons';
|
2019-03-21 16:38:29 +00:00
|
|
|
import { connect } from '../../../base/redux';
|
2019-01-13 19:34:38 +00:00
|
|
|
import AbstractChat, {
|
|
|
|
_mapDispatchToProps,
|
|
|
|
_mapStateToProps,
|
|
|
|
type Props
|
|
|
|
} from '../AbstractChat';
|
2020-05-20 10:57:03 +00:00
|
|
|
|
2018-08-29 17:24:25 +00:00
|
|
|
import ChatInput from './ChatInput';
|
|
|
|
import DisplayNameForm from './DisplayNameForm';
|
2019-05-04 21:22:52 +00:00
|
|
|
import MessageContainer from './MessageContainer';
|
2019-10-07 12:35:04 +00:00
|
|
|
import MessageRecipient from './MessageRecipient';
|
2018-08-29 17:24:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* React Component for holding the chat feature in a side panel that slides in
|
|
|
|
* and out of view.
|
|
|
|
*/
|
2019-01-13 19:34:38 +00:00
|
|
|
class Chat extends AbstractChat<Props> {
|
2018-08-29 17:24:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether or not the {@code Chat} component is off-screen, having finished
|
|
|
|
* its hiding animation.
|
|
|
|
*/
|
|
|
|
_isExited: boolean;
|
|
|
|
|
2019-05-06 22:07:16 +00:00
|
|
|
/**
|
|
|
|
* Reference to the React Component for displaying chat messages. Used for
|
|
|
|
* scrolling to the end of the chat messages.
|
|
|
|
*/
|
|
|
|
_messageContainerRef: Object;
|
|
|
|
|
2018-08-29 17:24:25 +00:00
|
|
|
/**
|
|
|
|
* Initializes a new {@code Chat} instance.
|
|
|
|
*
|
|
|
|
* @param {Object} props - The read-only properties with which the new
|
|
|
|
* instance is to be initialized.
|
|
|
|
*/
|
|
|
|
constructor(props: Props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this._isExited = true;
|
2019-05-06 22:07:16 +00:00
|
|
|
this._messageContainerRef = React.createRef();
|
2018-08-29 17:24:25 +00:00
|
|
|
|
|
|
|
// Bind event handlers so they are only bound once for every instance.
|
|
|
|
this._renderPanelContent = this._renderPanelContent.bind(this);
|
2019-05-08 17:45:32 +00:00
|
|
|
|
|
|
|
// Bind event handlers so they are only bound once for every instance.
|
|
|
|
this._onChatInputResize = this._onChatInputResize.bind(this);
|
2018-08-29 17:24:25 +00:00
|
|
|
}
|
|
|
|
|
2019-05-06 22:07:16 +00:00
|
|
|
/**
|
|
|
|
* Implements {@code Component#componentDidMount}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
componentDidMount() {
|
|
|
|
this._scrollMessageContainerToBottom(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements {@code Component#componentDidUpdate}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
if (this.props._messages !== prevProps._messages) {
|
|
|
|
this._scrollMessageContainerToBottom(true);
|
|
|
|
} else if (this.props._isOpen && !prevProps._isOpen) {
|
|
|
|
this._scrollMessageContainerToBottom(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-29 17:24:25 +00:00
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
render() {
|
|
|
|
return (
|
2020-03-11 09:45:42 +00:00
|
|
|
<>
|
|
|
|
{ this._renderPanelContent() }
|
|
|
|
</>
|
2018-08-29 17:24:25 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-05-08 17:45:32 +00:00
|
|
|
_onChatInputResize: () => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback invoked when {@code ChatInput} changes height. Preserves
|
|
|
|
* displaying the latest message if it is scrolled to.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onChatInputResize() {
|
|
|
|
this._messageContainerRef.current.maybeUpdateBottomScroll();
|
|
|
|
}
|
|
|
|
|
2018-08-29 17:24:25 +00:00
|
|
|
/**
|
|
|
|
* Returns a React Element for showing chat messages and a form to send new
|
|
|
|
* chat messages.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
_renderChat() {
|
|
|
|
return (
|
2019-05-03 21:26:28 +00:00
|
|
|
<>
|
2019-05-06 22:07:16 +00:00
|
|
|
<MessageContainer
|
|
|
|
messages = { this.props._messages }
|
|
|
|
ref = { this._messageContainerRef } />
|
2019-10-07 12:35:04 +00:00
|
|
|
<MessageRecipient />
|
|
|
|
<ChatInput
|
|
|
|
onResize = { this._onChatInputResize }
|
|
|
|
onSend = { this.props._onSendMessage } />
|
2019-05-03 21:26:28 +00:00
|
|
|
</>
|
2018-08-29 17:24:25 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-05-02 20:53:17 +00:00
|
|
|
/**
|
|
|
|
* Instantiates a React Element to display at the top of {@code Chat} to
|
|
|
|
* close {@code Chat}.
|
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
_renderChatHeader() {
|
|
|
|
return (
|
|
|
|
<div className = 'chat-header'>
|
|
|
|
<div
|
|
|
|
className = 'chat-close'
|
2019-10-22 07:56:42 +00:00
|
|
|
onClick = { this.props._onToggleChat }>
|
|
|
|
<Icon src = { IconClose } />
|
|
|
|
</div>
|
2019-05-02 20:53:17 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2018-08-29 17:24:25 +00:00
|
|
|
|
2020-03-11 09:45:42 +00:00
|
|
|
_renderPanelContent: () => React$Node | null;
|
2018-08-29 17:24:25 +00:00
|
|
|
|
|
|
|
/**
|
2020-03-11 09:45:42 +00:00
|
|
|
* Renders the contents of the chat panel.
|
2018-08-29 17:24:25 +00:00
|
|
|
*
|
|
|
|
* @private
|
|
|
|
* @returns {ReactElement | null}
|
|
|
|
*/
|
2020-03-11 09:45:42 +00:00
|
|
|
_renderPanelContent() {
|
2019-05-02 20:53:17 +00:00
|
|
|
const { _isOpen, _showNamePrompt } = this.props;
|
2020-03-11 09:45:42 +00:00
|
|
|
const ComponentToRender = _isOpen
|
|
|
|
? (
|
2019-05-03 21:26:28 +00:00
|
|
|
<>
|
2019-05-02 20:53:17 +00:00
|
|
|
{ this._renderChatHeader() }
|
2018-08-29 17:24:25 +00:00
|
|
|
{ _showNamePrompt
|
|
|
|
? <DisplayNameForm /> : this._renderChat() }
|
2019-05-03 21:26:28 +00:00
|
|
|
</>
|
2020-03-11 09:45:42 +00:00
|
|
|
)
|
|
|
|
: null;
|
2018-08-29 17:24:25 +00:00
|
|
|
let className = '';
|
|
|
|
|
|
|
|
if (_isOpen) {
|
|
|
|
className = 'slideInExt';
|
|
|
|
} else if (this._isExited) {
|
|
|
|
className = 'invisible';
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
2019-05-03 21:26:28 +00:00
|
|
|
className = { `sideToolbarContainer ${className}` }
|
2018-08-29 17:24:25 +00:00
|
|
|
id = 'sideToolbarContainer'>
|
|
|
|
{ ComponentToRender }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2019-05-06 22:07:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Scrolls the chat messages so the latest message is visible.
|
|
|
|
*
|
|
|
|
* @param {boolean} withAnimation - Whether or not to show a scrolling
|
|
|
|
* animation.
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_scrollMessageContainerToBottom(withAnimation) {
|
|
|
|
if (this._messageContainerRef.current) {
|
|
|
|
this._messageContainerRef.current.scrollToBottom(withAnimation);
|
|
|
|
}
|
|
|
|
}
|
2018-08-29 17:24:25 +00:00
|
|
|
}
|
|
|
|
|
2019-01-13 19:34:38 +00:00
|
|
|
export default translate(connect(_mapStateToProps, _mapDispatchToProps)(Chat));
|