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 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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. }
  42. /**
  43. * Implements {@code Component#componentDidMount}.
  44. *
  45. * @inheritdoc
  46. */
  47. componentDidMount() {
  48. this._scrollMessageContainerToBottom(true);
  49. }
  50. /**
  51. * Implements {@code Component#componentDidUpdate}.
  52. *
  53. * @inheritdoc
  54. */
  55. componentDidUpdate(prevProps) {
  56. if (this.props._messages !== prevProps._messages) {
  57. this._scrollMessageContainerToBottom(true);
  58. } else if (this.props._isOpen && !prevProps._isOpen) {
  59. this._scrollMessageContainerToBottom(false);
  60. }
  61. }
  62. /**
  63. * Implements React's {@link Component#render()}.
  64. *
  65. * @inheritdoc
  66. * @returns {ReactElement}
  67. */
  68. render() {
  69. return (
  70. <Transition
  71. in = { this.props._isOpen }
  72. timeout = { 500 }>
  73. { this._renderPanelContent }
  74. </Transition>
  75. );
  76. }
  77. /**
  78. * Returns a React Element for showing chat messages and a form to send new
  79. * chat messages.
  80. *
  81. * @private
  82. * @returns {ReactElement}
  83. */
  84. _renderChat() {
  85. return (
  86. <>
  87. <MessageContainer
  88. messages = { this.props._messages }
  89. ref = { this._messageContainerRef } />
  90. <ChatInput />
  91. </>
  92. );
  93. }
  94. /**
  95. * Instantiates a React Element to display at the top of {@code Chat} to
  96. * close {@code Chat}.
  97. *
  98. * @private
  99. * @returns {ReactElement}
  100. */
  101. _renderChatHeader() {
  102. return (
  103. <div className = 'chat-header'>
  104. <div
  105. className = 'chat-close'
  106. onClick = { this.props._onToggleChat }>X</div>
  107. </div>
  108. );
  109. }
  110. _renderPanelContent: (string) => React$Node | null;
  111. /**
  112. * Renders the contents of the chat panel, depending on the current
  113. * animation state provided by {@code Transition}.
  114. *
  115. * @param {string} state - The current display transition state of the
  116. * {@code Chat} component, as provided by {@code Transition}.
  117. * @private
  118. * @returns {ReactElement | null}
  119. */
  120. _renderPanelContent(state) {
  121. this._isExited = state === 'exited';
  122. const { _isOpen, _showNamePrompt } = this.props;
  123. const ComponentToRender = !_isOpen && state === 'exited'
  124. ? null
  125. : (
  126. <>
  127. { this._renderChatHeader() }
  128. { _showNamePrompt
  129. ? <DisplayNameForm /> : this._renderChat() }
  130. </>
  131. );
  132. let className = '';
  133. if (_isOpen) {
  134. className = 'slideInExt';
  135. } else if (this._isExited) {
  136. className = 'invisible';
  137. }
  138. return (
  139. <div
  140. className = { `sideToolbarContainer ${className}` }
  141. id = 'sideToolbarContainer'>
  142. { ComponentToRender }
  143. </div>
  144. );
  145. }
  146. /**
  147. * Scrolls the chat messages so the latest message is visible.
  148. *
  149. * @param {boolean} withAnimation - Whether or not to show a scrolling
  150. * animation.
  151. * @private
  152. * @returns {void}
  153. */
  154. _scrollMessageContainerToBottom(withAnimation) {
  155. if (this._messageContainerRef.current) {
  156. this._messageContainerRef.current.scrollToBottom(withAnimation);
  157. }
  158. }
  159. }
  160. export default translate(connect(_mapStateToProps, _mapDispatchToProps)(Chat));