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

313 lines
8.4 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 { Text, View, LayoutAnimation, ActivityIndicator, SafeAreaView } from 'react-native';
2017-08-13 01:35:09 +00:00
import { connect } from 'react-redux';
import equal from 'deep-equal';
2017-08-13 01:35:09 +00:00
import LoggedView from '../View';
import { List } from './ListView';
import { openRoom, closeRoom, setLastOpen } from '../../actions/room';
import { toggleReactionPicker, actionsShow } from '../../actions/messages';
import database 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';
2018-06-01 17:38:13 +00:00
import I18n from '../../i18n';
import debounce from '../../utils/debounce';
import { iconsMap } from '../../Icons';
2017-08-14 14:15:37 +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,
showErrorActions: state.messages.showErrorActions
}), dispatch => ({
openRoom: room => dispatch(openRoom(room)),
setLastOpen: date => dispatch(setLastOpen(date)),
toggleReactionPicker: message => dispatch(toggleReactionPicker(message)),
actionsShow: actionMessage => dispatch(actionsShow(actionMessage)),
close: () => dispatch(closeRoom())
}))
/** @extends React.Component */
export default class RoomView extends LoggedView {
2017-08-05 18:16:32 +00:00
static propTypes = {
navigator: PropTypes.object,
2017-11-20 22:18:00 +00:00
openRoom: PropTypes.func.isRequired,
setLastOpen: PropTypes.func.isRequired,
user: PropTypes.shape({
id: PropTypes.string.isRequired,
username: PropTypes.string.isRequired,
token: PropTypes.string.isRequired
}),
2017-08-12 20:52:55 +00:00
rid: PropTypes.string,
showActions: PropTypes.bool,
showErrorActions: PropTypes.bool,
actionMessage: PropTypes.object,
toggleReactionPicker: PropTypes.func.isRequired,
actionsShow: PropTypes.func,
close: PropTypes.func
};
2017-08-05 18:16:32 +00:00
2017-08-04 00:34:37 +00:00
constructor(props) {
super('RoomView', props);
this.rid = props.rid;
this.rooms = database.objects('subscriptions').filtered('rid = $0', this.rid);
2017-08-07 18:42:02 +00:00
this.state = {
loaded: false,
joined: typeof props.rid === 'undefined',
room: {},
end: false
2017-08-07 18:42:02 +00:00
};
this.onReactionPress = this.onReactionPress.bind(this);
props.navigator.setOnNavigatorEvent(this.onNavigatorEvent.bind(this));
}
componentWillMount() {
this.props.navigator.setButtons({
rightButtons: [{
id: 'more',
testID: 'room-view-header-actions',
icon: iconsMap.more
}, {
id: 'star',
testID: 'room-view-header-star',
icon: iconsMap.starOutline
}]
});
2017-08-07 00:34:35 +00:00
}
2017-08-04 00:34:37 +00:00
2018-05-23 13:39:18 +00:00
componentDidMount() {
this.updateRoom();
this.rooms.addListener(this.updateRoom);
this.props.navigator.setDrawerEnabled({
side: 'left',
enabled: false
});
this.setState({ loaded: true });
}
shouldComponentUpdate(nextProps, nextState) {
return !(equal(this.props, nextProps) && equal(this.state, nextState) && this.state.room.ro === nextState.room.ro);
}
componentDidUpdate(prevProps, prevState) {
if (prevState.room.f !== this.state.room.f) {
this.props.navigator.setButtons({
rightButtons: [{
id: 'more',
testID: 'room-view-header-actions',
icon: iconsMap.more
}, {
id: 'star',
testID: 'room-view-header-star',
icon: this.state.room.f ? iconsMap.star : iconsMap.starOutline
}]
});
}
}
2017-08-07 00:34:35 +00:00
componentWillUnmount() {
this.rooms.removeAllListeners();
this.onEndReached.stop();
this.props.close();
2017-08-04 00:34:37 +00:00
}
onNavigatorEvent(event) {
if (event.type === 'NavBarButtonPress') {
if (event.id === 'more') {
this.props.navigator.push({
screen: 'RoomActionsView',
title: I18n.t('Actions'),
passProps: {
rid: this.state.room.rid
}
});
} else if (event.id === 'star') {
try {
RocketChat.toggleFavorite(this.state.room.rid, this.state.room.f);
} catch (e) {
log('toggleFavorite', e);
}
}
}
}
onEndReached = debounce((lastRowData) => {
if (!lastRowData) {
this.setState({ end: true });
return;
}
2017-11-21 16:55:32 +00:00
requestAnimationFrame(async() => {
try {
const result = await RocketChat.loadMessagesForRoom({ rid: this.rid, t: this.state.room.t, latest: lastRowData.ts });
this.setState({ end: result < 20 });
} catch (e) {
log('RoomView.onEndReached', e);
}
2017-08-09 01:40:55 +00:00
});
})
onMessageLongPress = (message) => {
this.props.actionsShow(message);
}
onReactionPress = (shortname, messageId) => {
try {
if (!messageId) {
RocketChat.setReaction(shortname, this.props.actionMessage._id);
return this.props.toggleReactionPicker();
}
RocketChat.setReaction(shortname, messageId);
} catch (e) {
log('RoomView.onReactionPress', e);
}
};
2017-08-04 00:34:37 +00:00
updateRoom = async() => {
if (this.rooms.length > 0) {
const { room: prevRoom } = this.state;
const room = JSON.parse(JSON.stringify(this.rooms[0]));
this.setState({ room });
if (!prevRoom.rid) {
this.props.navigator.setTitle({ title: room.name });
this.props.openRoom({
...room
});
if (room.alert || room.unread || room.userMentions) {
this.props.setLastOpen(room.ls);
} else {
this.props.setLastOpen(null);
}
}
}
}
sendMessage = (message) => {
LayoutAnimation.easeInEaseOut();
RocketChat.sendMessage(this.rid, message).then(() => {
this.props.setLastOpen(null);
});
};
2017-08-09 01:40:55 +00:00
joinRoom = async() => {
try {
await RocketChat.joinRoom(this.props.rid);
this.setState({
joined: true
});
} catch (e) {
log('joinRoom', e);
}
2017-08-10 16:16:32 +00:00
};
isOwner = () => this.state.room && this.state.room.roles && Array.from(Object.keys(this.state.room.roles), i => this.state.room.roles[i].value).includes('owner');
isMuted = () => this.state.room && this.state.room.muted && Array.from(Object.keys(this.state.room.muted), i => this.state.room.muted[i].value).includes(this.props.user.username);
isReadOnly = () => this.state.room.ro && this.isMuted() && !this.isOwner();
isBlocked = () => {
if (this.state.room) {
const { t, blocked, blocker } = this.state.room;
if (t === 'd' && (blocked || blocker)) {
return true;
}
}
return false;
}
Beta (#265) * Fabric iOS * Fabric configured on iOS and Android * - react-native-fabric configured - login tracked * README updated * Run scripts from README updated * README scripts * get rooms and messages by rest * user status * more improves * more improves * send pong on timeout * fix some methods * more tests * rest messages * Room actions (#266) * Toggle notifications * Search messages * Invite users * Mute/Unmute users in room * rocket.cat messages * Room topic layout fixed * Starred messages loading onEndReached * Room actions onEndReached * Unnecessary login request * Login loading * Login services fixed * User presence layout * ïmproves on room actions view * Removed unnecessary data from SelectedUsersView * load few messages on open room, search message improve * fix loading messages forever * Removed state from search * Custom message time format * secureTextEntry layout * Reduce android app size * Roles subscription fix * Public routes navigation * fix reconnect * - New login/register, login, register * proguard * Login flux * App init/restore * Android layout fixes * Multiple meteor connection requests fixed * Nested attachments * Nested attachments * fix check status * New login layout (#269) * Public routes navigation * New login/register, login, register * Multiple meteor connection requests fixed * Nested attachments * Button component * TextInput android layout fixed * Register fixed * Thinner close modal button * Requests /me after login only one time * Static images moved * fix reconnect * fix ddp * fix custom emoji * New message layout (#273) * Grouping messages * Message layout * Users typing animation * Image attachment layout
2018-04-24 19:34:03 +00:00
renderItem = (item, previousItem) => (
2017-08-09 01:40:55 +00:00
<Message
key={item._id}
2017-08-09 01:40:55 +00:00
item={item}
2018-03-02 21:31:44 +00:00
_updatedAt={item._updatedAt}
status={item.status}
reactions={JSON.parse(JSON.stringify(item.reactions))}
user={this.props.user}
onReactionPress={this.onReactionPress}
onLongPress={this.onMessageLongPress}
archived={this.state.room.archived}
broadcast={this.state.room.broadcast}
Beta (#265) * Fabric iOS * Fabric configured on iOS and Android * - react-native-fabric configured - login tracked * README updated * Run scripts from README updated * README scripts * get rooms and messages by rest * user status * more improves * more improves * send pong on timeout * fix some methods * more tests * rest messages * Room actions (#266) * Toggle notifications * Search messages * Invite users * Mute/Unmute users in room * rocket.cat messages * Room topic layout fixed * Starred messages loading onEndReached * Room actions onEndReached * Unnecessary login request * Login loading * Login services fixed * User presence layout * ïmproves on room actions view * Removed unnecessary data from SelectedUsersView * load few messages on open room, search message improve * fix loading messages forever * Removed state from search * Custom message time format * secureTextEntry layout * Reduce android app size * Roles subscription fix * Public routes navigation * fix reconnect * - New login/register, login, register * proguard * Login flux * App init/restore * Android layout fixes * Multiple meteor connection requests fixed * Nested attachments * Nested attachments * fix check status * New login layout (#269) * Public routes navigation * New login/register, login, register * Multiple meteor connection requests fixed * Nested attachments * Button component * TextInput android layout fixed * Register fixed * Thinner close modal button * Requests /me after login only one time * Static images moved * fix reconnect * fix ddp * fix custom emoji * New message layout (#273) * Grouping messages * Message layout * Users typing animation * Image attachment layout
2018-04-24 19:34:03 +00:00
previousItem={previousItem}
2017-08-09 01:40:55 +00:00
/>
);
2017-08-07 00:34:35 +00:00
2017-08-10 16:16:32 +00:00
renderFooter = () => {
// TODO: fix it
// if (!this.state.joined) {
// return (
// <View>
// <Text>{I18n.t('You_are_in_preview_mode')}</Text>
// <Button title='Join' onPress={this.joinRoom} />
// </View>
// );
// }
if (this.state.room.archived || this.isReadOnly()) {
return (
<View style={styles.readOnly}>
2018-06-01 17:38:13 +00:00
<Text>{I18n.t('This_room_is_read_only')}</Text>
</View>
);
}
if (this.isBlocked()) {
return (
<View style={styles.blockedOrBlocker}>
2018-06-01 17:38:13 +00:00
<Text>{I18n.t('This_room_is_blocked')}</Text>
</View>
);
}
return <MessageBox key='room-view-messagebox' onSubmit={this.sendMessage} rid={this.rid} />;
};
2017-08-09 20:08:50 +00:00
2017-08-10 23:21:46 +00:00
renderHeader = () => {
if (!this.state.end) {
return <Text style={styles.loadingMore}>{I18n.t('Loading_messages_ellipsis')}</Text>;
2017-08-10 23:21:46 +00:00
}
return null;
2017-11-21 16:55:32 +00:00
}
renderList = () => {
if (!this.state.loaded) {
return <ActivityIndicator style={styles.loading} />;
}
return (
[
<List
key='room-view-messages'
end={this.state.end}
room={this.rid}
renderFooter={this.renderHeader}
onEndReached={this.onEndReached}
renderRow={this.renderItem}
/>,
this.renderFooter()
]
);
}
2017-08-04 00:34:37 +00:00
render() {
return (
<SafeAreaView style={styles.container} testID='room-view'>
{this.renderList()}
{this.state.room._id && this.props.showActions ?
<MessageActions room={this.state.room} user={this.props.user} /> :
null}
{this.props.showErrorActions ? <MessageErrorActions /> : null}
<ReactionPicker onEmojiSelected={this.onReactionPress} />
<UploadProgress rid={this.rid} />
</SafeAreaView>
2017-08-04 00:34:37 +00:00
);
}
}