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';
|
2019-09-19 13:32:24 +00:00
|
|
|
import { Text, View, InteractionManager } from 'react-native';
|
2019-01-31 16:08:38 +00:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { RectButton } from 'react-native-gesture-handler';
|
2019-10-02 12:18:08 +00:00
|
|
|
import { SafeAreaView } from 'react-navigation';
|
2019-09-17 19:24:47 +00:00
|
|
|
import { HeaderBackButton } from 'react-navigation-stack';
|
2019-09-16 20:26:32 +00:00
|
|
|
import { sanitizedRaw } from '@nozbe/watermelondb/RawRecord';
|
2019-03-27 20:06:57 +00:00
|
|
|
import moment from 'moment';
|
2019-06-28 17:07:17 +00:00
|
|
|
import * as Haptics from 'expo-haptics';
|
2019-09-16 20:26:32 +00:00
|
|
|
import { Q } from '@nozbe/watermelondb';
|
|
|
|
import isEqual from 'lodash/isEqual';
|
2017-08-13 01:35:09 +00:00
|
|
|
|
2019-04-08 12:35:28 +00:00
|
|
|
import {
|
2019-05-20 20:43:50 +00:00
|
|
|
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-09-16 20:26:32 +00:00
|
|
|
import database from '../../lib/database';
|
2017-12-08 19:13:21 +00:00
|
|
|
import RocketChat from '../../lib/rocketchat';
|
|
|
|
import Message from '../../containers/message';
|
|
|
|
import MessageActions from '../../containers/MessageActions';
|
2017-12-13 15:00:26 +00:00
|
|
|
import MessageErrorActions from '../../containers/MessageErrorActions';
|
2017-12-08 19:13:21 +00:00
|
|
|
import MessageBox from '../../containers/MessageBox';
|
2018-01-30 19:48:26 +00:00
|
|
|
import ReactionPicker from './ReactionPicker';
|
2018-07-17 19:10:27 +00:00
|
|
|
import UploadProgress from './UploadProgress';
|
2017-12-08 19:13:21 +00:00
|
|
|
import styles from './styles';
|
2018-05-18 17:55:08 +00:00
|
|
|
import log from '../../utils/log';
|
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';
|
2019-08-22 19:15:30 +00:00
|
|
|
import { COLOR_WHITE, HEADER_BACK } from '../../constants/colors';
|
2019-04-08 12:35:28 +00:00
|
|
|
import debounce from '../../utils/debounce';
|
2019-05-20 20:43:50 +00:00
|
|
|
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';
|
2019-09-16 20:26:32 +00:00
|
|
|
import { isIOS } from '../../utils/deviceInfo';
|
2019-09-18 17:32:12 +00:00
|
|
|
import { showErrorAlert } from '../../utils/info';
|
2019-09-16 20:26:32 +00:00
|
|
|
|
|
|
|
const stateAttrsUpdate = [
|
|
|
|
'joined',
|
|
|
|
'lastOpen',
|
|
|
|
'photoModalVisible',
|
|
|
|
'reactionsModalVisible',
|
|
|
|
'canAutoTranslate',
|
|
|
|
'showActions',
|
|
|
|
'showErrorActions',
|
|
|
|
'loading',
|
|
|
|
'editing',
|
|
|
|
'replying',
|
|
|
|
'reacting'
|
|
|
|
];
|
2019-09-18 17:32:12 +00:00
|
|
|
const roomAttrsUpdate = ['f', 'ro', 'blocked', 'blocker', 'archived', 'muted', 'jitsiTimeout'];
|
2018-09-26 13:56:36 +00:00
|
|
|
|
2019-08-07 13:51:34 +00:00
|
|
|
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');
|
2019-09-16 20:26:32 +00:00
|
|
|
const room = navigation.getParam('room');
|
2019-05-15 19:33:30 +00:00
|
|
|
const toggleFollowThread = navigation.getParam('toggleFollowThread', () => {});
|
2019-08-22 19:15:30 +00:00
|
|
|
const unreadsCount = navigation.getParam('unreadsCount', null);
|
2018-10-23 21:39:48 +00:00
|
|
|
return {
|
2019-04-17 17:01:03 +00:00
|
|
|
headerTitle: (
|
2019-04-30 19:31:51 +00:00
|
|
|
<RoomHeaderView
|
|
|
|
rid={rid}
|
|
|
|
prid={prid}
|
|
|
|
tmid={tmid}
|
|
|
|
title={title}
|
|
|
|
type={t}
|
|
|
|
widthOffset={tmid ? 95 : 130}
|
|
|
|
/>
|
2019-04-17 17:01:03 +00:00
|
|
|
),
|
2019-05-15 19:33:30 +00:00
|
|
|
headerRight: (
|
|
|
|
<RightButtons
|
|
|
|
rid={rid}
|
|
|
|
tmid={tmid}
|
2019-09-16 20:26:32 +00:00
|
|
|
room={room}
|
2019-05-15 19:33:30 +00:00
|
|
|
t={t}
|
|
|
|
navigation={navigation}
|
|
|
|
toggleFollowThread={toggleFollowThread}
|
|
|
|
/>
|
2019-08-22 19:15:30 +00:00
|
|
|
),
|
|
|
|
headerLeft: (
|
|
|
|
<HeaderBackButton
|
|
|
|
title={unreadsCount > 999 ? '+999' : unreadsCount || ' '}
|
2019-09-16 21:19:14 +00:00
|
|
|
backTitleVisible={isIOS}
|
2019-08-22 19:15:30 +00:00
|
|
|
onPress={() => navigation.goBack()}
|
|
|
|
tintColor={HEADER_BACK}
|
|
|
|
/>
|
2019-05-15 19:33:30 +00:00
|
|
|
)
|
2018-10-23 21:39:48 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-08-05 18:16:32 +00:00
|
|
|
static propTypes = {
|
2019-03-12 16:23:06 +00:00
|
|
|
navigation: PropTypes.object,
|
2018-07-10 13:40:32 +00:00
|
|
|
user: PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired,
|
|
|
|
username: PropTypes.string.isRequired,
|
|
|
|
token: PropTypes.string.isRequired
|
|
|
|
}),
|
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,
|
2019-05-20 20:43:50 +00:00
|
|
|
Message_GroupingPeriod: PropTypes.number,
|
|
|
|
Message_TimeFormat: PropTypes.string,
|
2019-06-10 18:36:31 +00:00
|
|
|
Message_Read_Receipt_Enabled: PropTypes.bool,
|
2019-05-20 20:43:50 +00:00
|
|
|
baseUrl: PropTypes.string,
|
2019-09-16 20:26:32 +00:00
|
|
|
customEmojis: PropTypes.object,
|
2019-05-21 12:12:15 +00:00
|
|
|
useMarkdown: PropTypes.bool,
|
2019-09-16 20:26:32 +00:00
|
|
|
replyBroadcast: PropTypes.func
|
2017-09-25 13:15:28 +00:00
|
|
|
};
|
2017-08-05 18:16:32 +00:00
|
|
|
|
2017-08-04 00:34:37 +00:00
|
|
|
constructor(props) {
|
2019-05-28 13:03:08 +00:00
|
|
|
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-09-16 20:26:32 +00:00
|
|
|
this.tmid = props.navigation.getParam('tmid', null);
|
|
|
|
const room = props.navigation.getParam('room');
|
|
|
|
const selectedMessage = props.navigation.getParam('message');
|
2017-08-07 18:42:02 +00:00
|
|
|
this.state = {
|
2019-09-16 20:26:32 +00:00
|
|
|
joined: true,
|
|
|
|
room: room || { rid: this.rid, t: this.t },
|
|
|
|
roomUpdate: {},
|
2019-05-20 20:43:50 +00:00
|
|
|
lastOpen: null,
|
|
|
|
photoModalVisible: false,
|
|
|
|
reactionsModalVisible: false,
|
|
|
|
selectedAttachment: {},
|
2019-09-16 20:26:32 +00:00
|
|
|
selectedMessage: selectedMessage || {},
|
|
|
|
canAutoTranslate: false,
|
|
|
|
loading: true,
|
|
|
|
showActions: false,
|
|
|
|
showErrorActions: false,
|
|
|
|
editing: false,
|
|
|
|
replying: !!selectedMessage,
|
|
|
|
replyWithMention: false,
|
|
|
|
reacting: false
|
2017-08-07 18:42:02 +00:00
|
|
|
};
|
2019-09-16 20:26:32 +00:00
|
|
|
|
|
|
|
if (room && room.observe) {
|
|
|
|
this.observeRoom(room);
|
|
|
|
} else {
|
|
|
|
this.findAndObserveRoom(this.rid);
|
|
|
|
}
|
|
|
|
|
2019-03-27 20:06:57 +00:00
|
|
|
this.beginAnimating = false;
|
2019-09-16 20:26:32 +00:00
|
|
|
this.didFocusListener = props.navigation.addListener('didFocus', () => this.beginAnimating = true);
|
2019-04-08 12:35:28 +00:00
|
|
|
this.messagebox = React.createRef();
|
2019-05-03 14:54:57 +00:00
|
|
|
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
|
|
|
|
2018-12-21 10:55:35 +00:00
|
|
|
componentDidMount() {
|
2019-09-16 20:26:32 +00:00
|
|
|
this.mounted = true;
|
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-09-16 20:26:32 +00:00
|
|
|
if (room.id && !this.tmid) {
|
2019-04-08 12:35:28 +00:00
|
|
|
navigation.setParams({ name: this.getRoomTitle(room), t: room.t });
|
|
|
|
}
|
2019-05-15 19:33:30 +00:00
|
|
|
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);
|
|
|
|
}
|
2019-09-16 21:19:14 +00:00
|
|
|
if (isIOS) {
|
|
|
|
this.updateUnreadCount();
|
|
|
|
}
|
2019-04-08 12:35:28 +00:00
|
|
|
});
|
2019-09-16 20:26:32 +00:00
|
|
|
|
2019-04-08 12:35:28 +00:00
|
|
|
console.timeEnd(`${ this.constructor.name } mount`);
|
2018-02-08 14:08:50 +00:00
|
|
|
}
|
2018-09-19 14:18:32 +00:00
|
|
|
|
2018-01-09 17:12:55 +00:00
|
|
|
shouldComponentUpdate(nextProps, nextState) {
|
2019-09-16 20:26:32 +00:00
|
|
|
const { state } = this;
|
|
|
|
const { roomUpdate } = state;
|
|
|
|
const { appState } = this.props;
|
|
|
|
if (appState !== nextProps.appState) {
|
2018-12-05 20:52:08 +00:00
|
|
|
return true;
|
2019-09-16 20:26:32 +00:00
|
|
|
}
|
|
|
|
const stateUpdated = stateAttrsUpdate.some(key => nextState[key] !== state[key]);
|
|
|
|
if (stateUpdated) {
|
2019-02-07 15:48:10 +00:00
|
|
|
return true;
|
2018-09-26 13:56:36 +00:00
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
return roomAttrsUpdate.some(key => !isEqual(nextState.roomUpdate[key], roomUpdate[key]));
|
2017-09-21 17:08:00 +00:00
|
|
|
}
|
2018-07-10 13:40:32 +00:00
|
|
|
|
2019-04-08 12:35:28 +00:00
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
const { appState } = this.props;
|
2018-09-25 19:28:42 +00:00
|
|
|
|
2019-04-08 12:35:28 +00:00
|
|
|
if (appState === 'foreground' && appState !== prevProps.appState) {
|
|
|
|
this.onForegroundInteraction = InteractionManager.runAfterInteractions(() => {
|
2019-09-16 20:26:32 +00:00
|
|
|
this.init();
|
2019-04-08 12:35:28 +00:00
|
|
|
});
|
2018-07-10 13:40:32 +00:00
|
|
|
}
|
2019-09-27 20:29:25 +00:00
|
|
|
if (appState === 'background' && appState !== prevProps.appState) {
|
|
|
|
this.unsubscribe();
|
|
|
|
}
|
2018-07-10 13:40:32 +00:00
|
|
|
}
|
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
async componentWillUnmount() {
|
|
|
|
const { editing, room } = this.state;
|
|
|
|
const db = database.active;
|
2019-05-03 14:54:57 +00:00
|
|
|
this.mounted = false;
|
2019-06-08 11:31:29 +00:00
|
|
|
if (!editing && this.messagebox && this.messagebox.current) {
|
2019-04-08 12:35:28 +00:00
|
|
|
const { text } = this.messagebox.current;
|
2019-04-24 18:36:29 +00:00
|
|
|
let obj;
|
|
|
|
if (this.tmid) {
|
2019-09-16 20:26:32 +00:00
|
|
|
try {
|
|
|
|
const threadsCollection = db.collections.get('threads');
|
|
|
|
obj = await threadsCollection.find(this.tmid);
|
|
|
|
} catch (e) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
2019-04-24 18:36:29 +00:00
|
|
|
} else {
|
2019-09-16 20:26:32 +00:00
|
|
|
obj = room;
|
2019-04-24 18:36:29 +00:00
|
|
|
}
|
|
|
|
if (obj) {
|
2019-09-16 20:26:32 +00:00
|
|
|
try {
|
|
|
|
await db.action(async() => {
|
|
|
|
await obj.update((r) => {
|
|
|
|
r.draftMessage = text;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} catch (error) {
|
|
|
|
// Do nothing
|
|
|
|
}
|
2019-04-17 17:01:03 +00:00
|
|
|
}
|
2019-04-08 12:35:28 +00:00
|
|
|
}
|
2019-09-27 20:29:25 +00:00
|
|
|
this.unsubscribe();
|
2019-09-16 20:26:32 +00:00
|
|
|
if (this.didFocusListener && this.didFocusListener.remove) {
|
|
|
|
this.didFocusListener.remove();
|
2019-04-24 18:36:29 +00:00
|
|
|
}
|
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();
|
|
|
|
}
|
2019-04-17 17:01:03 +00:00
|
|
|
if (this.initInteraction && this.initInteraction.cancel) {
|
|
|
|
this.initInteraction.cancel();
|
|
|
|
}
|
2019-05-03 14:54:57 +00:00
|
|
|
if (this.willBlurListener && this.willBlurListener.remove) {
|
|
|
|
this.willBlurListener.remove();
|
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
if (this.subSubscription && this.subSubscription.unsubscribe) {
|
|
|
|
this.subSubscription.unsubscribe();
|
|
|
|
}
|
|
|
|
if (this.queryUnreads && this.queryUnreads.unsubscribe) {
|
|
|
|
this.queryUnreads.unsubscribe();
|
|
|
|
}
|
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 {
|
2019-09-16 20:26:32 +00:00
|
|
|
this.setState({ loading: true });
|
2019-04-17 17:01:03 +00:00
|
|
|
this.initInteraction = InteractionManager.runAfterInteractions(async() => {
|
2019-09-16 20:26:32 +00:00
|
|
|
const { room, joined } = this.state;
|
2019-04-17 17:01:03 +00:00
|
|
|
if (this.tmid) {
|
2019-04-24 18:36:29 +00:00
|
|
|
await this.getThreadMessages();
|
2019-04-17 17:01:03 +00:00
|
|
|
} else {
|
2019-09-16 20:26:32 +00:00
|
|
|
const newLastOpen = new Date();
|
2019-04-17 17:01:03 +00:00
|
|
|
await this.getMessages(room);
|
|
|
|
|
|
|
|
// if room is joined
|
2019-09-16 20:26:32 +00:00
|
|
|
if (joined) {
|
2019-04-17 17:01:03 +00:00
|
|
|
if (room.alert || room.unread || room.userMentions) {
|
|
|
|
this.setLastOpen(room.ls);
|
|
|
|
} else {
|
|
|
|
this.setLastOpen(null);
|
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
RocketChat.readMessages(room.rid, newLastOpen).catch(e => console.log(e));
|
2019-09-27 20:29:25 +00:00
|
|
|
this.unsubscribe();
|
2019-04-17 17:01:03 +00:00
|
|
|
this.sub = await RocketChat.subscribeRoom(room);
|
|
|
|
}
|
|
|
|
}
|
2019-06-28 17:02:30 +00:00
|
|
|
|
|
|
|
// We run `canAutoTranslate` again in order to refetch auto translate permission
|
|
|
|
// in case of a missing connection or poor connection on room open
|
2019-09-16 20:26:32 +00:00
|
|
|
const canAutoTranslate = await RocketChat.canAutoTranslate();
|
|
|
|
this.setState({ canAutoTranslate, loading: false });
|
2019-04-17 17:01:03 +00:00
|
|
|
});
|
|
|
|
} catch (e) {
|
2019-09-16 20:26:32 +00:00
|
|
|
this.setState({ loading: false });
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2019-04-17 17:01:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
findAndObserveRoom = async(rid) => {
|
|
|
|
try {
|
|
|
|
const db = database.active;
|
|
|
|
const { navigation } = this.props;
|
|
|
|
const subCollection = await db.collections.get('subscriptions');
|
|
|
|
const room = await subCollection.find(rid);
|
|
|
|
this.setState({ room });
|
|
|
|
navigation.setParams({ room });
|
|
|
|
this.observeRoom(room);
|
|
|
|
} catch (error) {
|
|
|
|
if (this.t !== 'd') {
|
|
|
|
console.log('Room not found');
|
|
|
|
this.internalSetState({ joined: false });
|
|
|
|
} else {
|
|
|
|
// We navigate to RoomView before the DM is inserted to the local db
|
|
|
|
// So we retry just to make sure we have the right content
|
|
|
|
this.retryFindCount = this.retryFindCount + 1 || 1;
|
|
|
|
if (this.retryFindCount <= 3) {
|
|
|
|
this.retryFindTimeout = setTimeout(() => {
|
|
|
|
this.findAndObserveRoom(rid);
|
|
|
|
this.init();
|
|
|
|
}, 300);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-27 20:29:25 +00:00
|
|
|
unsubscribe = () => {
|
|
|
|
if (this.sub && this.sub.stop) {
|
|
|
|
this.sub.stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
observeRoom = (room) => {
|
|
|
|
const observable = room.observe();
|
|
|
|
this.subSubscription = observable
|
|
|
|
.subscribe((changes) => {
|
|
|
|
const roomUpdate = roomAttrsUpdate.reduce((ret, attr) => {
|
|
|
|
ret[attr] = changes[attr];
|
|
|
|
return ret;
|
|
|
|
}, {});
|
|
|
|
if (this.mounted) {
|
|
|
|
this.internalSetState({ room: changes, roomUpdate });
|
|
|
|
} else {
|
|
|
|
this.state.room = changes;
|
|
|
|
this.state.roomUpdate = roomUpdate;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
errorActionsShow = (message) => {
|
|
|
|
this.setState({ selectedMessage: message, showErrorActions: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
onActionsHide = () => {
|
|
|
|
const { editing, replying, reacting } = this.state;
|
|
|
|
if (editing || replying || reacting) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.setState({ selectedMessage: {}, showActions: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
onErrorActionsHide = () => {
|
|
|
|
this.setState({ selectedMessage: {}, showErrorActions: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
onEditInit = (message) => {
|
|
|
|
this.setState({ selectedMessage: message, editing: true, showActions: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
onEditCancel = () => {
|
|
|
|
this.setState({ selectedMessage: {}, editing: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
onEditRequest = async(message) => {
|
|
|
|
this.setState({ selectedMessage: {}, editing: false });
|
|
|
|
try {
|
|
|
|
await RocketChat.editMessage(message);
|
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onReplyInit = (message, mention) => {
|
|
|
|
this.setState({
|
|
|
|
selectedMessage: message, replying: true, showActions: false, replyWithMention: mention
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
onReplyCancel = () => {
|
|
|
|
this.setState({ selectedMessage: {}, replying: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
onReactionInit = (message) => {
|
|
|
|
this.setState({ selectedMessage: message, reacting: true, showActions: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
onReactionClose = () => {
|
|
|
|
this.setState({ selectedMessage: {}, reacting: false });
|
|
|
|
}
|
|
|
|
|
2018-02-19 21:19:39 +00:00
|
|
|
onMessageLongPress = (message) => {
|
2019-09-16 20:26:32 +00:00
|
|
|
this.setState({ selectedMessage: message, showActions: true });
|
2018-02-19 21:19:39 +00:00
|
|
|
}
|
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
onOpenFileModal = (attachment) => {
|
|
|
|
this.setState({ selectedAttachment: attachment, photoModalVisible: true });
|
|
|
|
}
|
|
|
|
|
|
|
|
onCloseFileModal = () => {
|
|
|
|
this.setState({ selectedAttachment: {}, photoModalVisible: false });
|
|
|
|
}
|
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
onReactionPress = async(shortname, messageId) => {
|
2018-05-18 17:55:08 +00:00
|
|
|
try {
|
2019-09-16 20:26:32 +00:00
|
|
|
await RocketChat.setReaction(shortname, messageId);
|
|
|
|
this.onReactionClose();
|
2018-05-18 17:55:08 +00:00
|
|
|
} catch (e) {
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2018-01-30 19:48:26 +00:00
|
|
|
}
|
|
|
|
};
|
2017-08-04 00:34:37 +00:00
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
onReactionLongPress = (message) => {
|
|
|
|
this.setState({ selectedMessage: message, reactionsModalVisible: true });
|
2019-06-28 17:07:17 +00:00
|
|
|
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light);
|
2019-05-20 20:43:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
2019-08-22 19:15:30 +00:00
|
|
|
// eslint-disable-next-line react/sort-comp
|
2019-09-16 20:26:32 +00:00
|
|
|
updateUnreadCount = async() => {
|
|
|
|
const db = database.active;
|
|
|
|
const observable = await db.collections
|
|
|
|
.get('subscriptions')
|
|
|
|
.query(
|
|
|
|
Q.where('archived', false),
|
|
|
|
Q.where('open', true),
|
|
|
|
Q.where('rid', Q.notEq(this.rid))
|
|
|
|
)
|
|
|
|
.observeWithColumns(['unread']);
|
|
|
|
|
|
|
|
this.queryUnreads = observable.subscribe((data) => {
|
|
|
|
const { navigation } = this.props;
|
|
|
|
const unreadsCount = data.filter(s => s.unread > 0).reduce((a, b) => a + (b.unread || 0), 0);
|
|
|
|
if (unreadsCount !== navigation.getParam('unreadsCount')) {
|
|
|
|
navigation.setParams({
|
|
|
|
unreadsCount
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
2019-08-22 19:15:30 +00:00
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
onThreadPress = debounce(async(item) => {
|
2019-05-20 20:43:50 +00:00
|
|
|
const { navigation } = this.props;
|
|
|
|
if (item.tmid) {
|
2019-09-16 20:26:32 +00:00
|
|
|
if (!item.tmsg) {
|
|
|
|
await this.fetchThreadName(item.tmid, item.id);
|
|
|
|
}
|
2019-05-20 20:43:50 +00:00
|
|
|
navigation.push('RoomView', {
|
2019-09-16 20:26:32 +00:00
|
|
|
rid: item.subscription.id, tmid: item.tmid, name: item.tmsg, t: 'thread'
|
2019-05-20 20:43:50 +00:00
|
|
|
});
|
|
|
|
} else if (item.tlm) {
|
|
|
|
navigation.push('RoomView', {
|
2019-09-16 20:26:32 +00:00
|
|
|
rid: item.subscription.id, tmid: item.id, name: item.msg, t: 'thread'
|
2019-05-20 20:43:50 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}, 1000, true)
|
|
|
|
|
|
|
|
replyBroadcast = (message) => {
|
|
|
|
const { replyBroadcast } = this.props;
|
|
|
|
replyBroadcast(message);
|
|
|
|
}
|
|
|
|
|
2019-04-17 17:01:03 +00:00
|
|
|
handleConnected = () => {
|
|
|
|
this.init();
|
|
|
|
EventEmitter.removeListener('connected', this.handleConnected);
|
|
|
|
}
|
|
|
|
|
2018-10-23 21:39:48 +00:00
|
|
|
internalSetState = (...args) => {
|
2019-05-03 14:54:57 +00:00
|
|
|
if (!this.mounted) {
|
|
|
|
return;
|
|
|
|
}
|
2018-10-23 21:39:48 +00:00
|
|
|
this.setState(...args);
|
|
|
|
}
|
|
|
|
|
2019-04-17 17:01:03 +00:00
|
|
|
sendMessage = (message, tmid) => {
|
2019-07-29 16:33:28 +00:00
|
|
|
const { user } = this.props;
|
|
|
|
RocketChat.sendMessage(this.rid, message, this.tmid || tmid, user).then(() => {
|
2019-03-27 20:06:57 +00:00
|
|
|
this.setLastOpen(null);
|
2018-02-08 14:08:50 +00:00
|
|
|
});
|
|
|
|
};
|
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;
|
|
|
|
}
|
|
|
|
|
2019-04-30 19:31:51 +00:00
|
|
|
getMessages = async() => {
|
2019-04-17 17:01:03 +00:00
|
|
|
const { room } = this.state;
|
|
|
|
try {
|
|
|
|
if (room.lastOpen) {
|
2019-04-30 19:31:51 +00:00
|
|
|
await RocketChat.loadMissedMessages(room);
|
2019-04-17 17:01:03 +00:00
|
|
|
} else {
|
2019-04-30 19:31:51 +00:00
|
|
|
await RocketChat.loadMessagesForRoom(room);
|
2019-04-17 17:01:03 +00:00
|
|
|
}
|
2019-04-30 19:31:51 +00:00
|
|
|
return Promise.resolve();
|
2019-04-17 17:01:03 +00:00
|
|
|
} catch (e) {
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2019-04-17 17:01:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-24 18:36:29 +00:00
|
|
|
getThreadMessages = () => {
|
|
|
|
try {
|
2019-09-16 20:26:32 +00:00
|
|
|
return RocketChat.loadThreadMessages({ tmid: this.tmid, rid: this.rid });
|
2019-04-24 18:36:29 +00:00
|
|
|
} catch (e) {
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2019-04-24 18:36:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
getCustomEmoji = (name) => {
|
|
|
|
const { customEmojis } = this.props;
|
|
|
|
const emoji = customEmojis[name];
|
|
|
|
if (emoji) {
|
|
|
|
return emoji;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-05-20 20:43:50 +00:00
|
|
|
setLastOpen = lastOpen => this.setState({ lastOpen });
|
2019-03-27 20:06:57 +00:00
|
|
|
|
2017-09-21 17:08:00 +00:00
|
|
|
joinRoom = async() => {
|
2018-05-18 17:55:08 +00:00
|
|
|
try {
|
2019-06-20 19:02:50 +00:00
|
|
|
await RocketChat.joinRoom(this.rid, this.t);
|
|
|
|
this.internalSetState({
|
|
|
|
joined: true
|
|
|
|
});
|
2018-05-18 17:55:08 +00:00
|
|
|
} catch (e) {
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2018-05-18 17:55:08 +00:00
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
}
|
2017-08-10 16:16:32 +00:00
|
|
|
|
2019-04-17 17:01:03 +00:00
|
|
|
// eslint-disable-next-line react/sort-comp
|
2019-09-16 20:26:32 +00:00
|
|
|
fetchThreadName = async(tmid, messageId) => {
|
2019-04-17 17:01:03 +00:00
|
|
|
try {
|
2019-09-16 20:26:32 +00:00
|
|
|
const { room } = this.state;
|
|
|
|
const db = database.active;
|
|
|
|
const threadCollection = db.collections.get('threads');
|
|
|
|
const messageCollection = db.collections.get('messages');
|
|
|
|
const messageRecord = await messageCollection.find(messageId);
|
|
|
|
let threadRecord;
|
|
|
|
try {
|
|
|
|
threadRecord = await threadCollection.find(tmid);
|
|
|
|
} catch (error) {
|
|
|
|
console.log('Thread not found. We have to search for it.');
|
|
|
|
}
|
|
|
|
if (threadRecord) {
|
|
|
|
await db.action(async() => {
|
|
|
|
await messageRecord.update((m) => {
|
|
|
|
m.tmsg = threadRecord.msg || (threadRecord.attachments && threadRecord.attachments.length && threadRecord.attachments[0].title);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
const thread = await RocketChat.getSingleMessage(tmid);
|
|
|
|
await db.action(async() => {
|
|
|
|
await db.batch(
|
|
|
|
threadCollection.prepareCreate((t) => {
|
|
|
|
t._raw = sanitizedRaw({ id: thread._id }, threadCollection.schema);
|
|
|
|
t.subscription.set(room);
|
|
|
|
Object.assign(t, thread);
|
|
|
|
}),
|
|
|
|
messageRecord.prepareUpdate((m) => {
|
|
|
|
m.tmsg = thread.msg || (thread.attachments && thread.attachments.length && thread.attachments[0].title);
|
|
|
|
})
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
2019-08-23 13:18:47 +00:00
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
2019-04-17 17:01:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-15 19:33:30 +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' });
|
2019-05-15 19:33:30 +00:00
|
|
|
} catch (e) {
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2019-05-15 19:33:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-22 18:08:07 +00:00
|
|
|
navToRoomInfo = (navParam) => {
|
|
|
|
const { navigation, user } = this.props;
|
|
|
|
if (navParam.rid === user.id) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
navigation.navigate('RoomInfoView', navParam);
|
|
|
|
}
|
|
|
|
|
2019-09-18 17:32:12 +00:00
|
|
|
callJitsi = () => {
|
|
|
|
const { room } = this.state;
|
|
|
|
const { jitsiTimeout } = room;
|
|
|
|
if (jitsiTimeout < Date.now()) {
|
|
|
|
showErrorAlert(I18n.t('Call_already_ended'));
|
|
|
|
} else {
|
2019-09-25 22:13:39 +00:00
|
|
|
RocketChat.callJitsi(this.rid);
|
2019-09-18 17:32:12 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
get isReadOnly() {
|
|
|
|
const { room } = this.state;
|
|
|
|
const { user } = this.props;
|
|
|
|
return isReadOnly(room, user);
|
|
|
|
}
|
|
|
|
|
2018-09-25 19:28:42 +00:00
|
|
|
renderItem = (item, previousItem) => {
|
2019-06-28 17:02:30 +00:00
|
|
|
const { room, lastOpen, canAutoTranslate } = this.state;
|
2019-05-20 20:43:50 +00:00
|
|
|
const {
|
2019-06-10 18:36:31 +00:00
|
|
|
user, Message_GroupingPeriod, Message_TimeFormat, useRealName, baseUrl, useMarkdown, Message_Read_Receipt_Enabled
|
2019-05-20 20:43:50 +00:00
|
|
|
} = 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 = (
|
2018-09-25 19:28:42 +00:00
|
|
|
<Message
|
|
|
|
item={item}
|
|
|
|
user={user}
|
|
|
|
archived={room.archived}
|
|
|
|
broadcast={room.broadcast}
|
2019-04-17 17:01:03 +00:00
|
|
|
status={item.status}
|
2019-09-16 20:26:32 +00:00
|
|
|
isThreadRoom={!!this.tmid}
|
2019-04-17 17:01:03 +00:00
|
|
|
previousItem={previousItem}
|
|
|
|
fetchThreadName={this.fetchThreadName}
|
2018-09-25 19:28:42 +00:00
|
|
|
onReactionPress={this.onReactionPress}
|
2019-05-20 20:43:50 +00:00
|
|
|
onReactionLongPress={this.onReactionLongPress}
|
2018-09-25 19:28:42 +00:00
|
|
|
onLongPress={this.onMessageLongPress}
|
2019-04-08 12:35:28 +00:00
|
|
|
onDiscussionPress={this.onDiscussionPress}
|
2019-05-20 20:43:50 +00:00
|
|
|
onThreadPress={this.onThreadPress}
|
|
|
|
onOpenFileModal={this.onOpenFileModal}
|
2019-09-16 20:26:32 +00:00
|
|
|
reactionInit={this.onReactionInit}
|
2019-05-20 20:43:50 +00:00
|
|
|
replyBroadcast={this.replyBroadcast}
|
|
|
|
errorActionsShow={this.errorActionsShow}
|
|
|
|
baseUrl={baseUrl}
|
|
|
|
Message_GroupingPeriod={Message_GroupingPeriod}
|
|
|
|
timeFormat={Message_TimeFormat}
|
|
|
|
useRealName={useRealName}
|
2019-05-21 12:12:15 +00:00
|
|
|
useMarkdown={useMarkdown}
|
2019-06-10 18:36:31 +00:00
|
|
|
isReadReceiptEnabled={Message_Read_Receipt_Enabled}
|
2019-06-28 17:02:30 +00:00
|
|
|
autoTranslateRoom={canAutoTranslate && room.autoTranslate}
|
|
|
|
autoTranslateLanguage={room.autoTranslateLanguage}
|
2019-08-22 18:08:07 +00:00
|
|
|
navToRoomInfo={this.navToRoomInfo}
|
2019-09-16 20:26:32 +00:00
|
|
|
getCustomEmoji={this.getCustomEmoji}
|
2019-09-18 17:32:12 +00:00
|
|
|
callJitsi={this.callJitsi}
|
2018-09-25 19:28:42 +00:00
|
|
|
/>
|
|
|
|
);
|
2019-04-17 17:01:03 +00:00
|
|
|
|
|
|
|
if (showUnreadSeparator || dateSeparator) {
|
|
|
|
return (
|
2019-09-24 20:26:56 +00:00
|
|
|
<>
|
2019-04-17 17:01:03 +00:00
|
|
|
{message}
|
|
|
|
<Separator
|
|
|
|
ts={dateSeparator}
|
|
|
|
unread={showUnreadSeparator}
|
|
|
|
/>
|
2019-09-24 20:26:56 +00:00
|
|
|
</>
|
2019-04-17 17:01:03 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return message;
|
2018-09-25 19:28:42 +00:00
|
|
|
}
|
2017-08-07 00:34:35 +00:00
|
|
|
|
2017-08-10 16:16:32 +00:00
|
|
|
renderFooter = () => {
|
2019-09-16 20:26:32 +00:00
|
|
|
const {
|
|
|
|
joined, room, selectedMessage, editing, replying, replyWithMention
|
|
|
|
} = this.state;
|
|
|
|
const { navigation } = this.props;
|
2018-09-25 19:28:42 +00:00
|
|
|
|
2019-04-17 17:01:03 +00:00
|
|
|
if (!joined && !this.tmid) {
|
2018-09-19 14:18:32 +00:00
|
|
|
return (
|
2018-12-21 10:55:35 +00:00
|
|
|
<View style={styles.joinRoomContainer} key='room-view-join' testID='room-view-join'>
|
2018-09-19 14:18:32 +00:00
|
|
|
<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}
|
2018-09-19 14:18:32 +00:00
|
|
|
>
|
2018-12-21 10:55:35 +00:00
|
|
|
<Text style={styles.joinRoomText} testID='room-view-join-button'>{I18n.t('Join')}</Text>
|
2018-09-19 14:18:32 +00:00
|
|
|
</RectButton>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
if (this.isReadOnly) {
|
2018-01-17 16:42:30 +00:00
|
|
|
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>
|
2018-01-17 16:42:30 +00:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
2019-07-18 17:44:02 +00:00
|
|
|
if (isBlocked(room)) {
|
2018-05-24 20:17:45 +00:00
|
|
|
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>
|
2018-05-24 20:17:45 +00:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
2019-04-24 18:36:29 +00:00
|
|
|
return (
|
|
|
|
<MessageBox
|
|
|
|
ref={this.messagebox}
|
|
|
|
onSubmit={this.sendMessage}
|
|
|
|
rid={this.rid}
|
|
|
|
tmid={this.tmid}
|
|
|
|
roomType={room.t}
|
2019-10-28 20:51:46 +00:00
|
|
|
isFocused={navigation.isFocused}
|
2019-09-16 20:26:32 +00:00
|
|
|
message={selectedMessage}
|
|
|
|
editing={editing}
|
|
|
|
editRequest={this.onEditRequest}
|
|
|
|
editCancel={this.onEditCancel}
|
|
|
|
replying={replying}
|
|
|
|
replyWithMention={replyWithMention}
|
|
|
|
replyCancel={this.onReplyCancel}
|
|
|
|
getCustomEmoji={this.getCustomEmoji}
|
2019-04-24 18:36:29 +00:00
|
|
|
/>
|
|
|
|
);
|
2017-09-25 13:15:28 +00:00
|
|
|
};
|
2017-08-09 20:08:50 +00:00
|
|
|
|
2019-04-17 17:01:03 +00:00
|
|
|
renderActions = () => {
|
|
|
|
const {
|
2019-09-16 20:26:32 +00:00
|
|
|
room, selectedMessage, showActions, showErrorActions, joined
|
|
|
|
} = this.state;
|
|
|
|
const {
|
|
|
|
user, navigation
|
2019-04-17 17:01:03 +00:00
|
|
|
} = this.props;
|
|
|
|
if (!navigation.isFocused()) {
|
|
|
|
return null;
|
|
|
|
}
|
2018-07-18 20:34:59 +00:00
|
|
|
return (
|
2019-09-16 20:26:32 +00:00
|
|
|
<>
|
|
|
|
{joined && showActions
|
|
|
|
? (
|
|
|
|
<MessageActions
|
|
|
|
tmid={this.tmid}
|
|
|
|
room={room}
|
|
|
|
user={user}
|
|
|
|
message={selectedMessage}
|
|
|
|
actionsHide={this.onActionsHide}
|
|
|
|
editInit={this.onEditInit}
|
|
|
|
replyInit={this.onReplyInit}
|
|
|
|
reactionInit={this.onReactionInit}
|
|
|
|
isReadOnly={this.isReadOnly}
|
|
|
|
/>
|
|
|
|
)
|
2019-04-17 17:01:03 +00:00
|
|
|
: null
|
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
{showErrorActions ? (
|
|
|
|
<MessageErrorActions
|
2019-10-08 12:36:15 +00:00
|
|
|
tmid={this.tmid}
|
2019-09-16 20:26:32 +00:00
|
|
|
message={selectedMessage}
|
|
|
|
actionsHide={this.onErrorActionsHide}
|
|
|
|
/>
|
|
|
|
) : null}
|
|
|
|
</>
|
2018-07-18 20:34:59 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-08-04 00:34:37 +00:00
|
|
|
render() {
|
2019-04-08 12:35:28 +00:00
|
|
|
console.count(`${ this.constructor.name }.render calls`);
|
2019-05-20 20:43:50 +00:00
|
|
|
const {
|
2019-09-16 20:26:32 +00:00
|
|
|
room, photoModalVisible, reactionsModalVisible, selectedAttachment, selectedMessage, loading, reacting
|
2019-05-20 20:43:50 +00:00
|
|
|
} = this.state;
|
|
|
|
const { user, baseUrl } = this.props;
|
2019-04-17 17:01:03 +00:00
|
|
|
const { rid, t } = room;
|
2018-09-25 19:28:42 +00:00
|
|
|
|
2017-08-04 00:34:37 +00:00
|
|
|
return (
|
2019-08-07 13:51:34 +00:00
|
|
|
<SafeAreaView style={styles.container} testID='room-view' forceInset={{ vertical: 'never' }}>
|
2019-03-12 16:23:06 +00:00
|
|
|
<StatusBar />
|
2019-09-16 20:26:32 +00:00
|
|
|
<List
|
|
|
|
rid={rid}
|
|
|
|
t={t}
|
|
|
|
tmid={this.tmid}
|
|
|
|
room={room}
|
|
|
|
renderRow={this.renderItem}
|
|
|
|
loading={loading}
|
|
|
|
animated={this.beginAnimating}
|
|
|
|
/>
|
2019-04-17 17:01:03 +00:00
|
|
|
{this.renderFooter()}
|
|
|
|
{this.renderActions()}
|
2019-09-16 20:26:32 +00:00
|
|
|
<ReactionPicker
|
|
|
|
show={reacting}
|
|
|
|
message={selectedMessage}
|
|
|
|
onEmojiSelected={this.onReactionPress}
|
|
|
|
reactionClose={this.onReactionClose}
|
|
|
|
/>
|
2019-07-29 16:33:28 +00:00
|
|
|
<UploadProgress rid={this.rid} user={user} baseUrl={baseUrl} />
|
2019-05-20 20:43:50 +00:00
|
|
|
<FileModal
|
|
|
|
attachment={selectedAttachment}
|
|
|
|
isVisible={photoModalVisible}
|
|
|
|
onClose={this.onCloseFileModal}
|
|
|
|
user={user}
|
|
|
|
baseUrl={baseUrl}
|
|
|
|
/>
|
|
|
|
<ReactionsModal
|
|
|
|
message={selectedMessage}
|
|
|
|
isVisible={reactionsModalVisible}
|
|
|
|
user={user}
|
|
|
|
baseUrl={baseUrl}
|
2019-09-16 20:26:32 +00:00
|
|
|
onClose={this.onCloseReactionsModal}
|
|
|
|
getCustomEmoji={this.getCustomEmoji}
|
2019-05-20 20:43:50 +00:00
|
|
|
/>
|
2018-08-01 19:35:06 +00:00
|
|
|
</SafeAreaView>
|
2017-08-04 00:34:37 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-08-07 13:51:34 +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
|
|
|
|
},
|
|
|
|
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,
|
2019-09-16 20:26:32 +00:00
|
|
|
customEmojis: state.customEmojis,
|
2019-08-07 13:51:34 +00:00
|
|
|
baseUrl: state.settings.baseUrl || state.server ? state.server.server : '',
|
|
|
|
Message_Read_Receipt_Enabled: state.settings.Message_Read_Receipt_Enabled
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
replyBroadcast: message => dispatch(replyBroadcastAction(message))
|
|
|
|
});
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(RoomView);
|