| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | 
							- // @flow
 - 
 - import React from 'react';
 - import { KeyboardAvoidingView, SafeAreaView } from 'react-native';
 - 
 - import { translate } from '../../../base/i18n';
 - 
 - import { HeaderWithNavigation, SlidingView } from '../../../base/react';
 - import { connect } from '../../../base/redux';
 - 
 - import AbstractChat, {
 -     _mapDispatchToProps,
 -     _mapStateToProps,
 -     type Props
 - } from '../AbstractChat';
 - 
 - import ChatInputBar from './ChatInputBar';
 - import MessageContainer from './MessageContainer';
 - import styles from './styles';
 - 
 - /**
 -  * Implements a React native component that renders the chat window (modal) of
 -  * the mobile client.
 -  */
 - class Chat extends AbstractChat<Props> {
 -     /**
 -      * Implements React's {@link Component#render()}.
 -      *
 -      * @inheritdoc
 -      */
 -     render() {
 -         return (
 -             <SlidingView
 -                 position = 'bottom'
 -                 show = { this.props._isOpen } >
 -                 <KeyboardAvoidingView
 -                     behavior = 'padding'
 -                     style = { styles.chatContainer }>
 -                     <HeaderWithNavigation
 -                         headerLabelKey = 'chat.title'
 -                         onPressBack = { this.props._onToggleChat } />
 -                     <SafeAreaView style = { styles.backdrop }>
 -                         <MessageContainer messages = { this.props._messages } />
 -                         <ChatInputBar onSend = { this.props._onSendMessage } />
 -                     </SafeAreaView>
 -                 </KeyboardAvoidingView>
 -             </SlidingView>
 -         );
 -     }
 - }
 - 
 - export default translate(connect(_mapStateToProps, _mapDispatchToProps)(Chat));
 
 
  |