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';
|
2018-09-25 19:28:42 +00:00
|
|
|
import {
|
2019-01-29 19:52:56 +00:00
|
|
|
Text, View, LayoutAnimation, ActivityIndicator
|
2018-09-25 19:28:42 +00:00
|
|
|
} from 'react-native';
|
2019-01-31 16:08:38 +00:00
|
|
|
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';
|
2017-08-13 01:35:09 +00:00
|
|
|
|
2019-03-27 20:06:57 +00:00
|
|
|
import { openRoom as openRoomAction, closeRoom as closeRoomAction } from '../../actions/room';
|
2018-09-25 19:28:42 +00:00
|
|
|
import { toggleReactionPicker as toggleReactionPickerAction, actionsShow as actionsShowAction } from '../../actions/messages';
|
2018-04-03 16:24:59 +00:00
|
|
|
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';
|
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-01-29 19:52:56 +00:00
|
|
|
import { isIOS } from '../../utils/deviceInfo';
|
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-03-12 16:23:06 +00:00
|
|
|
import { CustomHeaderButtons, Item } from '../../containers/HeaderButton';
|
|
|
|
import RoomHeaderView from './Header';
|
|
|
|
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';
|
2018-09-26 13:56:36 +00:00
|
|
|
|
2018-07-10 13:40:32 +00:00
|
|
|
@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,
|
|
|
|
appState: state.app.ready && state.app.foreground ? 'foreground' : 'background'
|
2018-07-10 13:40:32 +00:00
|
|
|
}), dispatch => ({
|
2018-09-25 19:28:42 +00:00
|
|
|
openRoom: room => dispatch(openRoomAction(room)),
|
|
|
|
toggleReactionPicker: message => dispatch(toggleReactionPickerAction(message)),
|
|
|
|
actionsShow: actionMessage => dispatch(actionsShowAction(actionMessage)),
|
|
|
|
closeRoom: () => dispatch(closeRoomAction())
|
2018-07-10 13:40:32 +00:00
|
|
|
}))
|
|
|
|
/** @extends React.Component */
|
2018-04-03 16:24:59 +00:00
|
|
|
export default class RoomView extends LoggedView {
|
2019-03-12 16:23:06 +00:00
|
|
|
static navigationOptions = ({ navigation }) => {
|
|
|
|
const rid = navigation.getParam('rid');
|
|
|
|
const t = navigation.getParam('t');
|
|
|
|
const f = navigation.getParam('f');
|
|
|
|
const toggleFav = navigation.getParam('toggleFav', () => {});
|
|
|
|
const starIcon = f ? 'Star-filled' : 'star';
|
2018-10-23 21:39:48 +00:00
|
|
|
return {
|
2019-03-12 16:23:06 +00:00
|
|
|
headerTitle: <RoomHeaderView />,
|
|
|
|
headerRight: t === 'l'
|
|
|
|
? null
|
|
|
|
: (
|
|
|
|
<CustomHeaderButtons>
|
|
|
|
<Item title='star' iconName={starIcon} onPress={toggleFav} testID='room-view-header-star' />
|
|
|
|
<Item title='more' iconName='menu' onPress={() => navigation.navigate('RoomActionsView', { rid })} testID='room-view-header-actions' />
|
|
|
|
</CustomHeaderButtons>
|
|
|
|
)
|
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,
|
2017-11-20 22:18:00 +00:00
|
|
|
openRoom: PropTypes.func.isRequired,
|
2018-07-10 13:40:32 +00:00
|
|
|
user: PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired,
|
|
|
|
username: PropTypes.string.isRequired,
|
|
|
|
token: PropTypes.string.isRequired
|
|
|
|
}),
|
|
|
|
showActions: PropTypes.bool,
|
|
|
|
showErrorActions: PropTypes.bool,
|
2018-01-30 19:48:26 +00:00
|
|
|
actionMessage: PropTypes.object,
|
2018-12-05 20:52:08 +00:00
|
|
|
appState: PropTypes.string,
|
2018-02-19 21:19:39 +00:00
|
|
|
toggleReactionPicker: PropTypes.func.isRequired,
|
2018-07-10 13:40:32 +00:00
|
|
|
actionsShow: PropTypes.func,
|
2018-09-25 19:28:42 +00:00
|
|
|
closeRoom: 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) {
|
2018-04-03 16:24:59 +00:00
|
|
|
super('RoomView', props);
|
2019-03-12 16:23:06 +00:00
|
|
|
this.rid = props.navigation.getParam('rid');
|
2018-01-17 16:42:30 +00:00
|
|
|
this.rooms = database.objects('subscriptions').filtered('rid = $0', this.rid);
|
2017-08-07 18:42:02 +00:00
|
|
|
this.state = {
|
2018-07-18 20:34:59 +00:00
|
|
|
loaded: false,
|
2018-09-19 14:18:32 +00:00
|
|
|
joined: this.rooms.length > 0,
|
2019-03-27 20:06:57 +00:00
|
|
|
room: {},
|
|
|
|
lastOpen: null
|
2017-08-07 18:42:02 +00:00
|
|
|
};
|
2019-03-27 20:06:57 +00:00
|
|
|
this.beginAnimating = false;
|
2018-01-30 19:48:26 +00:00
|
|
|
this.onReactionPress = this.onReactionPress.bind(this);
|
2019-03-27 20:06:57 +00:00
|
|
|
setTimeout(() => {
|
|
|
|
this.beginAnimating = true;
|
|
|
|
}, 300);
|
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-03-12 16:23:06 +00:00
|
|
|
const { navigation } = this.props;
|
|
|
|
navigation.setParams({ toggleFav: this.toggleFav });
|
|
|
|
|
2018-12-05 20:52:08 +00:00
|
|
|
if (this.rooms.length === 0 && this.rid) {
|
2019-03-12 16:23:06 +00:00
|
|
|
const { rid, name, t } = navigation.state.params;
|
2018-12-21 10:55:35 +00:00
|
|
|
this.setState(
|
|
|
|
{ room: { rid, name, t } },
|
|
|
|
() => this.updateRoom()
|
|
|
|
);
|
2018-12-05 20:52:08 +00:00
|
|
|
}
|
2019-04-04 18:08:40 +00:00
|
|
|
safeAddListener(this.rooms, this.updateRoom);
|
2018-10-23 21:39:48 +00:00
|
|
|
this.internalSetState({ loaded: true });
|
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) {
|
2018-09-26 13:56:36 +00:00
|
|
|
const {
|
2018-12-21 10:55:35 +00:00
|
|
|
room, loaded, joined
|
2018-09-26 13:56:36 +00:00
|
|
|
} = this.state;
|
2018-12-05 20:52:08 +00:00
|
|
|
const { showActions, showErrorActions, appState } = this.props;
|
2018-09-26 13:56:36 +00:00
|
|
|
|
|
|
|
if (room.ro !== nextState.room.ro) {
|
|
|
|
return true;
|
2018-10-23 21:39:48 +00:00
|
|
|
} else if (room.f !== nextState.room.f) {
|
|
|
|
return true;
|
2018-12-12 15:15:10 +00:00
|
|
|
} 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;
|
2018-09-26 13:56:36 +00:00
|
|
|
} else if (loaded !== nextState.loaded) {
|
|
|
|
return true;
|
|
|
|
} else if (joined !== nextState.joined) {
|
|
|
|
return true;
|
|
|
|
} else if (showActions !== nextProps.showActions) {
|
|
|
|
return true;
|
2018-11-16 11:06:29 +00:00
|
|
|
} 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;
|
2018-09-26 13:56:36 +00:00
|
|
|
}
|
|
|
|
return false;
|
2017-09-21 17:08:00 +00:00
|
|
|
}
|
2018-07-10 13:40:32 +00:00
|
|
|
|
|
|
|
componentDidUpdate(prevProps, prevState) {
|
2018-09-25 19:28:42 +00:00
|
|
|
const { room } = this.state;
|
2019-03-12 16:23:06 +00:00
|
|
|
const { appState, navigation } = this.props;
|
2018-09-25 19:28:42 +00:00
|
|
|
|
|
|
|
if (prevState.room.f !== room.f) {
|
2019-03-12 16:23:06 +00:00
|
|
|
navigation.setParams({ f: room.f });
|
2018-12-05 20:52:08 +00:00
|
|
|
} else if (appState === 'foreground' && appState !== prevProps.appState) {
|
|
|
|
RocketChat.loadMissedMessages(room).catch(e => console.log(e));
|
|
|
|
RocketChat.readMessages(room.rid).catch(e => console.log(e));
|
2018-07-10 13:40:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 00:34:35 +00:00
|
|
|
componentWillUnmount() {
|
2018-09-25 19:28:42 +00:00
|
|
|
const { closeRoom } = this.props;
|
|
|
|
closeRoom();
|
2018-12-21 10:55:35 +00:00
|
|
|
this.rooms.removeAllListeners();
|
2017-08-04 00:34:37 +00:00
|
|
|
}
|
|
|
|
|
2018-02-19 21:19:39 +00:00
|
|
|
onMessageLongPress = (message) => {
|
2018-09-25 19:28:42 +00:00
|
|
|
const { actionsShow } = this.props;
|
|
|
|
actionsShow(message);
|
2018-02-19 21:19:39 +00:00
|
|
|
}
|
|
|
|
|
2018-01-30 19:48:26 +00:00
|
|
|
onReactionPress = (shortname, messageId) => {
|
2018-09-25 19:28:42 +00:00
|
|
|
const { actionMessage, toggleReactionPicker } = this.props;
|
2018-05-18 17:55:08 +00:00
|
|
|
try {
|
|
|
|
if (!messageId) {
|
2018-09-25 19:28:42 +00:00
|
|
|
RocketChat.setReaction(shortname, actionMessage._id);
|
|
|
|
return toggleReactionPicker();
|
2018-05-18 17:55:08 +00:00
|
|
|
}
|
|
|
|
RocketChat.setReaction(shortname, messageId);
|
|
|
|
} catch (e) {
|
|
|
|
log('RoomView.onReactionPress', e);
|
2018-01-30 19:48:26 +00:00
|
|
|
}
|
|
|
|
};
|
2017-08-04 00:34:37 +00:00
|
|
|
|
2018-10-23 21:39:48 +00:00
|
|
|
internalSetState = (...args) => {
|
2019-03-27 20:06:57 +00:00
|
|
|
if (isIOS && this.beginAnimating) {
|
2018-10-29 13:54:23 +00:00
|
|
|
LayoutAnimation.easeInEaseOut();
|
|
|
|
}
|
2018-10-23 21:39:48 +00:00
|
|
|
this.setState(...args);
|
|
|
|
}
|
|
|
|
|
2018-12-21 10:55:35 +00:00
|
|
|
// eslint-disable-next-line react/sort-comp
|
2018-10-23 21:39:48 +00:00
|
|
|
updateRoom = () => {
|
2019-03-27 20:06:57 +00:00
|
|
|
const { openRoom } = this.props;
|
2018-09-25 19:28:42 +00:00
|
|
|
|
2018-05-07 20:43:26 +00:00
|
|
|
if (this.rooms.length > 0) {
|
2018-05-18 17:55:08 +00:00
|
|
|
const { room: prevRoom } = this.state;
|
2018-10-16 20:30:04 +00:00
|
|
|
const room = JSON.parse(JSON.stringify(this.rooms[0] || {}));
|
2018-10-23 21:39:48 +00:00
|
|
|
this.internalSetState({ room });
|
2018-07-18 20:34:59 +00:00
|
|
|
|
2018-12-21 10:55:35 +00:00
|
|
|
if (!prevRoom._id) {
|
2018-09-25 19:28:42 +00:00
|
|
|
openRoom({
|
2018-07-18 20:34:59 +00:00
|
|
|
...room
|
2018-05-18 17:55:08 +00:00
|
|
|
});
|
2018-07-18 20:34:59 +00:00
|
|
|
if (room.alert || room.unread || room.userMentions) {
|
2019-03-27 20:06:57 +00:00
|
|
|
this.setLastOpen(room.ls);
|
2018-05-18 17:55:08 +00:00
|
|
|
} else {
|
2019-03-27 20:06:57 +00:00
|
|
|
this.setLastOpen(null);
|
2018-05-18 17:55:08 +00:00
|
|
|
}
|
|
|
|
}
|
2018-09-19 14:18:32 +00:00
|
|
|
} else {
|
2018-12-05 20:52:08 +00:00
|
|
|
const { room } = this.state;
|
2018-12-21 10:55:35 +00:00
|
|
|
if (room.rid) {
|
|
|
|
openRoom(room);
|
|
|
|
this.internalSetState({ joined: false });
|
|
|
|
}
|
2018-05-07 20:43:26 +00:00
|
|
|
}
|
2018-01-17 16:42:30 +00:00
|
|
|
}
|
|
|
|
|
2019-03-12 16:23:06 +00:00
|
|
|
toggleFav = () => {
|
|
|
|
try {
|
|
|
|
const { room } = this.state;
|
|
|
|
const { rid, f } = room;
|
|
|
|
RocketChat.toggleFavorite(rid, !f);
|
|
|
|
} catch (e) {
|
|
|
|
log('toggleFavorite', e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-08 14:08:50 +00:00
|
|
|
sendMessage = (message) => {
|
2018-06-20 13:40:33 +00:00
|
|
|
LayoutAnimation.easeInEaseOut();
|
2018-02-08 14:08:50 +00:00
|
|
|
RocketChat.sendMessage(this.rid, message).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-03-27 20:06:57 +00:00
|
|
|
setLastOpen = lastOpen => this.setState({ lastOpen });
|
|
|
|
|
2017-09-21 17:08:00 +00:00
|
|
|
joinRoom = async() => {
|
2018-05-18 17:55:08 +00:00
|
|
|
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
|
|
|
|
});
|
|
|
|
}
|
2018-05-18 17:55:08 +00:00
|
|
|
} catch (e) {
|
|
|
|
log('joinRoom', e);
|
|
|
|
}
|
2017-08-10 16:16:32 +00:00
|
|
|
};
|
|
|
|
|
2018-09-25 19:28:42 +00:00
|
|
|
isOwner = () => {
|
|
|
|
const { room } = this.state;
|
|
|
|
return room && room.roles && Array.from(Object.keys(room.roles), i => room.roles[i].value).includes('owner');
|
|
|
|
}
|
2018-05-24 20:17:45 +00:00
|
|
|
|
2018-09-25 19:28:42 +00:00
|
|
|
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);
|
2018-09-25 19:28:42 +00:00
|
|
|
}
|
2018-05-24 20:17:45 +00:00
|
|
|
|
2018-09-25 19:28:42 +00:00
|
|
|
isReadOnly = () => {
|
|
|
|
const { room } = this.state;
|
2019-02-07 15:48:10 +00:00
|
|
|
return (room.ro && !room.broadcast) || this.isMuted() || room.archived;
|
2018-09-25 19:28:42 +00:00
|
|
|
}
|
2018-05-24 20:17:45 +00:00
|
|
|
|
|
|
|
isBlocked = () => {
|
2018-09-25 19:28:42 +00:00
|
|
|
const { room } = this.state;
|
|
|
|
|
|
|
|
if (room) {
|
|
|
|
const { t, blocked, blocker } = room;
|
2018-05-24 20:17:45 +00:00
|
|
|
if (t === 'd' && (blocked || blocker)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-25 19:28:42 +00:00
|
|
|
renderItem = (item, previousItem) => {
|
2019-03-27 20:06:57 +00:00
|
|
|
const { room, lastOpen } = this.state;
|
2018-09-25 19:28:42 +00:00
|
|
|
const { user } = 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')) {
|
|
|
|
dateSeparator = previousItem.ts;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (showUnreadSeparator || dateSeparator) {
|
|
|
|
return (
|
|
|
|
<React.Fragment>
|
|
|
|
<Message
|
|
|
|
key={item._id}
|
|
|
|
item={item}
|
|
|
|
status={item.status}
|
|
|
|
reactions={JSON.parse(JSON.stringify(item.reactions))}
|
|
|
|
user={user}
|
|
|
|
archived={room.archived}
|
|
|
|
broadcast={room.broadcast}
|
|
|
|
previousItem={previousItem}
|
|
|
|
_updatedAt={item._updatedAt}
|
|
|
|
onReactionPress={this.onReactionPress}
|
|
|
|
onLongPress={this.onMessageLongPress}
|
|
|
|
/>
|
|
|
|
<Separator
|
|
|
|
ts={dateSeparator}
|
|
|
|
unread={showUnreadSeparator}
|
|
|
|
/>
|
|
|
|
</React.Fragment>
|
|
|
|
);
|
|
|
|
}
|
2018-09-25 19:28:42 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Message
|
|
|
|
key={item._id}
|
|
|
|
item={item}
|
|
|
|
status={item.status}
|
|
|
|
reactions={JSON.parse(JSON.stringify(item.reactions))}
|
|
|
|
user={user}
|
|
|
|
archived={room.archived}
|
|
|
|
broadcast={room.broadcast}
|
|
|
|
previousItem={previousItem}
|
|
|
|
_updatedAt={item._updatedAt}
|
|
|
|
onReactionPress={this.onReactionPress}
|
|
|
|
onLongPress={this.onMessageLongPress}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
2017-08-07 00:34:35 +00:00
|
|
|
|
2017-08-10 16:16:32 +00:00
|
|
|
renderFooter = () => {
|
2019-02-07 15:48:10 +00:00
|
|
|
const { joined } = this.state;
|
2018-09-25 19:28:42 +00:00
|
|
|
|
|
|
|
if (!joined) {
|
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-02-07 15:48:10 +00:00
|
|
|
if (this.isReadOnly()) {
|
2018-01-17 16:42:30 +00:00
|
|
|
return (
|
2018-12-12 15:15:10 +00:00
|
|
|
<View style={styles.readOnly} key='room-view-read-only'>
|
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>
|
|
|
|
);
|
|
|
|
}
|
2018-05-24 20:17:45 +00:00
|
|
|
if (this.isBlocked()) {
|
|
|
|
return (
|
2018-12-12 15:15:10 +00:00
|
|
|
<View style={styles.readOnly} key='room-view-block'>
|
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>
|
|
|
|
);
|
|
|
|
}
|
2018-08-10 17:26:36 +00:00
|
|
|
return <MessageBox key='room-view-messagebox' onSubmit={this.sendMessage} rid={this.rid} />;
|
2017-09-25 13:15:28 +00:00
|
|
|
};
|
2017-08-09 20:08:50 +00:00
|
|
|
|
2018-07-18 20:34:59 +00:00
|
|
|
renderList = () => {
|
2018-12-21 10:55:35 +00:00
|
|
|
const { loaded, room } = this.state;
|
|
|
|
if (!loaded || !room.rid) {
|
2018-07-18 20:34:59 +00:00
|
|
|
return <ActivityIndicator style={styles.loading} />;
|
|
|
|
}
|
|
|
|
return (
|
2018-08-10 17:26:36 +00:00
|
|
|
[
|
|
|
|
<List
|
|
|
|
key='room-view-messages'
|
2018-12-21 10:55:35 +00:00
|
|
|
room={room}
|
2018-08-10 17:26:36 +00:00
|
|
|
renderRow={this.renderItem}
|
|
|
|
/>,
|
|
|
|
this.renderFooter()
|
|
|
|
]
|
2018-07-18 20:34:59 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-08-04 00:34:37 +00:00
|
|
|
render() {
|
2018-09-25 19:28:42 +00:00
|
|
|
const { room } = this.state;
|
|
|
|
const { user, showActions, showErrorActions } = this.props;
|
|
|
|
|
2017-08-04 00:34:37 +00:00
|
|
|
return (
|
2018-10-23 21:39:48 +00:00
|
|
|
<SafeAreaView style={styles.container} testID='room-view' forceInset={{ bottom: 'never' }}>
|
2019-03-12 16:23:06 +00:00
|
|
|
<StatusBar />
|
2018-07-18 20:34:59 +00:00
|
|
|
{this.renderList()}
|
2018-09-25 19:28:42 +00:00
|
|
|
{room._id && showActions
|
|
|
|
? <MessageActions room={room} user={user} />
|
|
|
|
: null
|
|
|
|
}
|
|
|
|
{showErrorActions ? <MessageErrorActions /> : null}
|
2018-01-30 19:48:26 +00:00
|
|
|
<ReactionPicker onEmojiSelected={this.onReactionPress} />
|
2018-07-17 19:10:27 +00:00
|
|
|
<UploadProgress rid={this.rid} />
|
2018-10-02 12:33:21 +00:00
|
|
|
<ConnectionBadge />
|
2018-08-01 19:35:06 +00:00
|
|
|
</SafeAreaView>
|
2017-08-04 00:34:37 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|