vn-verdnaturachat/app/views/RoomView/index.js

493 lines
14 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';
2019-03-12 16:23:06 +00:00
import { SafeAreaView } 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';
2017-08-13 01:35:09 +00:00
2019-04-08 12:35:28 +00:00
import {
toggleReactionPicker as toggleReactionPickerAction,
actionsShow as actionsShowAction,
editCancel as editCancelAction,
replyCancel as replyCancelAction
} from '../../actions/messages';
import LoggedView from '../View';
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';
2018-10-02 12:33:21 +00:00
import ConnectionBadge from '../../containers/ConnectionBadge';
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-03-29 19:36:07 +00:00
import { COLOR_WHITE } 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';
@connect(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,
showActions: state.messages.showActions,
2018-12-05 20:52:08 +00:00
showErrorActions: state.messages.showErrorActions,
2019-04-08 12:35:28 +00:00
appState: state.app.ready && state.app.foreground ? 'foreground' : 'background',
2019-04-17 17:01:03 +00:00
useRealName: state.settings.UI_Use_Real_Name,
isAuthenticated: state.login.isAuthenticated
}), dispatch => ({
2019-04-08 12:35:28 +00:00
editCancel: () => dispatch(editCancelAction()),
replyCancel: () => dispatch(replyCancelAction()),
toggleReactionPicker: message => dispatch(toggleReactionPickerAction(message)),
2019-04-17 17:01:03 +00:00
actionsShow: actionMessage => dispatch(actionsShowAction(actionMessage))
}))
/** @extends React.Component */
export default class RoomView extends LoggedView {
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');
return {
2019-04-17 17:01:03 +00:00
headerTitleContainerStyle: styles.headerTitleContainerStyle,
headerTitle: (
<RoomHeaderView rid={rid} prid={prid} tmid={tmid} title={title} type={t} widthOffset={tmid ? 95 : 130} />
),
headerRight: <RightButtons rid={rid} tmid={tmid} t={t} navigation={navigation} />
};
}
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,
toggleReactionPicker: PropTypes.func.isRequired,
actionsShow: PropTypes.func,
2019-04-08 12:35:28 +00:00
editCancel: PropTypes.func,
replyCancel: PropTypes.func
};
2017-08-05 18:16:32 +00:00
2017-08-04 00:34:37 +00:00
constructor(props) {
super('RoomView', 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);
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 },
2019-03-27 20:06:57 +00:00
lastOpen: null
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();
2019-04-17 17:01:03 +00:00
safeAddListener(this.rooms, this.updateRoom);
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 });
}
2019-04-17 17:01:03 +00:00
if (isAuthenticated) {
this.init();
} else {
EventEmitter.addEventListener('connected', this.handleConnected);
}
2019-04-08 12:35:28 +00:00
});
console.timeEnd(`${ this.constructor.name } mount`);
}
shouldComponentUpdate(nextProps, nextState) {
const {
2019-04-17 17:01:03 +00:00
room, joined, lastOpen
} = 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 (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 (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() {
2019-04-08 12:35:28 +00:00
if (this.messagebox && this.messagebox.current && this.messagebox.current.text) {
const { text } = this.messagebox.current;
2019-04-17 17:01:03 +00:00
const [room] = this.rooms;
if (room) {
database.write(() => {
room.draftMessage = text;
});
}
2019-04-08 12:35:28 +00:00
}
this.rooms.removeAllListeners();
2019-04-08 12:35:28 +00:00
if (this.sub && this.sub.stop) {
this.sub.stop();
}
if (this.beginAnimatingTimeout) {
clearTimeout(this.beginAnimatingTimeout);
}
const { editCancel, replyCancel } = this.props;
editCancel();
replyCancel();
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();
}
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) {
RocketChat.loadThreadMessages({ tmid: this.tmid, t: this.t });
} 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);
}
}
});
} catch (e) {
console.log('TCL: init -> e', e);
log('RoomView.init', e);
}
}
onMessageLongPress = (message) => {
const { actionsShow } = this.props;
actionsShow(message);
}
onReactionPress = (shortname, messageId) => {
const { actionMessage, toggleReactionPicker } = this.props;
try {
if (!messageId) {
RocketChat.setReaction(shortname, actionMessage._id);
return toggleReactionPicker();
}
RocketChat.setReaction(shortname, messageId);
} catch (e) {
log('RoomView.onReactionPress', e);
}
};
2017-08-04 00:34:37 +00:00
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-04-17 17:01:03 +00:00
handleConnected = () => {
this.init();
EventEmitter.removeListener('connected', this.handleConnected);
}
internalSetState = (...args) => {
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) => {
LayoutAnimation.easeInEaseOut();
2019-04-17 17:01:03 +00:00
RocketChat.sendMessage(this.rid, message, this.tmid || tmid).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;
}
2019-04-17 17:01:03 +00:00
getMessages = () => {
const { room } = this.state;
try {
if (room.lastOpen) {
return RocketChat.loadMissedMessages(room);
} else {
return RocketChat.loadMessagesForRoom(room);
}
} catch (e) {
console.log('TCL: getMessages -> e', e);
log('getMessages', e);
}
}
2019-03-27 20:06:57 +00:00
setLastOpen = lastOpen => this.setState({ lastOpen });
joinRoom = async() => {
try {
2019-03-12 16:23:06 +00:00
const result = await RocketChat.joinRoom(this.rid);
2018-12-05 20:52:08 +00:00
if (result.success) {
this.internalSetState({
joined: true
});
}
} catch (e) {
log('joinRoom', e);
}
2017-08-10 16:16:32 +00:00
};
isOwner = () => {
const { room } = this.state;
return room && room.roles && Array.from(Object.keys(room.roles), i => room.roles[i].value).includes('owner');
}
isMuted = () => {
const { room } = this.state;
const { user } = this.props;
2019-02-07 15:48:10 +00:00
return room && room.muted && !!Array.from(Object.keys(room.muted), i => room.muted[i].value).includes(user.username);
}
isReadOnly = () => {
const { room } = this.state;
2019-02-07 15:48:10 +00:00
return (room.ro && !room.broadcast) || this.isMuted() || room.archived;
}
isBlocked = () => {
const { room } = this.state;
if (room) {
const { t, blocked, blocker } = room;
if (t === 'd' && (blocked || blocker)) {
return true;
}
}
return false;
}
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) {
console.log('TCL: fetchThreadName -> error', error);
}
}
renderItem = (item, previousItem) => {
2019-03-27 20:06:57 +00:00
const { room, lastOpen } = this.state;
2019-04-17 17:01:03 +00:00
const { user, navigation } = 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}
navigation={navigation}
fetchThreadName={this.fetchThreadName}
onReactionPress={this.onReactionPress}
onLongPress={this.onMessageLongPress}
2019-04-08 12:35:28 +00:00
onDiscussionPress={this.onDiscussionPress}
/>
);
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-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-02-07 15:48:10 +00:00
if (this.isReadOnly()) {
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>
);
}
if (this.isBlocked()) {
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>
);
}
2019-04-08 12:35:28 +00:00
return <MessageBox ref={this.messagebox} onSubmit={this.sendMessage} rid={this.rid} roomType={room.t} />;
};
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
? <MessageActions room={room} user={user} />
: 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 } = this.state;
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={{ bottom: '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} />
<UploadProgress rid={this.rid} />
2018-10-02 12:33:21 +00:00
<ConnectionBadge />
</SafeAreaView>
2017-08-04 00:34:37 +00:00
);
}
}