2018-03-29 17:55:37 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { View, Text, ScrollView } from 'react-native';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import MaterialIcon from 'react-native-vector-icons/MaterialIcons';
|
|
|
|
import moment from 'moment';
|
|
|
|
|
2018-04-03 16:24:59 +00:00
|
|
|
import LoggedView from '../View';
|
2018-03-29 17:55:37 +00:00
|
|
|
import Status from '../../containers/status';
|
|
|
|
import Avatar from '../../containers/Avatar';
|
|
|
|
import styles from './styles';
|
|
|
|
import sharedStyles from '../Styles';
|
|
|
|
import database from '../../lib/realm';
|
|
|
|
import RocketChat from '../../lib/rocketchat';
|
|
|
|
import Touch from '../../utils/touch';
|
2018-05-18 17:55:08 +00:00
|
|
|
|
|
|
|
import log from '../../utils/log';
|
2018-05-18 16:41:47 +00:00
|
|
|
import RoomTypeIcon from '../../containers/RoomTypeIcon';
|
2018-06-01 17:38:13 +00:00
|
|
|
import I18n from '../../i18n';
|
2018-03-29 17:55:37 +00:00
|
|
|
|
|
|
|
const PERMISSION_EDIT_ROOM = 'edit-room';
|
|
|
|
|
|
|
|
const camelize = str => str.replace(/^(.)/, (match, chr) => chr.toUpperCase());
|
2018-05-23 13:39:18 +00:00
|
|
|
const getRoomTitle = room => (room.t === 'd' ?
|
2018-05-24 20:17:45 +00:00
|
|
|
<Text testID='room-info-view-name' style={styles.roomTitle}>{room.fname}</Text> :
|
|
|
|
[
|
|
|
|
<RoomTypeIcon type={room.t} key='room-info-type' />,
|
|
|
|
<Text testID='room-info-view-name' style={styles.roomTitle} key='room-info-name'>{room.name}</Text>
|
|
|
|
]
|
2018-05-23 13:39:18 +00:00
|
|
|
);
|
2018-03-29 17:55:37 +00:00
|
|
|
@connect(state => ({
|
|
|
|
baseUrl: state.settings.Site_Url || state.server ? state.server.server : '',
|
|
|
|
user: state.login.user,
|
|
|
|
permissions: state.permissions,
|
|
|
|
activeUsers: state.activeUsers,
|
|
|
|
Message_TimeFormat: state.settings.Message_TimeFormat,
|
|
|
|
roles: state.roles
|
|
|
|
}))
|
2018-04-03 16:24:59 +00:00
|
|
|
export default class RoomInfoView extends LoggedView {
|
2018-03-29 17:55:37 +00:00
|
|
|
static propTypes = {
|
|
|
|
baseUrl: PropTypes.string,
|
|
|
|
user: PropTypes.object,
|
|
|
|
navigation: PropTypes.object,
|
|
|
|
activeUsers: PropTypes.object,
|
|
|
|
Message_TimeFormat: PropTypes.string,
|
|
|
|
roles: PropTypes.object
|
|
|
|
}
|
|
|
|
|
|
|
|
static navigationOptions = ({ navigation }) => {
|
|
|
|
const params = navigation.state.params || {};
|
|
|
|
if (!params.hasEditPermission) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
headerRight: (
|
|
|
|
<Touch
|
2018-04-10 13:03:54 +00:00
|
|
|
onPress={() => navigation.navigate({ key: 'RoomInfoEdit', routeName: 'RoomInfoEdit', params: { rid: navigation.state.params.rid } })}
|
2018-03-29 17:55:37 +00:00
|
|
|
underlayColor='#ffffff'
|
|
|
|
activeOpacity={0.5}
|
2018-06-01 17:38:13 +00:00
|
|
|
accessibilityLabel={I18n.t('edit')}
|
2018-03-29 17:55:37 +00:00
|
|
|
accessibilityTraits='button'
|
2018-05-23 13:39:18 +00:00
|
|
|
testID='room-info-view-edit-button'
|
2018-03-29 17:55:37 +00:00
|
|
|
>
|
|
|
|
<View style={styles.headerButton}>
|
|
|
|
<MaterialIcon name='edit' size={20} />
|
|
|
|
</View>
|
|
|
|
</Touch>
|
|
|
|
)
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props) {
|
2018-04-03 16:24:59 +00:00
|
|
|
super('RoomInfoView', props);
|
2018-03-29 17:55:37 +00:00
|
|
|
const { rid } = props.navigation.state.params;
|
|
|
|
this.rooms = database.objects('subscriptions').filtered('rid = $0', rid);
|
|
|
|
this.sub = {
|
|
|
|
unsubscribe: () => {}
|
|
|
|
};
|
|
|
|
this.state = {
|
|
|
|
room: {},
|
|
|
|
roomUser: {},
|
|
|
|
roles: []
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
async componentDidMount() {
|
|
|
|
await this.updateRoom();
|
|
|
|
this.rooms.addListener(this.updateRoom);
|
|
|
|
|
|
|
|
// get user of room
|
|
|
|
if (this.state.room.t === 'd') {
|
|
|
|
try {
|
|
|
|
const roomUser = await RocketChat.getRoomMember(this.state.room.rid, this.props.user.id);
|
|
|
|
this.setState({ roomUser });
|
|
|
|
const username = this.state.room.name;
|
|
|
|
|
|
|
|
const activeUser = this.props.activeUsers[roomUser._id];
|
|
|
|
if (!activeUser || !activeUser.utcOffset) {
|
|
|
|
// get full user data looking for utcOffset
|
|
|
|
// will be catched by .on('users) and saved on activeUsers reducer
|
|
|
|
this.getFullUserData(username);
|
|
|
|
}
|
|
|
|
|
|
|
|
// get all users roles
|
|
|
|
// needs to be changed by a better method
|
|
|
|
const allUsersRoles = await RocketChat.getUserRoles();
|
|
|
|
const userRoles = allUsersRoles.find(user => user.username === username);
|
|
|
|
if (userRoles) {
|
|
|
|
this.setState({ roles: userRoles.roles || [] });
|
|
|
|
}
|
2018-05-18 17:55:08 +00:00
|
|
|
} catch (e) {
|
|
|
|
log('RoomInfoView.componentDidMount', e);
|
2018-03-29 17:55:37 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const permissions = RocketChat.hasPermission([PERMISSION_EDIT_ROOM], this.state.room.rid);
|
|
|
|
this.props.navigation.setParams({ hasEditPermission: permissions[PERMISSION_EDIT_ROOM] });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.rooms.removeAllListeners();
|
|
|
|
this.sub.unsubscribe();
|
|
|
|
}
|
|
|
|
|
|
|
|
getFullUserData = async(username) => {
|
|
|
|
const result = await RocketChat.subscribe('fullUserData', username);
|
|
|
|
this.sub = result;
|
|
|
|
}
|
|
|
|
|
|
|
|
isDirect = () => this.state.room.t === 'd';
|
|
|
|
|
|
|
|
updateRoom = async() => {
|
|
|
|
const [room] = this.rooms;
|
|
|
|
this.setState({ room });
|
|
|
|
}
|
2018-06-01 17:38:13 +00:00
|
|
|
|
2018-03-29 17:55:37 +00:00
|
|
|
renderItem = (key, room) => (
|
|
|
|
<View style={styles.item}>
|
2018-06-01 17:38:13 +00:00
|
|
|
<Text style={styles.itemLabel}>{I18n.t(camelize(key))}</Text>
|
2018-05-23 13:39:18 +00:00
|
|
|
<Text
|
|
|
|
style={[styles.itemContent, !room[key] && styles.itemContent__empty]}
|
|
|
|
testID={`room-info-view-${ key }`}
|
2018-06-01 17:38:13 +00:00
|
|
|
>{ room[key] ? room[key] : I18n.t(`No_${ key }_provided`) }
|
2018-05-23 13:39:18 +00:00
|
|
|
</Text>
|
2018-03-29 17:55:37 +00:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
|
|
|
|
renderRoles = () => (
|
|
|
|
this.state.roles.length > 0 &&
|
|
|
|
<View style={styles.item}>
|
2018-06-01 17:38:13 +00:00
|
|
|
<Text style={styles.itemLabel}>{I18n.t('Roles')}</Text>
|
2018-03-29 17:55:37 +00:00
|
|
|
<View style={styles.rolesContainer}>
|
|
|
|
{this.state.roles.map(role => (
|
|
|
|
<View style={styles.roleBadge} key={role}>
|
|
|
|
<Text>{ this.props.roles[role] }</Text>
|
|
|
|
</View>
|
|
|
|
))}
|
|
|
|
</View>
|
|
|
|
</View>
|
|
|
|
)
|
|
|
|
|
|
|
|
renderTimezone = (userId) => {
|
|
|
|
if (this.props.activeUsers[userId]) {
|
|
|
|
const { utcOffset } = this.props.activeUsers[userId];
|
|
|
|
|
|
|
|
if (!utcOffset) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
// TODO: translate
|
|
|
|
return (
|
|
|
|
<View style={styles.item}>
|
2018-06-01 17:38:13 +00:00
|
|
|
<Text style={styles.itemLabel}>{I18n.t('Timezone')}</Text>
|
2018-03-29 17:55:37 +00:00
|
|
|
<Text style={styles.itemContent}>{moment().utcOffset(utcOffset).format(this.props.Message_TimeFormat)} (UTC { utcOffset })</Text>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-05-18 17:55:08 +00:00
|
|
|
renderAvatar = (room, roomUser) => (
|
|
|
|
<Avatar
|
|
|
|
text={room.name}
|
|
|
|
size={100}
|
|
|
|
style={styles.avatar}
|
|
|
|
type={room.t}
|
|
|
|
>
|
|
|
|
{room.t === 'd' ? <Status style={[sharedStyles.status, styles.status]} id={roomUser._id} /> : null}
|
|
|
|
</Avatar>
|
|
|
|
)
|
|
|
|
|
2018-05-24 20:17:45 +00:00
|
|
|
renderBroadcast = () => (
|
|
|
|
<View style={styles.item}>
|
2018-06-01 17:38:13 +00:00
|
|
|
<Text style={styles.itemLabel}>{I18n.t('Broadcast_Channel')}</Text>
|
2018-05-24 20:17:45 +00:00
|
|
|
<Text
|
|
|
|
style={styles.itemContent}
|
|
|
|
testID='room-info-view-broadcast'
|
2018-06-01 17:38:13 +00:00
|
|
|
>{I18n.t('Broadcast_channel_Description')}
|
2018-05-24 20:17:45 +00:00
|
|
|
</Text>
|
|
|
|
</View>
|
|
|
|
)
|
|
|
|
|
2018-03-29 17:55:37 +00:00
|
|
|
render() {
|
|
|
|
const { room, roomUser } = this.state;
|
2018-05-18 17:55:08 +00:00
|
|
|
if (!room) {
|
|
|
|
return <View />;
|
|
|
|
}
|
2018-03-29 17:55:37 +00:00
|
|
|
return (
|
|
|
|
<ScrollView style={styles.container}>
|
2018-05-23 13:39:18 +00:00
|
|
|
<View style={styles.avatarContainer} testID='room-info-view'>
|
2018-05-18 17:55:08 +00:00
|
|
|
{this.renderAvatar(room, roomUser)}
|
2018-05-24 20:17:45 +00:00
|
|
|
<View style={styles.roomTitleContainer}>{ getRoomTitle(room) }</View>
|
2018-03-29 17:55:37 +00:00
|
|
|
</View>
|
|
|
|
{!this.isDirect() && this.renderItem('description', room)}
|
|
|
|
{!this.isDirect() && this.renderItem('topic', room)}
|
|
|
|
{!this.isDirect() && this.renderItem('announcement', room)}
|
|
|
|
{this.isDirect() && this.renderRoles()}
|
|
|
|
{this.isDirect() && this.renderTimezone(roomUser._id)}
|
2018-05-24 20:17:45 +00:00
|
|
|
{room.broadcast && this.renderBroadcast()}
|
2018-03-29 17:55:37 +00:00
|
|
|
</ScrollView>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|