You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Chat.js 5.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. // @flow
  2. import React from 'react';
  3. import Transition from 'react-transition-group/Transition';
  4. import { translate } from '../../../base/i18n';
  5. import { connect } from '../../../base/redux';
  6. import AbstractChat, {
  7. _mapDispatchToProps,
  8. _mapStateToProps,
  9. type Props
  10. } from '../AbstractChat';
  11. import ChatInput from './ChatInput';
  12. import DisplayNameForm from './DisplayNameForm';
  13. import MessageContainer from './MessageContainer';
  14. /**
  15. * React Component for holding the chat feature in a side panel that slides in
  16. * and out of view.
  17. */
  18. class Chat extends AbstractChat<Props> {
  19. /**
  20. * Whether or not the {@code Chat} component is off-screen, having finished
  21. * its hiding animation.
  22. */
  23. _isExited: boolean;
  24. /**
  25. * Reference to the React Component for displaying chat messages. Used for
  26. * scrolling to the end of the chat messages.
  27. */
  28. _messageContainerRef: Object;
  29. /**
  30. * Initializes a new {@code Chat} instance.
  31. *
  32. * @param {Object} props - The read-only properties with which the new
  33. * instance is to be initialized.
  34. */
  35. constructor(props: Props) {
  36. super(props);
  37. this._isExited = true;
  38. this._messageContainerRef = React.createRef();
  39. // Bind event handlers so they are only bound once for every instance.
  40. this._renderPanelContent = this._renderPanelContent.bind(this);
  41. // Bind event handlers so they are only bound once for every instance.
  42. this._onChatInputResize = this._onChatInputResize.bind(this);
  43. }
  44. /**
  45. * Implements {@code Component#componentDidMount}.
  46. *
  47. * @inheritdoc
  48. */
  49. componentDidMount() {
  50. this._scrollMessageContainerToBottom(true);
  51. }
  52. /**
  53. * Implements {@code Component#componentDidUpdate}.
  54. *
  55. * @inheritdoc
  56. */
  57. componentDidUpdate(prevProps) {
  58. if (this.props._messages !== prevProps._messages) {
  59. this._scrollMessageContainerToBottom(true);
  60. } else if (this.props._isOpen && !prevProps._isOpen) {
  61. this._scrollMessageContainerToBottom(false);
  62. }
  63. }
  64. /**
  65. * Implements React's {@link Component#render()}.
  66. *
  67. * @inheritdoc
  68. * @returns {ReactElement}
  69. */
  70. render() {
  71. return (
  72. <Transition
  73. in = { this.props._isOpen }
  74. timeout = { 500 }>
  75. { this._renderPanelContent }
  76. </Transition>
  77. );
  78. }
  79. _onChatInputResize: () => void;
  80. /**
  81. * Callback invoked when {@code ChatInput} changes height. Preserves
  82. * displaying the latest message if it is scrolled to.
  83. *
  84. * @private
  85. * @returns {void}
  86. */
  87. _onChatInputResize() {
  88. this._messageContainerRef.current.maybeUpdateBottomScroll();
  89. }
  90. /**
  91. * Returns a React Element for showing chat messages and a form to send new
  92. * chat messages.
  93. *
  94. * @private
  95. * @returns {ReactElement}
  96. */
  97. _renderChat() {
  98. return (
  99. <>
  100. <MessageContainer
  101. messages = { this.props._messages }
  102. ref = { this._messageContainerRef } />
  103. <ChatInput onResize = { this._onChatInputResize } />
  104. </>
  105. );
  106. }
  107. /**
  108. * Instantiates a React Element to display at the top of {@code Chat} to
  109. * close {@code Chat}.
  110. *
  111. * @private
  112. * @returns {ReactElement}
  113. */
  114. _renderChatHeader() {
  115. return (
  116. <div className = 'chat-header'>
  117. <div
  118. className = 'chat-close'
  119. onClick = { this.props._onToggleChat }>X</div>
  120. </div>
  121. );
  122. }
  123. _renderPanelContent: (string) => React$Node | null;
  124. /**
  125. * Renders the contents of the chat panel, depending on the current
  126. * animation state provided by {@code Transition}.
  127. *
  128. * @param {string} state - The current display transition state of the
  129. * {@code Chat} component, as provided by {@code Transition}.
  130. * @private
  131. * @returns {ReactElement | null}
  132. */
  133. _renderPanelContent(state) {
  134. this._isExited = state === 'exited';
  135. const { _isOpen, _showNamePrompt } = this.props;
  136. const ComponentToRender = !_isOpen && state === 'exited'
  137. ? null
  138. : (
  139. <>
  140. { this._renderChatHeader() }
  141. { _showNamePrompt
  142. ? <DisplayNameForm /> : this._renderChat() }
  143. </>
  144. );
  145. let className = '';
  146. if (_isOpen) {
  147. className = 'slideInExt';
  148. } else if (this._isExited) {
  149. className = 'invisible';
  150. }
  151. return (
  152. <div
  153. className = { `sideToolbarContainer ${className}` }
  154. id = 'sideToolbarContainer'>
  155. { ComponentToRender }
  156. </div>
  157. );
  158. }
  159. /**
  160. * Scrolls the chat messages so the latest message is visible.
  161. *
  162. * @param {boolean} withAnimation - Whether or not to show a scrolling
  163. * animation.
  164. * @private
  165. * @returns {void}
  166. */
  167. _scrollMessageContainerToBottom(withAnimation) {
  168. if (this._messageContainerRef.current) {
  169. this._messageContainerRef.current.scrollToBottom(withAnimation);
  170. }
  171. }
  172. }
  173. export default translate(connect(_mapStateToProps, _mapDispatchToProps)(Chat));