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.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. // @flow
  2. import React from 'react';
  3. import { translate } from '../../../base/i18n';
  4. import { Icon, IconClose } from '../../../base/icons';
  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. import MessageRecipient from './MessageRecipient';
  15. /**
  16. * React Component for holding the chat feature in a side panel that slides in
  17. * and out of view.
  18. */
  19. class Chat extends AbstractChat<Props> {
  20. /**
  21. * Whether or not the {@code Chat} component is off-screen, having finished
  22. * its hiding animation.
  23. */
  24. _isExited: boolean;
  25. /**
  26. * Reference to the React Component for displaying chat messages. Used for
  27. * scrolling to the end of the chat messages.
  28. */
  29. _messageContainerRef: Object;
  30. /**
  31. * Initializes a new {@code Chat} instance.
  32. *
  33. * @param {Object} props - The read-only properties with which the new
  34. * instance is to be initialized.
  35. */
  36. constructor(props: Props) {
  37. super(props);
  38. this._isExited = true;
  39. this._messageContainerRef = React.createRef();
  40. // Bind event handlers so they are only bound once for every instance.
  41. this._renderPanelContent = this._renderPanelContent.bind(this);
  42. // Bind event handlers so they are only bound once for every instance.
  43. this._onChatInputResize = this._onChatInputResize.bind(this);
  44. }
  45. /**
  46. * Implements {@code Component#componentDidMount}.
  47. *
  48. * @inheritdoc
  49. */
  50. componentDidMount() {
  51. this._scrollMessageContainerToBottom(true);
  52. }
  53. /**
  54. * Implements {@code Component#componentDidUpdate}.
  55. *
  56. * @inheritdoc
  57. */
  58. componentDidUpdate(prevProps) {
  59. if (this.props._messages !== prevProps._messages) {
  60. this._scrollMessageContainerToBottom(true);
  61. } else if (this.props._isOpen && !prevProps._isOpen) {
  62. this._scrollMessageContainerToBottom(false);
  63. }
  64. }
  65. /**
  66. * Implements React's {@link Component#render()}.
  67. *
  68. * @inheritdoc
  69. * @returns {ReactElement}
  70. */
  71. render() {
  72. return (
  73. <>
  74. { this._renderPanelContent() }
  75. </>
  76. );
  77. }
  78. _onChatInputResize: () => void;
  79. /**
  80. * Callback invoked when {@code ChatInput} changes height. Preserves
  81. * displaying the latest message if it is scrolled to.
  82. *
  83. * @private
  84. * @returns {void}
  85. */
  86. _onChatInputResize() {
  87. this._messageContainerRef.current.maybeUpdateBottomScroll();
  88. }
  89. /**
  90. * Returns a React Element for showing chat messages and a form to send new
  91. * chat messages.
  92. *
  93. * @private
  94. * @returns {ReactElement}
  95. */
  96. _renderChat() {
  97. return (
  98. <>
  99. <MessageContainer
  100. messages = { this.props._messages }
  101. ref = { this._messageContainerRef } />
  102. <MessageRecipient />
  103. <ChatInput
  104. onResize = { this._onChatInputResize }
  105. onSend = { this.props._onSendMessage } />
  106. </>
  107. );
  108. }
  109. /**
  110. * Instantiates a React Element to display at the top of {@code Chat} to
  111. * close {@code Chat}.
  112. *
  113. * @private
  114. * @returns {ReactElement}
  115. */
  116. _renderChatHeader() {
  117. return (
  118. <div className = 'chat-header'>
  119. <div
  120. className = 'chat-close'
  121. onClick = { this.props._onToggleChat }>
  122. <Icon src = { IconClose } />
  123. </div>
  124. </div>
  125. );
  126. }
  127. _renderPanelContent: () => React$Node | null;
  128. /**
  129. * Renders the contents of the chat panel.
  130. *
  131. * @private
  132. * @returns {ReactElement | null}
  133. */
  134. _renderPanelContent() {
  135. const { _isOpen, _showNamePrompt } = this.props;
  136. const ComponentToRender = _isOpen
  137. ? (
  138. <>
  139. { this._renderChatHeader() }
  140. { _showNamePrompt
  141. ? <DisplayNameForm /> : this._renderChat() }
  142. </>
  143. )
  144. : null;
  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));