import React, { Component } from 'react'; import PropTypes from 'prop-types'; import { View, TextInput, FlatList, Text, TouchableOpacity, Alert, Image } from 'react-native'; import Icon from 'react-native-vector-icons/MaterialIcons'; import { connect } from 'react-redux'; import { emojify } from 'react-emojione'; import { KeyboardAccessoryView } from 'react-native-keyboard-input'; import ImagePicker from 'react-native-image-crop-picker'; import { BorderlessButton } from 'react-native-gesture-handler'; import equal from 'deep-equal'; import { userTyping as userTypingAction } from '../../actions/room'; import { editRequest as editRequestAction, editCancel as editCancelAction, replyCancel as replyCancelAction } from '../../actions/messages'; import RocketChat from '../../lib/rocketchat'; import styles from './styles'; import database from '../../lib/realm'; import Avatar from '../Avatar'; import CustomEmoji from '../EmojiPicker/CustomEmoji'; import { emojis } from '../../emojis'; import Recording from './Recording'; import FilesActions from './FilesActions'; import UploadModal from './UploadModal'; import './EmojiKeyboard'; import log from '../../utils/log'; import I18n from '../../i18n'; import ReplyPreview from './ReplyPreview'; const MENTIONS_TRACKING_TYPE_USERS = '@'; const MENTIONS_TRACKING_TYPE_EMOJIS = ':'; const onlyUnique = function onlyUnique(value, index, self) { return self.indexOf(({ _id }) => value._id === _id) === index; }; const imagePickerConfig = { cropping: true, compressImageQuality: 0.8, avoidEmptySpaceAroundImage: false, cropperChooseText: I18n.t('Choose'), cropperCancelText: I18n.t('Cancel') }; @connect(state => ({ roomType: state.room.t, message: state.messages.message, replyMessage: state.messages.replyMessage, replying: state.messages.replyMessage && !!state.messages.replyMessage.msg, editing: state.messages.editing, baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', user: { id: state.login.user && state.login.user.id, username: state.login.user && state.login.user.username, token: state.login.user && state.login.user.token } }), dispatch => ({ editCancel: () => dispatch(editCancelAction()), editRequest: message => dispatch(editRequestAction(message)), typing: status => dispatch(userTypingAction(status)), closeReply: () => dispatch(replyCancelAction()) })) export default class MessageBox extends Component { static propTypes = { rid: PropTypes.string.isRequired, baseUrl: PropTypes.string.isRequired, message: PropTypes.object, replyMessage: PropTypes.object, replying: PropTypes.bool, editing: PropTypes.bool, user: PropTypes.shape({ id: PropTypes.string, username: PropTypes.string, token: PropTypes.string }), roomType: PropTypes.string, editCancel: PropTypes.func.isRequired, editRequest: PropTypes.func.isRequired, onSubmit: PropTypes.func.isRequired, typing: PropTypes.func, closeReply: PropTypes.func } constructor(props) { super(props); this.state = { mentions: [], showEmojiKeyboard: false, showFilesAction: false, showSend: false, recording: false, file: { isVisible: false } }; this.users = []; this.rooms = []; this.emojis = []; this.customEmojis = []; this.onEmojiSelected = this.onEmojiSelected.bind(this); this.text = ''; } componentWillReceiveProps(nextProps) { const { message, replyMessage } = this.props; if (message !== nextProps.message && nextProps.message.msg) { this.setInput(nextProps.message.msg); this.component.focus(); } else if (replyMessage !== nextProps.replyMessage && nextProps.replyMessage.msg) { this.component.focus(); } else if (!nextProps.message) { this.clearInput(); } } shouldComponentUpdate(nextProps, nextState) { const { showEmojiKeyboard, showFilesAction, showSend, recording, mentions, file } = this.state; const { roomType, replying, editing } = this.props; if (nextProps.roomType !== roomType) { return true; } if (nextProps.replying !== replying) { return true; } if (nextProps.editing !== editing) { return true; } if (nextState.showEmojiKeyboard !== showEmojiKeyboard) { return true; } if (nextState.showFilesAction !== showFilesAction) { return true; } if (nextState.showSend !== showSend) { return true; } if (nextState.recording !== recording) { return true; } if (!equal(nextState.mentions, mentions)) { return true; } if (!equal(nextState.file, file)) { return true; } return false; } onChangeText(text) { this.setInput(text); this.handleTyping(text.length > 0); requestAnimationFrame(() => { const { start, end } = this.component._lastNativeSelection; const cursor = Math.max(start, end); const lastNativeText = this.component._lastNativeText; const regexp = /(#|@|:)([a-z0-9._-]+)$/im; const result = lastNativeText.substr(0, cursor).match(regexp); if (!result) { return this.stopTrackingMention(); } const [, lastChar, name] = result; this.identifyMentionKeyword(name, lastChar); }); } onKeyboardResigned() { this.closeEmoji(); } onPressMention(item) { const { trackingType } = this.state; const msg = this.text; const { start, end } = this.component._lastNativeSelection; const cursor = Math.max(start, end); const regexp = /([a-z0-9._-]+)$/im; const result = msg.substr(0, cursor).replace(regexp, ''); const mentionName = trackingType === MENTIONS_TRACKING_TYPE_EMOJIS ? `${ item.name || item }:` : (item.username || item.name); const text = `${ result }${ mentionName } ${ msg.slice(cursor) }`; this.setInput(text); this.component.focus(); requestAnimationFrame(() => this.stopTrackingMention()); } onEmojiSelected(keyboardId, params) { const { text } = this; const { emoji } = params; let newText = ''; // if messagebox has an active cursor if (this.component._lastNativeSelection) { const { start, end } = this.component._lastNativeSelection; const cursor = Math.max(start, end); newText = `${ text.substr(0, cursor) }${ emoji }${ text.substr(cursor) }`; } else { // if messagebox doesn't have a cursor, just append selected emoji newText = `${ text }${ emoji }`; } this.setInput(newText); } get leftButtons() { const { showEmojiKeyboard } = this.state; const { editing } = this.props; if (editing) { return ( ); } return !showEmojiKeyboard ? ( ) : ( ); } get rightButtons() { const { showSend } = this.state; const icons = []; if (showSend) { icons.push( this.submit()} style={styles.actionButton} testID='messagebox-send-message' accessibilityLabel={I18n.t('Send message')} accessibilityTraits='button' > ); return icons; } icons.push( ); icons.push( ); return icons; } getPermalink = async(message) => { try { return await RocketChat.getPermalink(message); } catch (error) { return null; } } getFixedMentions(keyword) { if ('all'.indexOf(keyword) !== -1) { this.users = [{ _id: -1, username: 'all' }, ...this.users]; } if ('here'.indexOf(keyword) !== -1) { this.users = [{ _id: -2, username: 'here' }, ...this.users]; } } async getUsers(keyword) { this.users = database.objects('users'); if (keyword) { this.users = this.users.filtered('username CONTAINS[c] $0', keyword); } this.getFixedMentions(keyword); this.setState({ mentions: this.users.slice() }); const usernames = []; if (keyword && this.users.length > 7) { return; } this.users.forEach(user => usernames.push(user.username)); if (this.oldPromise) { this.oldPromise(); } try { const results = await Promise.race([ RocketChat.spotlight(keyword, usernames, { users: true }), new Promise((resolve, reject) => (this.oldPromise = reject)) ]); if (results.users && results.users.length) { database.write(() => { results.users.forEach((user) => { database.create('users', user, true); }); }); } } catch (e) { console.warn('spotlight canceled'); } finally { delete this.oldPromise; this.users = database.objects('users').filtered('username CONTAINS[c] $0', keyword).slice(); this.getFixedMentions(keyword); this.setState({ mentions: this.users }); } } async getRooms(keyword = '') { this.roomsCache = this.roomsCache || []; this.rooms = database.objects('subscriptions') .filtered('t != $0', 'd'); if (keyword) { this.rooms = this.rooms.filtered('name CONTAINS[c] $0', keyword); } const rooms = []; this.rooms.forEach(room => rooms.push(room)); this.roomsCache.forEach((room) => { if (room.name && room.name.toUpperCase().indexOf(keyword.toUpperCase()) !== -1) { rooms.push(room); } }); if (rooms.length > 3) { this.setState({ mentions: rooms }); return; } if (this.oldPromise) { this.oldPromise(); } try { const results = await Promise.race([ RocketChat.spotlight(keyword, [...rooms, ...this.roomsCache].map(r => r.name), { rooms: true }), new Promise((resolve, reject) => (this.oldPromise = reject)) ]); if (results.rooms && results.rooms.length) { this.roomsCache = [...this.roomsCache, ...results.rooms].filter(onlyUnique); } this.setState({ mentions: [...rooms.slice(), ...results.rooms] }); } catch (e) { console.warn('spotlight canceled'); } finally { delete this.oldPromise; } } getEmojis(keyword) { if (keyword) { this.customEmojis = database.objects('customEmojis').filtered('name CONTAINS[c] $0', keyword).slice(0, 4); this.emojis = emojis.filter(emoji => emoji.indexOf(keyword) !== -1).slice(0, 4); const mergedEmojis = [...this.customEmojis, ...this.emojis]; this.setState({ mentions: mergedEmojis }); } } handleTyping = (isTyping) => { const { typing } = this.props; if (!isTyping) { if (this.typingTimeout) { clearTimeout(this.typingTimeout); this.typingTimeout = false; } typing(false); return; } if (this.typingTimeout) { return; } this.typingTimeout = setTimeout(() => { typing(true); this.typingTimeout = false; }, 1000); } setInput = (text) => { this.text = text; this.component.setNativeProps({ text }); this.setState({ showSend: text.length > 0 }); } clearInput = () => { this.setInput(''); } toggleFilesActions = () => { this.setState(prevState => ({ showFilesAction: !prevState.showFilesAction })); } sendImageMessage = async(file) => { const { rid } = this.props; this.setState({ file: { isVisible: false } }); const fileInfo = { name: file.name, description: file.description, size: file.size, type: file.mime, store: 'Uploads', path: file.path }; try { await RocketChat.sendFileMessage(rid, fileInfo); } catch (e) { log('sendImageMessage', e); } } takePhoto = async() => { try { const image = await ImagePicker.openCamera(imagePickerConfig); this.showUploadModal(image); } catch (e) { log('takePhoto', e); } } chooseFromLibrary = async() => { try { const image = await ImagePicker.openPicker(imagePickerConfig); this.showUploadModal(image); } catch (e) { log('chooseFromLibrary', e); } } showUploadModal = (file) => { this.setState({ file: { ...file, isVisible: true } }); } editCancel = () => { const { editCancel } = this.props; editCancel(); this.clearInput(); } openEmoji = async() => { await this.setState({ showEmojiKeyboard: true }); } recordAudioMessage = async() => { const recording = await Recording.permission(); this.setState({ recording }); } finishAudioMessage = async(fileInfo) => { const { rid } = this.props; this.setState({ recording: false }); if (fileInfo) { try { await RocketChat.sendFileMessage(rid, fileInfo); } catch (e) { if (e && e.error === 'error-file-too-large') { return Alert.alert(I18n.t(e.error)); } log('finishAudioMessage', e); } } } closeEmoji = () => { this.setState({ showEmojiKeyboard: false }); } submit = async() => { const { message: editingMessage, editRequest, onSubmit } = this.props; const message = this.text; this.clearInput(); this.closeEmoji(); this.stopTrackingMention(); this.handleTyping(false); if (message.trim() === '') { return; } // if is editing a message const { editing, replying } = this.props; if (editing) { const { _id, rid } = editingMessage; editRequest({ _id, msg: message, rid }); } else if (replying) { const { user, replyMessage, roomType, closeReply } = this.props; const permalink = await this.getPermalink(replyMessage); let msg = `[ ](${ permalink }) `; // if original message wasn't sent by current user and neither from a direct room if (user.username !== replyMessage.u.username && roomType !== 'd' && replyMessage.mention) { msg += `@${ replyMessage.u.username } `; } msg = `${ msg } ${ message }`; onSubmit(msg); closeReply(); } else { // if is submiting a new message onSubmit(message); } } updateMentions = (keyword, type) => { if (type === MENTIONS_TRACKING_TYPE_USERS) { this.getUsers(keyword); } else if (type === MENTIONS_TRACKING_TYPE_EMOJIS) { this.getEmojis(keyword); } else { this.getRooms(keyword); } } identifyMentionKeyword(keyword, type) { this.setState({ showEmojiKeyboard: false, trackingType: type }); this.updateMentions(keyword, type); } stopTrackingMention() { const { trackingType } = this.state; if (!trackingType) { return; } this.setState({ mentions: [], trackingType: '' }); this.users = []; this.rooms = []; this.customEmojis = []; this.emojis = []; } renderFixedMentionItem = item => ( this.onPressMention(item)} > {item.username} {item.username === 'here' ? I18n.t('Notify_active_in_this_room') : I18n.t('Notify_all_in_this_room')} ) renderMentionEmoji = (item) => { const { baseUrl } = this.props; if (item.name) { return ( ); } return ( {emojify(`:${ item }:`, { output: 'unicode' })} ); } renderMentionItem = (item) => { const { trackingType } = this.state; const { baseUrl, user } = this.props; if (item.username === 'all' || item.username === 'here') { return this.renderFixedMentionItem(item); } return ( this.onPressMention(item)} testID={`mention-item-${ trackingType === MENTIONS_TRACKING_TYPE_EMOJIS ? item.name || item : item.username || item.name }`} > {trackingType === MENTIONS_TRACKING_TYPE_EMOJIS ? [ this.renderMentionEmoji(item), :{ item.name || item }: ] : [ , { item.username || item.name } ] } ); } renderMentions = () => { const { mentions, trackingType } = this.state; if (!trackingType) { return null; } return ( this.renderMentionItem(item)} keyExtractor={item => item._id || item.username || item} keyboardShouldPersistTaps='always' /> ); }; renderReplyPreview = () => { const { replyMessage, replying, closeReply, user } = this.props; if (!replying) { return null; } return ; }; renderFilesActions = () => { const { showFilesAction } = this.state; if (!showFilesAction) { return null; } return ( ); } renderContent() { const { recording } = this.state; const { editing } = this.props; if (recording) { return (); } return ( [ this.renderMentions(), {this.renderReplyPreview()} {this.leftButtons} this.component = component} style={styles.textBoxInput} returnKeyType='default' keyboardType='twitter' blurOnSubmit={false} placeholder={I18n.t('New_Message')} onChangeText={t => this.onChangeText(t)} underlineColorAndroid='transparent' defaultValue='' multiline placeholderTextColor='#9ea2a8' testID='messagebox-input' /> {this.rightButtons} ] ); } render() { const { showEmojiKeyboard, file } = this.state; return ( [ this.renderContent()} kbInputRef={this.component} kbComponent={showEmojiKeyboard ? 'EmojiKeyboard' : null} onKeyboardResigned={() => this.onKeyboardResigned()} onItemSelected={this.onEmojiSelected} trackInteractive // revealKeyboardInteractive requiresSameParentToManageScrollView addBottomView />, this.renderFilesActions(), this.setState({ file: {} })} submit={this.sendImageMessage} /> ] ); } }