Rocket.Chat.ReactNative/app/views/RoomView/index.js

682 lines
20 KiB
JavaScript
Raw Normal View History

2017-08-04 00:34:37 +00:00
import React from 'react';
2017-08-05 18:16:32 +00:00
import PropTypes from 'prop-types';
import {
2019-04-08 12:35:28 +00:00
Text, View, LayoutAnimation, InteractionManager
} from 'react-native';
import { connect } from 'react-redux';
import { RectButton } from 'react-native-gesture-handler';
import { SafeAreaView, HeaderBackButton } from 'react-navigation';
2019-02-07 15:48:10 +00:00
import equal from 'deep-equal';
2019-03-27 20:06:57 +00:00
import moment from 'moment';
2019-04-17 17:01:03 +00:00
import EJSON from 'ejson';
import * as Haptics from 'expo-haptics';
2017-08-13 01:35:09 +00:00
2019-04-08 12:35:28 +00:00
import {
toggleReactionPicker as toggleReactionPickerAction,
actionsShow as actionsShowAction,
errorActionsShow as errorActionsShowAction,
2019-04-08 12:35:28 +00:00
editCancel as editCancelAction,
replyCancel as replyCancelAction,
replyBroadcast as replyBroadcastAction
2019-04-08 12:35:28 +00:00
} from '../../actions/messages';
2019-03-27 20:06:57 +00:00
import { List } from './List';
2019-04-04 18:08:40 +00:00
import database, { safeAddListener } from '../../lib/realm';
import RocketChat from '../../lib/rocketchat';
import Message from '../../containers/message';
import MessageActions from '../../containers/MessageActions';
import MessageErrorActions from '../../containers/MessageErrorActions';
import MessageBox from '../../containers/MessageBox';
import ReactionPicker from './ReactionPicker';
import UploadProgress from './UploadProgress';
import styles from './styles';
import log from '../../utils/log';
2019-01-29 19:52:56 +00:00
import { isIOS } from '../../utils/deviceInfo';
2019-04-17 17:01:03 +00:00
import EventEmitter from '../../utils/events';
2018-06-01 17:38:13 +00:00
import I18n from '../../i18n';
2019-04-17 17:01:03 +00:00
import RoomHeaderView, { RightButtons } from './Header';
2019-03-12 16:23:06 +00:00
import StatusBar from '../../containers/StatusBar';
2019-03-27 20:06:57 +00:00
import Separator from './Separator';
import { COLOR_WHITE, HEADER_BACK } from '../../constants/colors';
2019-04-08 12:35:28 +00:00
import debounce from '../../utils/debounce';
2019-04-17 17:01:03 +00:00
import buildMessage from '../../lib/methods/helpers/buildMessage';
import FileModal from '../../containers/FileModal';
import ReactionsModal from '../../containers/ReactionsModal';
2019-07-23 14:02:57 +00:00
import { LISTENER } from '../../containers/Toast';
2019-07-18 17:44:02 +00:00
import { isReadOnly, isBlocked } from '../../utils/room';
class RoomView extends React.Component {
2019-03-12 16:23:06 +00:00
static navigationOptions = ({ navigation }) => {
const rid = navigation.getParam('rid');
2019-04-08 12:35:28 +00:00
const prid = navigation.getParam('prid');
const title = navigation.getParam('name');
2019-03-12 16:23:06 +00:00
const t = navigation.getParam('t');
2019-04-17 17:01:03 +00:00
const tmid = navigation.getParam('tmid');
const toggleFollowThread = navigation.getParam('toggleFollowThread', () => {});
const unreadsCount = navigation.getParam('unreadsCount', null);
return {
2019-04-17 17:01:03 +00:00
headerTitle: (
<RoomHeaderView
rid={rid}
prid={prid}
tmid={tmid}
title={title}
type={t}
widthOffset={tmid ? 95 : 130}
/>
2019-04-17 17:01:03 +00:00
),
headerRight: (
<RightButtons
rid={rid}
tmid={tmid}
t={t}
navigation={navigation}
toggleFollowThread={toggleFollowThread}
/>
),
headerLeft: (
<HeaderBackButton
title={unreadsCount > 999 ? '+999' : unreadsCount || ' '}
backTitleVisible
onPress={() => navigation.goBack()}
tintColor={HEADER_BACK}
/>
)
};
}
2017-08-05 18:16:32 +00:00
static propTypes = {
2019-03-12 16:23:06 +00:00
navigation: PropTypes.object,
user: PropTypes.shape({
id: PropTypes.string.isRequired,
username: PropTypes.string.isRequired,
token: PropTypes.string.isRequired
}),
showActions: PropTypes.bool,
showErrorActions: PropTypes.bool,
actionMessage: PropTypes.object,
2018-12-05 20:52:08 +00:00
appState: PropTypes.string,
2019-04-08 12:35:28 +00:00
useRealName: PropTypes.bool,
2019-04-17 17:01:03 +00:00
isAuthenticated: PropTypes.bool,
Message_GroupingPeriod: PropTypes.number,
Message_TimeFormat: PropTypes.string,
Message_Read_Receipt_Enabled: PropTypes.bool,
editing: PropTypes.bool,
replying: PropTypes.bool,
baseUrl: PropTypes.string,
useMarkdown: PropTypes.bool,
toggleReactionPicker: PropTypes.func,
actionsShow: PropTypes.func,
2019-04-08 12:35:28 +00:00
editCancel: PropTypes.func,
replyCancel: PropTypes.func,
replyBroadcast: PropTypes.func,
errorActionsShow: PropTypes.func
};
2017-08-05 18:16:32 +00:00
2017-08-04 00:34:37 +00:00
constructor(props) {
super(props);
2019-04-08 12:35:28 +00:00
console.time(`${ this.constructor.name } init`);
console.time(`${ this.constructor.name } mount`);
2019-03-12 16:23:06 +00:00
this.rid = props.navigation.getParam('rid');
2019-04-08 12:35:28 +00:00
this.t = props.navigation.getParam('t');
2019-04-17 17:01:03 +00:00
this.tmid = props.navigation.getParam('tmid');
this.rooms = database.objects('subscriptions').filtered('rid = $0', this.rid);
this.chats = database.objects('subscriptions').filtered('rid != $0', this.rid);
const canAutoTranslate = RocketChat.canAutoTranslate();
2017-08-07 18:42:02 +00:00
this.state = {
joined: this.rooms.length > 0,
2019-04-08 12:35:28 +00:00
room: this.rooms[0] || { rid: this.rid, t: this.t },
lastOpen: null,
photoModalVisible: false,
reactionsModalVisible: false,
selectedAttachment: {},
selectedMessage: {},
canAutoTranslate
2017-08-07 18:42:02 +00:00
};
2019-03-27 20:06:57 +00:00
this.beginAnimating = false;
2019-04-08 12:35:28 +00:00
this.beginAnimatingTimeout = setTimeout(() => this.beginAnimating = true, 300);
this.messagebox = React.createRef();
this.willBlurListener = props.navigation.addListener('willBlur', () => this.mounted = false);
this.mounted = false;
2019-04-08 12:35:28 +00:00
console.timeEnd(`${ this.constructor.name } init`);
2017-08-07 00:34:35 +00:00
}
2017-08-04 00:34:37 +00:00
componentDidMount() {
2019-04-17 17:01:03 +00:00
this.didMountInteraction = InteractionManager.runAfterInteractions(() => {
2019-04-08 12:35:28 +00:00
const { room } = this.state;
2019-04-17 17:01:03 +00:00
const { navigation, isAuthenticated } = this.props;
2019-04-08 12:35:28 +00:00
2019-04-17 17:01:03 +00:00
if (room._id && !this.tmid) {
2019-04-08 12:35:28 +00:00
navigation.setParams({ name: this.getRoomTitle(room), t: room.t });
}
if (this.tmid) {
navigation.setParams({ toggleFollowThread: this.toggleFollowThread });
}
2019-04-17 17:01:03 +00:00
if (isAuthenticated) {
this.init();
} else {
EventEmitter.addEventListener('connected', this.handleConnected);
}
safeAddListener(this.rooms, this.updateRoom);
safeAddListener(this.chats, this.updateUnreadCount);
this.mounted = true;
2019-04-08 12:35:28 +00:00
});
console.timeEnd(`${ this.constructor.name } mount`);
}
shouldComponentUpdate(nextProps, nextState) {
const {
room, joined, lastOpen, photoModalVisible, reactionsModalVisible, canAutoTranslate
} = this.state;
2018-12-05 20:52:08 +00:00
const { showActions, showErrorActions, appState } = this.props;
2019-04-17 17:01:03 +00:00
if (lastOpen !== nextState.lastOpen) {
return true;
} else if (photoModalVisible !== nextState.photoModalVisible) {
return true;
} else if (reactionsModalVisible !== nextState.reactionsModalVisible) {
return true;
2019-04-17 17:01:03 +00:00
} else if (room.ro !== nextState.room.ro) {
return true;
} else if (room.f !== nextState.room.f) {
return true;
} else if (room.blocked !== nextState.room.blocked) {
return true;
} else if (room.blocker !== nextState.room.blocker) {
return true;
} else if (room.archived !== nextState.room.archived) {
return true;
} else if (joined !== nextState.joined) {
return true;
} else if (canAutoTranslate !== nextState.canAutoTranslate) {
return true;
} else if (showActions !== nextProps.showActions) {
return true;
} else if (showErrorActions !== nextProps.showErrorActions) {
return true;
2018-12-05 20:52:08 +00:00
} else if (appState !== nextProps.appState) {
return true;
2019-02-07 15:48:10 +00:00
} else if (!equal(room.muted, nextState.room.muted)) {
return true;
}
return false;
}
2019-04-08 12:35:28 +00:00
componentDidUpdate(prevProps) {
const { room } = this.state;
2019-04-08 12:35:28 +00:00
const { appState } = this.props;
2019-04-08 12:35:28 +00:00
if (appState === 'foreground' && appState !== prevProps.appState) {
this.onForegroundInteraction = InteractionManager.runAfterInteractions(() => {
RocketChat.loadMissedMessages(room).catch(e => console.log(e));
RocketChat.readMessages(room.rid).catch(e => console.log(e));
});
}
}
2017-08-07 00:34:35 +00:00
componentWillUnmount() {
this.mounted = false;
const { editing, replying } = this.props;
if (!editing && this.messagebox && this.messagebox.current) {
2019-04-08 12:35:28 +00:00
const { text } = this.messagebox.current;
let obj;
if (this.tmid) {
obj = database.objectForPrimaryKey('threads', this.tmid);
} else {
[obj] = this.rooms;
}
if (obj) {
2019-04-17 17:01:03 +00:00
database.write(() => {
obj.draftMessage = text;
2019-04-17 17:01:03 +00:00
});
}
2019-04-08 12:35:28 +00:00
}
this.rooms.removeAllListeners();
this.chats.removeAllListeners();
2019-04-08 12:35:28 +00:00
if (this.sub && this.sub.stop) {
this.sub.stop();
}
if (this.beginAnimatingTimeout) {
clearTimeout(this.beginAnimatingTimeout);
}
if (editing) {
const { editCancel } = this.props;
editCancel();
}
if (replying) {
const { replyCancel } = this.props;
replyCancel();
}
2019-04-08 12:35:28 +00:00
if (this.didMountInteraction && this.didMountInteraction.cancel) {
this.didMountInteraction.cancel();
}
if (this.onForegroundInteraction && this.onForegroundInteraction.cancel) {
this.onForegroundInteraction.cancel();
}
if (this.updateStateInteraction && this.updateStateInteraction.cancel) {
this.updateStateInteraction.cancel();
}
2019-04-17 17:01:03 +00:00
if (this.initInteraction && this.initInteraction.cancel) {
this.initInteraction.cancel();
}
if (this.willBlurListener && this.willBlurListener.remove) {
this.willBlurListener.remove();
}
2019-04-17 17:01:03 +00:00
EventEmitter.removeListener('connected', this.handleConnected);
2019-04-08 12:35:28 +00:00
console.countReset(`${ this.constructor.name }.render calls`);
2017-08-04 00:34:37 +00:00
}
2019-04-17 17:01:03 +00:00
// eslint-disable-next-line react/sort-comp
init = () => {
try {
this.initInteraction = InteractionManager.runAfterInteractions(async() => {
const { room } = this.state;
if (this.tmid) {
await this.getThreadMessages();
2019-04-17 17:01:03 +00:00
} else {
await this.getMessages(room);
// if room is joined
if (room._id) {
if (room.alert || room.unread || room.userMentions) {
this.setLastOpen(room.ls);
} else {
this.setLastOpen(null);
}
RocketChat.readMessages(room.rid).catch(e => console.log(e));
this.sub = await RocketChat.subscribeRoom(room);
}
}
// We run `canAutoTranslate` again in order to refetch auto translate permission
// in case of a missing connection or poor connection on room open
const canAutoTranslate = RocketChat.canAutoTranslate();
this.setState({ canAutoTranslate });
2019-04-17 17:01:03 +00:00
});
} catch (e) {
2019-05-28 16:18:46 +00:00
log('err_room_init', e);
2019-04-17 17:01:03 +00:00
}
}
onMessageLongPress = (message) => {
const { actionsShow } = this.props;
actionsShow({ ...message, rid: this.rid });
}
onOpenFileModal = (attachment) => {
this.setState({ selectedAttachment: attachment, photoModalVisible: true });
}
onCloseFileModal = () => {
this.setState({ selectedAttachment: {}, photoModalVisible: false });
}
onReactionPress = (shortname, messageId) => {
const { actionMessage, toggleReactionPicker } = this.props;
try {
if (!messageId) {
RocketChat.setReaction(shortname, actionMessage._id);
return toggleReactionPicker();
}
RocketChat.setReaction(shortname, messageId);
} catch (e) {
2019-05-28 16:18:46 +00:00
log('err_room_on_reaction_press', e);
}
};
2017-08-04 00:34:37 +00:00
onReactionLongPress = (message) => {
this.setState({ selectedMessage: message, reactionsModalVisible: true });
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light);
}
onCloseReactionsModal = () => {
this.setState({ selectedMessage: {}, reactionsModalVisible: false });
}
2019-04-08 12:35:28 +00:00
onDiscussionPress = debounce((item) => {
const { navigation } = this.props;
navigation.push('RoomView', {
rid: item.drid, prid: item.rid, name: item.msg, t: 'p'
});
}, 1000, true)
// eslint-disable-next-line react/sort-comp
updateUnreadCount = debounce(() => {
const { navigation } = this.props;
const unreadsCount = this.chats.filtered('archived != true && open == true && unread > 0').reduce((a, b) => a + (b.unread || 0), 0);
if (unreadsCount !== navigation.getParam('unreadsCount')) {
navigation.setParams({
unreadsCount
});
}
}, 300, false)
onThreadPress = debounce((item) => {
const { navigation } = this.props;
if (item.tmid) {
navigation.push('RoomView', {
rid: item.rid, tmid: item.tmid, name: item.tmsg, t: 'thread'
});
} else if (item.tlm) {
const title = item.msg || (item.attachments && item.attachments.length && item.attachments[0].title);
navigation.push('RoomView', {
rid: item.rid, tmid: item._id, name: title, t: 'thread'
});
}
}, 1000, true)
toggleReactionPicker = (message) => {
const { toggleReactionPicker } = this.props;
toggleReactionPicker(message);
}
replyBroadcast = (message) => {
const { replyBroadcast } = this.props;
replyBroadcast(message);
}
errorActionsShow = (message) => {
const { errorActionsShow } = this.props;
errorActionsShow(message);
}
2019-04-17 17:01:03 +00:00
handleConnected = () => {
this.init();
EventEmitter.removeListener('connected', this.handleConnected);
}
internalSetState = (...args) => {
if (!this.mounted) {
return;
}
2019-03-27 20:06:57 +00:00
if (isIOS && this.beginAnimating) {
LayoutAnimation.easeInEaseOut();
}
this.setState(...args);
}
updateRoom = () => {
2019-04-08 12:35:28 +00:00
this.updateStateInteraction = InteractionManager.runAfterInteractions(() => {
2019-04-17 17:01:03 +00:00
if (this.rooms[0]) {
const room = JSON.parse(JSON.stringify(this.rooms[0] || {}));
this.internalSetState({ room });
}
2019-04-08 12:35:28 +00:00
});
2019-03-12 16:23:06 +00:00
}
2019-04-17 17:01:03 +00:00
sendMessage = (message, tmid) => {
2019-07-29 16:33:28 +00:00
const { user } = this.props;
LayoutAnimation.easeInEaseOut();
2019-07-29 16:33:28 +00:00
RocketChat.sendMessage(this.rid, message, this.tmid || tmid, user).then(() => {
2019-03-27 20:06:57 +00:00
this.setLastOpen(null);
});
};
2017-08-09 01:40:55 +00:00
2019-04-08 12:35:28 +00:00
getRoomTitle = (room) => {
const { useRealName } = this.props;
return ((room.prid || useRealName) && room.fname) || room.name;
}
getMessages = async() => {
2019-04-17 17:01:03 +00:00
const { room } = this.state;
try {
if (room.lastOpen) {
await RocketChat.loadMissedMessages(room);
2019-04-17 17:01:03 +00:00
} else {
await RocketChat.loadMessagesForRoom(room);
2019-04-17 17:01:03 +00:00
}
return Promise.resolve();
2019-04-17 17:01:03 +00:00
} catch (e) {
2019-05-28 16:18:46 +00:00
log('err_get_messages', e);
2019-04-17 17:01:03 +00:00
}
}
getThreadMessages = () => {
try {
return RocketChat.loadThreadMessages({ tmid: this.tmid });
} catch (e) {
2019-05-28 16:18:46 +00:00
log('err_get_thread_messages', e);
}
}
setLastOpen = lastOpen => this.setState({ lastOpen });
2019-03-27 20:06:57 +00:00
joinRoom = async() => {
try {
2019-06-20 19:02:50 +00:00
await RocketChat.joinRoom(this.rid, this.t);
this.internalSetState({
joined: true
});
} catch (e) {
2019-05-28 16:18:46 +00:00
log('err_join_room', e);
}
2017-08-10 16:16:32 +00:00
};
2019-04-17 17:01:03 +00:00
// eslint-disable-next-line react/sort-comp
fetchThreadName = async(tmid) => {
try {
// TODO: we should build a tmid queue here in order to search for a single tmid only once
const thread = await RocketChat.getSingleMessage(tmid);
database.write(() => {
database.create('threads', buildMessage(EJSON.fromJSONValue(thread)), true);
});
} catch (error) {
2019-05-28 16:18:46 +00:00
log('err_fetch_thread_name', error);
2019-04-17 17:01:03 +00:00
}
}
toggleFollowThread = async(isFollowingThread) => {
try {
await RocketChat.toggleFollowMessage(this.tmid, !isFollowingThread);
2019-07-23 14:02:57 +00:00
EventEmitter.emit(LISTENER, { message: isFollowingThread ? 'Unfollowed thread' : 'Following thread' });
} catch (e) {
2019-05-28 16:18:46 +00:00
log('err_toggle_follow_thread', e);
}
}
navToRoomInfo = (navParam) => {
const { navigation, user } = this.props;
if (navParam.rid === user.id) {
return;
}
navigation.navigate('RoomInfoView', navParam);
}
renderItem = (item, previousItem) => {
const { room, lastOpen, canAutoTranslate } = this.state;
const {
user, Message_GroupingPeriod, Message_TimeFormat, useRealName, baseUrl, useMarkdown, Message_Read_Receipt_Enabled
} = this.props;
2019-03-27 20:06:57 +00:00
let dateSeparator = null;
let showUnreadSeparator = false;
if (!previousItem) {
dateSeparator = item.ts;
showUnreadSeparator = moment(item.ts).isAfter(lastOpen);
} else {
showUnreadSeparator = lastOpen
&& moment(item.ts).isAfter(lastOpen)
&& moment(previousItem.ts).isBefore(lastOpen);
if (!moment(item.ts).isSame(previousItem.ts, 'day')) {
2019-04-08 12:35:28 +00:00
dateSeparator = item.ts;
2019-03-27 20:06:57 +00:00
}
}
2019-04-17 17:01:03 +00:00
const message = (
<Message
key={item._id}
item={item}
user={user}
archived={room.archived}
broadcast={room.broadcast}
2019-04-17 17:01:03 +00:00
status={item.status}
_updatedAt={item._updatedAt}
2019-04-17 17:01:03 +00:00
previousItem={previousItem}
fetchThreadName={this.fetchThreadName}
onReactionPress={this.onReactionPress}
onReactionLongPress={this.onReactionLongPress}
onLongPress={this.onMessageLongPress}
2019-04-08 12:35:28 +00:00
onDiscussionPress={this.onDiscussionPress}
onThreadPress={this.onThreadPress}
onOpenFileModal={this.onOpenFileModal}
toggleReactionPicker={this.toggleReactionPicker}
replyBroadcast={this.replyBroadcast}
errorActionsShow={this.errorActionsShow}
baseUrl={baseUrl}
Message_GroupingPeriod={Message_GroupingPeriod}
timeFormat={Message_TimeFormat}
useRealName={useRealName}
useMarkdown={useMarkdown}
isReadReceiptEnabled={Message_Read_Receipt_Enabled}
autoTranslateRoom={canAutoTranslate && room.autoTranslate}
autoTranslateLanguage={room.autoTranslateLanguage}
navToRoomInfo={this.navToRoomInfo}
/>
);
2019-04-17 17:01:03 +00:00
if (showUnreadSeparator || dateSeparator) {
return (
<React.Fragment>
{message}
<Separator
ts={dateSeparator}
unread={showUnreadSeparator}
/>
</React.Fragment>
);
}
return message;
}
2017-08-07 00:34:35 +00:00
2017-08-10 16:16:32 +00:00
renderFooter = () => {
2019-04-08 12:35:28 +00:00
const { joined, room } = this.state;
2019-07-18 17:44:02 +00:00
const { navigation, user } = this.props;
2019-04-17 17:01:03 +00:00
if (!joined && !this.tmid) {
return (
<View style={styles.joinRoomContainer} key='room-view-join' testID='room-view-join'>
<Text style={styles.previewMode}>{I18n.t('You_are_in_preview_mode')}</Text>
<RectButton
onPress={this.joinRoom}
style={styles.joinRoomButton}
activeOpacity={0.5}
2019-03-29 19:36:07 +00:00
underlayColor={COLOR_WHITE}
>
<Text style={styles.joinRoomText} testID='room-view-join-button'>{I18n.t('Join')}</Text>
</RectButton>
</View>
);
}
2019-07-18 17:44:02 +00:00
if (isReadOnly(room, user)) {
return (
2019-04-08 12:35:28 +00:00
<View style={styles.readOnly}>
2019-03-29 19:36:07 +00:00
<Text style={styles.previewMode}>{I18n.t('This_room_is_read_only')}</Text>
</View>
);
}
2019-07-18 17:44:02 +00:00
if (isBlocked(room)) {
return (
2019-04-08 12:35:28 +00:00
<View style={styles.readOnly}>
2019-03-29 19:36:07 +00:00
<Text style={styles.previewMode}>{I18n.t('This_room_is_blocked')}</Text>
</View>
);
}
return (
<MessageBox
ref={this.messagebox}
onSubmit={this.sendMessage}
rid={this.rid}
tmid={this.tmid}
roomType={room.t}
isFocused={navigation.isFocused()}
/>
);
};
2017-08-09 20:08:50 +00:00
2019-04-17 17:01:03 +00:00
renderActions = () => {
2019-04-08 12:35:28 +00:00
const { room } = this.state;
2019-04-17 17:01:03 +00:00
const {
user, showActions, showErrorActions, navigation
} = this.props;
if (!navigation.isFocused()) {
return null;
}
return (
2019-04-08 12:35:28 +00:00
<React.Fragment>
2019-04-17 17:01:03 +00:00
{room._id && showActions
2019-07-23 14:02:57 +00:00
? <MessageActions room={room} tmid={this.tmid} user={user} />
2019-04-17 17:01:03 +00:00
: null
}
{showErrorActions ? <MessageErrorActions /> : null}
2019-04-08 12:35:28 +00:00
</React.Fragment>
);
}
2017-08-04 00:34:37 +00:00
render() {
2019-04-08 12:35:28 +00:00
console.count(`${ this.constructor.name }.render calls`);
const {
room, photoModalVisible, reactionsModalVisible, selectedAttachment, selectedMessage
} = this.state;
const { user, baseUrl } = this.props;
2019-04-17 17:01:03 +00:00
const { rid, t } = room;
2017-08-04 00:34:37 +00:00
return (
<SafeAreaView style={styles.container} testID='room-view' forceInset={{ vertical: 'never' }}>
2019-03-12 16:23:06 +00:00
<StatusBar />
2019-04-17 17:01:03 +00:00
<List rid={rid} t={t} tmid={this.tmid} renderRow={this.renderItem} />
{this.renderFooter()}
{this.renderActions()}
<ReactionPicker onEmojiSelected={this.onReactionPress} />
2019-07-29 16:33:28 +00:00
<UploadProgress rid={this.rid} user={user} baseUrl={baseUrl} />
<FileModal
attachment={selectedAttachment}
isVisible={photoModalVisible}
onClose={this.onCloseFileModal}
user={user}
baseUrl={baseUrl}
/>
<ReactionsModal
message={selectedMessage}
isVisible={reactionsModalVisible}
onClose={this.onCloseReactionsModal}
user={user}
baseUrl={baseUrl}
/>
</SafeAreaView>
2017-08-04 00:34:37 +00:00
);
}
}
const mapStateToProps = state => ({
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
},
actionMessage: state.messages.actionMessage,
editing: state.messages.editing,
replying: state.messages.replying,
showActions: state.messages.showActions,
showErrorActions: state.messages.showErrorActions,
appState: state.app.ready && state.app.foreground ? 'foreground' : 'background',
useRealName: state.settings.UI_Use_Real_Name,
isAuthenticated: state.login.isAuthenticated,
Message_GroupingPeriod: state.settings.Message_GroupingPeriod,
Message_TimeFormat: state.settings.Message_TimeFormat,
useMarkdown: state.markdown.useMarkdown,
baseUrl: state.settings.baseUrl || state.server ? state.server.server : '',
Message_Read_Receipt_Enabled: state.settings.Message_Read_Receipt_Enabled
});
const mapDispatchToProps = dispatch => ({
editCancel: () => dispatch(editCancelAction()),
replyCancel: () => dispatch(replyCancelAction()),
toggleReactionPicker: message => dispatch(toggleReactionPickerAction(message)),
errorActionsShow: actionMessage => dispatch(errorActionsShowAction(actionMessage)),
actionsShow: actionMessage => dispatch(actionsShowAction(actionMessage)),
replyBroadcast: message => dispatch(replyBroadcastAction(message))
});
export default connect(mapStateToProps, mapDispatchToProps)(RoomView);