123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- /* eslint-disable react/no-multi-comp */
- import { Route, useIsFocused } from '@react-navigation/native';
- import React, { Component, useEffect } from 'react';
- import { connect } from 'react-redux';
-
- import { IReduxState } from '../../../app/types';
- import { translate } from '../../../base/i18n/functions';
- import JitsiScreen from '../../../base/modal/components/JitsiScreen';
- import { TabBarLabelCounter } from '../../../mobile/navigation/components/TabBarLabelCounter';
- import { closeChat, sendMessage } from '../../actions.native';
- import { IChatProps as AbstractProps } from '../../types';
-
- import ChatInputBar from './ChatInputBar';
- import MessageContainer from './MessageContainer';
- import MessageRecipient from './MessageRecipient';
- import styles from './styles';
-
- interface IProps extends AbstractProps {
-
- /**
- * Default prop for navigating between screen components(React Navigation).
- */
- navigation: any;
-
- /**
- * Default prop for navigating between screen components(React Navigation).
- */
- route: Route<'', { privateMessageRecipient: { name: string; }; }>;
- }
-
- /**
- * Implements a React native component that renders the chat window (modal) of
- * the mobile client.
- */
- class Chat extends Component<IProps> {
-
- /**
- * Initializes a new {@code AbstractChat} instance.
- *
- * @param {Props} props - The React {@code Component} props to initialize
- * the new {@code AbstractChat} instance with.
- */
- constructor(props: IProps) {
- super(props);
-
- // Bind event handlers so they are only bound once per instance.
- this._onSendMessage = this._onSendMessage.bind(this);
- }
-
- /**
- * Implements React's {@link Component#render()}.
- *
- * @inheritdoc
- */
- render() {
- const { _messages, route } = this.props;
- const privateMessageRecipient = route?.params?.privateMessageRecipient;
-
- return (
- <JitsiScreen
- disableForcedKeyboardDismiss = { true }
-
- /* eslint-disable react/jsx-no-bind */
- footerComponent = { () =>
- <ChatInputBar onSend = { this._onSendMessage } />
- }
- hasBottomTextInput = { true }
- hasExtraHeaderHeight = { true }
- style = { styles.chatContainer }>
- {/* @ts-ignore */}
- <MessageContainer messages = { _messages } />
- <MessageRecipient privateMessageRecipient = { privateMessageRecipient } />
- </JitsiScreen>
- );
- }
-
- /**
- * Sends a text message.
- *
- * @private
- * @param {string} text - The text message to be sent.
- * @returns {void}
- * @type {Function}
- */
- _onSendMessage(text: string) {
- this.props.dispatch(sendMessage(text));
- }
- }
-
- /**
- * Maps (parts of) the redux state to {@link Chat} React {@code Component}
- * props.
- *
- * @param {Object} state - The redux store/state.
- * @param {any} _ownProps - Components' own props.
- * @private
- * @returns {{
- * _messages: Array<Object>,
- * _nbUnreadMessages: number
- * }}
- */
- function _mapStateToProps(state: IReduxState, _ownProps: any) {
- const { messages, nbUnreadMessages } = state['features/chat'];
-
- return {
- _messages: messages,
- _nbUnreadMessages: nbUnreadMessages
- };
- }
-
- export default translate(connect(_mapStateToProps)((props: IProps) => {
- const { _nbUnreadMessages, dispatch, navigation, t } = props;
- const unreadMessagesNr = _nbUnreadMessages > 0;
-
- const isFocused = useIsFocused();
-
- useEffect(() => {
- navigation?.setOptions({
- tabBarLabel: () => (
- <TabBarLabelCounter
- activeUnreadNr = { unreadMessagesNr }
- isFocused = { isFocused }
- label = { t('chat.tabs.chat') }
- nbUnread = { _nbUnreadMessages } />
- )
- });
-
- return () => {
- isFocused && dispatch(closeChat());
- };
- }, [ isFocused, _nbUnreadMessages ]);
-
- return (
- <Chat { ...props } />
- );
- }));
|