- { t('chat.title') }
@@ -44,4 +37,4 @@ function Header({ onCancel, className, t }: Props) {
const mapDispatchToProps = { onCancel: toggleChat };
-export default translate(connect(null, mapDispatchToProps)(Header));
+export default connect(null, mapDispatchToProps)(Header);
diff --git a/react/features/chat/components/web/ChatInput.js b/react/features/chat/components/web/ChatInput.js
index 3252882d7..b16d9d553 100644
--- a/react/features/chat/components/web/ChatInput.js
+++ b/react/features/chat/components/web/ChatInput.js
@@ -1,12 +1,12 @@
// @flow
import React, { Component } from 'react';
-import Emoji from 'react-emoji-render';
import TextareaAutosize from 'react-textarea-autosize';
import type { Dispatch } from 'redux';
+import { isMobileBrowser } from '../../../base/environment/utils';
import { translate } from '../../../base/i18n';
-import { Icon, IconPlane } from '../../../base/icons';
+import { Icon, IconPlane, IconSmile } from '../../../base/icons';
import { connect } from '../../../base/redux';
import SmileysPanel from './SmileysPanel';
@@ -93,11 +93,10 @@ class ChatInput extends Component
{
* @inheritdoc
*/
componentDidMount() {
- /**
- * HTML Textareas do not support autofocus. Simulate autofocus by
- * manually focusing.
- */
- this._focus();
+ if (isMobileBrowser()) {
+ // Ensure textarea is not focused when opening chat on mobile browser.
+ this._textArea && this._textArea.blur();
+ }
}
/**
@@ -116,9 +115,11 @@ class ChatInput extends Component {
@@ -174,6 +175,9 @@ class ChatInput extends Component
{
this.props.onSend(trimmed);
this.setState({ message: '' });
+
+ // Keep the textarea in focus when sending messages via submit button.
+ this._focus();
}
}
diff --git a/react/features/chat/constants.js b/react/features/chat/constants.js
index 321f90182..775648888 100644
--- a/react/features/chat/constants.js
+++ b/react/features/chat/constants.js
@@ -5,7 +5,7 @@ export const CHAT_VIEW_MODAL_ID = 'chatView';
/**
* The size of the chat.
*/
-export const CHAT_SIZE = 375;
+export const CHAT_SIZE = 315;
/**
* The audio ID of the audio element for which the {@link playAudio} action is
diff --git a/react/features/chat/middleware.js b/react/features/chat/middleware.js
index f1929f01f..553da4446 100644
--- a/react/features/chat/middleware.js
+++ b/react/features/chat/middleware.js
@@ -81,14 +81,16 @@ MiddlewareRegistry.register(store => next => action => {
break;
case OPEN_CHAT:
- if (localParticipant.name) {
- dispatch(setActiveModalId(CHAT_VIEW_MODAL_ID));
- _maybeFocusField();
- } else {
- dispatch(openDisplayNamePrompt(() => {
+ if (navigator.product === 'ReactNative') {
+ if (localParticipant.name) {
dispatch(setActiveModalId(CHAT_VIEW_MODAL_ID));
- _maybeFocusField();
- }));
+ } else {
+ dispatch(openDisplayNamePrompt(() => {
+ dispatch(setActiveModalId(CHAT_VIEW_MODAL_ID));
+ }));
+ }
+ } else {
+ dispatch(setActiveModalId(CHAT_VIEW_MODAL_ID));
}
unreadCount = 0;
@@ -291,19 +293,6 @@ function _handleReceivedMessage({ dispatch, getState }, { id, message, privateMe
}
}
-/**
- * Focuses the chat text field on web after the message recipient was updated, if needed.
- *
- * @returns {void}
- */
-function _maybeFocusField() {
- if (navigator.product !== 'ReactNative') {
- const textField = document.getElementById('usermsg');
-
- textField && textField.focus();
- }
-}
-
/**
* Persists the sent private messages as if they were received over the muc.
*