123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- import React, { Component, RefObject } from 'react';
- import { WithTranslation } from 'react-i18next';
- import { connect } from 'react-redux';
-
- import { IReduxState, IStore } from '../../../app/types';
- import { isMobileBrowser } from '../../../base/environment/utils';
- import { translate } from '../../../base/i18n/functions';
- import { IconFaceSmile, IconSend } from '../../../base/icons/svg';
- import Button from '../../../base/ui/components/web/Button';
- import Input from '../../../base/ui/components/web/Input';
- import { areSmileysDisabled } from '../../functions';
-
- import SmileysPanel from './SmileysPanel';
-
- /**
- * The type of the React {@code Component} props of {@link ChatInput}.
- */
- interface IProps extends WithTranslation {
-
- /**
- * Whether chat emoticons are disabled.
- */
- _areSmileysDisabled: boolean;
-
- /**
- * Invoked to send chat messages.
- */
- dispatch: IStore['dispatch'];
-
- /**
- * Callback to invoke on message send.
- */
- onSend: Function;
- }
-
- /**
- * The type of the React {@code Component} state of {@link ChatInput}.
- */
- interface IState {
-
- /**
- * User provided nickname when the input text is provided in the view.
- */
- message: string;
-
- /**
- * Whether or not the smiley selector is visible.
- */
- showSmileysPanel: boolean;
- }
-
- /**
- * Implements a React Component for drafting and submitting a chat message.
- *
- * @augments Component
- */
- class ChatInput extends Component<IProps, IState> {
- _textArea?: RefObject<HTMLTextAreaElement>;
-
- state = {
- message: '',
- showSmileysPanel: false
- };
-
- /**
- * Initializes a new {@code ChatInput} instance.
- *
- * @param {Object} props - The read-only properties with which the new
- * instance is to be initialized.
- */
- constructor(props: IProps) {
- super(props);
-
- this._textArea = React.createRef<HTMLTextAreaElement>();
-
- // Bind event handlers so they are only bound once for every instance.
- this._onDetectSubmit = this._onDetectSubmit.bind(this);
- this._onMessageChange = this._onMessageChange.bind(this);
- this._onSmileySelect = this._onSmileySelect.bind(this);
- this._onSubmitMessage = this._onSubmitMessage.bind(this);
- this._toggleSmileysPanel = this._toggleSmileysPanel.bind(this);
- }
-
- /**
- * Implements React's {@link Component#componentDidMount()}.
- *
- * @inheritdoc
- */
- componentDidMount() {
- if (isMobileBrowser()) {
- // Ensure textarea is not focused when opening chat on mobile browser.
- this._textArea?.current && this._textArea.current.blur();
- } else {
- this._focus();
- }
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- * @returns {ReactElement}
- */
- render() {
- return (
- <div className = { `chat-input-container${this.state.message.trim().length ? ' populated' : ''}` }>
- <div id = 'chat-input' >
- {!this.props._areSmileysDisabled && this.state.showSmileysPanel && (
- <div
- className = 'smiley-input'>
- <div
- className = 'smileys-panel' >
- <SmileysPanel
- onSmileySelect = { this._onSmileySelect } />
- </div>
- </div>
- )}
- <Input
- className = 'chat-input'
- icon = { this.props._areSmileysDisabled ? undefined : IconFaceSmile }
- iconClick = { this._toggleSmileysPanel }
- maxRows = { 5 }
- onChange = { this._onMessageChange }
- onKeyPress = { this._onDetectSubmit }
- placeholder = { this.props.t('chat.messagebox') }
- ref = { this._textArea }
- textarea = { true }
- value = { this.state.message } />
- <Button
- accessibilityLabel = { this.props.t('chat.sendButton') }
- disabled = { !this.state.message.trim() }
- icon = { IconSend }
- onClick = { this._onSubmitMessage }
- size = { isMobileBrowser() ? 'large' : 'medium' } />
- </div>
- </div>
- );
- }
-
- /**
- * Place cursor focus on this component's text area.
- *
- * @private
- * @returns {void}
- */
- _focus() {
- this._textArea?.current && this._textArea.current.focus();
- }
-
- /**
- * Submits the message to the chat window.
- *
- * @returns {void}
- */
- _onSubmitMessage() {
- const trimmed = this.state.message.trim();
-
- if (trimmed) {
- this.props.onSend(trimmed);
-
- this.setState({ message: '' });
-
- // Keep the textarea in focus when sending messages via submit button.
- this._focus();
- }
-
- }
-
- /**
- * Detects if enter has been pressed. If so, submit the message in the chat
- * window.
- *
- * @param {string} event - Keyboard event.
- * @private
- * @returns {void}
- */
- _onDetectSubmit(event: any) {
- // Composition events used to add accents to characters
- // despite their absence from standard US keyboards,
- // to build up logograms of many Asian languages
- // from their base components or categories and so on.
- if (event.isComposing || event.keyCode === 229) {
- // keyCode 229 means that user pressed some button,
- // but input method is still processing that.
- // This is a standard behavior for some input methods
- // like entering japanese or сhinese hieroglyphs.
- return;
- }
-
- if (event.key === 'Enter'
- && event.shiftKey === false
- && event.ctrlKey === false) {
- event.preventDefault();
- event.stopPropagation();
-
- this._onSubmitMessage();
- }
- }
-
- /**
- * Updates the known message the user is drafting.
- *
- * @param {string} value - Keyboard event.
- * @private
- * @returns {void}
- */
- _onMessageChange(value: string) {
- this.setState({ message: value });
- }
-
- /**
- * Appends a selected smileys to the chat message draft.
- *
- * @param {string} smileyText - The value of the smiley to append to the
- * chat message.
- * @private
- * @returns {void}
- */
- _onSmileySelect(smileyText: string) {
- if (smileyText) {
- this.setState({
- message: `${this.state.message} ${smileyText}`,
- showSmileysPanel: false
- });
- } else {
- this.setState({
- showSmileysPanel: false
- });
- }
-
- this._focus();
- }
-
- /**
- * Callback invoked to hide or show the smileys selector.
- *
- * @private
- * @returns {void}
- */
- _toggleSmileysPanel() {
- if (this.state.showSmileysPanel) {
- this._focus();
- }
- this.setState({ showSmileysPanel: !this.state.showSmileysPanel });
- }
- }
-
- /**
- * Function that maps parts of Redux state tree into component props.
- *
- * @param {Object} state - Redux state.
- * @private
- * @returns {{
- * _areSmileysDisabled: boolean
- * }}
- */
- const mapStateToProps = (state: IReduxState) => {
- return {
- _areSmileysDisabled: areSmileysDisabled(state)
- };
- };
-
- export default translate(connect(mapStateToProps)(ChatInput));
|