import React from 'react'; import PropTypes from 'prop-types'; import { View, TouchableHighlight, Text, TouchableOpacity, Vibration, ViewPropTypes } from 'react-native'; import { connect } from 'react-redux'; import Icon from 'react-native-vector-icons/MaterialIcons'; import moment from 'moment'; import equal from 'deep-equal'; import { KeyboardUtils } from 'react-native-keyboard-input'; import { actionsShow, errorActionsShow, toggleReactionPicker } from '../../actions/messages'; import Image from './Image'; import User from './User'; import Avatar from '../Avatar'; import Audio from './Audio'; import Video from './Video'; import Markdown from './Markdown'; import Url from './Url'; import Reply from './Reply'; import ReactionsModal from './ReactionsModal'; import Emoji from './Emoji'; import messageStatus from '../../constants/messagesStatus'; import styles from './styles'; @connect(state => ({ message: state.messages.message, editing: state.messages.editing, customEmojis: state.customEmojis }), dispatch => ({ actionsShow: actionMessage => dispatch(actionsShow(actionMessage)), errorActionsShow: actionMessage => dispatch(errorActionsShow(actionMessage)), toggleReactionPicker: message => dispatch(toggleReactionPicker(message)) })) export default class Message extends React.Component { static propTypes = { status: PropTypes.any, item: PropTypes.object.isRequired, reactions: PropTypes.any.isRequired, baseUrl: PropTypes.string.isRequired, Message_TimeFormat: PropTypes.string.isRequired, message: PropTypes.object.isRequired, user: PropTypes.object.isRequired, editing: PropTypes.bool, errorActionsShow: PropTypes.func, customEmojis: PropTypes.object, toggleReactionPicker: PropTypes.func, onReactionPress: PropTypes.func, style: ViewPropTypes.style, onLongPress: PropTypes.func, _updatedAt: PropTypes.instanceOf(Date) } static defaultProps = { onLongPress: () => {}, _updatedAt: new Date() } constructor(props) { super(props); this.state = { reactionsModal: false }; this.onClose = this.onClose.bind(this); } shouldComponentUpdate(nextProps, nextState) { if (!equal(this.props.reactions, nextProps.reactions)) { return true; } if (this.state.reactionsModal !== nextState.reactionsModal) { return true; } return this.props._updatedAt.toGMTString() !== nextProps._updatedAt.toGMTString() || this.props.status !== nextProps.status; } onPress = () => { KeyboardUtils.dismiss(); } onLongPress() { this.props.onLongPress(this.parseMessage()); } onErrorPress() { this.props.errorActionsShow(this.parseMessage()); } onReactionPress(emoji) { this.props.onReactionPress(emoji, this.props.item._id); } onClose() { this.setState({ reactionsModal: false }); } onReactionLongPress() { this.setState({ reactionsModal: true }); Vibration.vibrate(50); } getInfoMessage() { let message = ''; const { t, role, msg, u } = this.props.item; if (t === 'rm') { message = 'Message removed'; } else if (t === 'uj') { message = 'Has joined the channel.'; } else if (t === 'r') { message = `Room name changed to: ${ msg } by ${ u.username }`; } else if (t === 'message_pinned') { message = 'Message pinned'; } else if (t === 'ul') { message = 'Has left the channel.'; } else if (t === 'ru') { message = `User ${ msg } removed by ${ u.username }`; } else if (t === 'au') { message = `User ${ msg } added by ${ u.username }`; } else if (t === 'user-muted') { message = `User ${ msg } muted by ${ u.username }`; } else if (t === 'user-unmuted') { message = `User ${ msg } unmuted by ${ u.username }`; } else if (t === 'subscription-role-added') { message = `${ msg } was set ${ role } by ${ u.username }`; } else if (t === 'subscription-role-removed') { message = `${ msg } is no longer ${ role } by ${ u.username }`; } return message; } parseMessage = () => JSON.parse(JSON.stringify(this.props.item)); isInfoMessage() { return [ 'r', 'au', 'ru', 'ul', 'uj', 'rm', 'user-muted', 'user-unmuted', 'message_pinned', 'subscription-role-added', 'subscription-role-removed' ].includes(this.props.item.t); } isDeleted() { return this.props.item.t === 'rm'; } isTemp() { return this.props.item.status === messageStatus.TEMP || this.props.item.status === messageStatus.ERROR; } hasError() { return this.props.item.status === messageStatus.ERROR; } attachments() { if (this.props.item.attachments.length === 0) { return null; } const file = this.props.item.attachments[0]; const { baseUrl, user } = this.props; if (file.image_type) { return ; } else if (file.audio_type) { return