import React from 'react'; import PropTypes from 'prop-types'; import { View, TextInput, StyleSheet, SafeAreaView } from 'react-native'; import Icon from 'react-native-vector-icons/MaterialIcons'; import ImagePicker from 'react-native-image-picker'; import RocketChat from '../lib/rocketchat'; const styles = StyleSheet.create({ textBox: { paddingTop: 1, borderTopWidth: 1, borderTopColor: '#ccc', backgroundColor: '#fff' }, safeAreaView: { flexDirection: 'row', alignItems: 'center' }, textBoxInput: { height: 40, alignSelf: 'stretch', backgroundColor: '#fff', flexGrow: 1 }, fileButton: { color: '#aaa', paddingLeft: 23, paddingRight: 20, paddingTop: 10, paddingBottom: 10, fontSize: 20 } }); export default class MessageBox extends React.PureComponent { static propTypes = { onSubmit: PropTypes.func.isRequired, rid: PropTypes.string.isRequired } submit(message) { const text = message; if (text.trim() === '') { return; } if (this.component) { this.component.setNativeProps({ text: '' }); } this.props.onSubmit(text); } addFile = () => { const options = { customButtons: [{ name: 'import', title: 'Import File From' }] }; ImagePicker.showImagePicker(options, (response) => { if (response.didCancel) { console.log('User cancelled image picker'); } else if (response.error) { console.log('ImagePicker Error: ', response.error); } else if (response.customButton) { console.log('User tapped custom button: ', response.customButton); } else { const fileInfo = { name: response.fileName, size: response.fileSize, type: response.type || 'image/jpeg', // description: '', store: 'Uploads' }; RocketChat.sendFileMessage(this.props.rid, fileInfo, response.data); } }); } render() { return ( this.component = component} style={styles.textBoxInput} returnKeyType='send' onSubmitEditing={event => this.submit(event.nativeEvent.text)} blurOnSubmit={false} placeholder='New message' underlineColorAndroid='transparent' defaultValue='' /> ); } }