import React from 'react'; import PropTypes from 'prop-types'; import { View, Text, ScrollView } from 'react-native'; import { connect } from 'react-redux'; import moment from 'moment'; import { SafeAreaView } from 'react-navigation'; import Status from '../../containers/Status'; import Avatar from '../../containers/Avatar'; import styles from './styles'; import sharedStyles from '../Styles'; import database from '../../lib/database'; import RocketChat from '../../lib/rocketchat'; import RoomTypeIcon from '../../containers/RoomTypeIcon'; import I18n from '../../i18n'; import { CustomHeaderButtons, Item } from '../../containers/HeaderButton'; import StatusBar from '../../containers/StatusBar'; import log from '../../utils/log'; import { themes } from '../../constants/colors'; import { withTheme } from '../../theme'; import { themedHeader } from '../../utils/navigation'; const PERMISSION_EDIT_ROOM = 'edit-room'; const camelize = str => str.replace(/^(.)/, (match, chr) => chr.toUpperCase()); const getRoomTitle = (room, type, name, theme) => (type === 'd' ? {name} : ( {room.prid ? room.fname : room.name} ) ); class RoomInfoView extends React.Component { static navigationOptions = ({ navigation, screenProps }) => { const showEdit = navigation.getParam('showEdit'); const rid = navigation.getParam('rid'); const t = navigation.getParam('t'); return { title: t === 'd' ? I18n.t('User_Info') : I18n.t('Room_Info'), ...themedHeader(screenProps.theme), headerRight: showEdit ? ( navigation.navigate('RoomInfoEditView', { rid })} testID='room-info-view-edit-button' /> ) : null }; } static propTypes = { navigation: PropTypes.object, user: PropTypes.shape({ id: PropTypes.string, token: PropTypes.string }), baseUrl: PropTypes.string, Message_TimeFormat: PropTypes.string, theme: PropTypes.string } constructor(props) { super(props); const room = props.navigation.getParam('room'); this.rid = props.navigation.getParam('rid'); this.t = props.navigation.getParam('t'); this.state = { room: room || {}, roomUser: {}, parsedRoles: [] }; } async componentDidMount() { if (this.t === 'd') { const { user } = this.props; const roomUserId = RocketChat.getRoomMemberId(this.rid, user.id); try { const result = await RocketChat.getUserInfo(roomUserId); if (result.success) { const { roles } = result.user; let parsedRoles = []; if (roles && roles.length) { parsedRoles = await Promise.all(roles.map(async(role) => { const description = await this.getRoleDescription(role); return description; })); } this.setState({ roomUser: result.user, parsedRoles }); } } catch (e) { log(e); } return; } const { navigation } = this.props; let room = navigation.getParam('room'); if (room && room.observe) { this.roomObservable = room.observe(); this.subscription = this.roomObservable .subscribe((changes) => { this.setState({ room: changes }); }); } else { try { const result = await RocketChat.getRoomInfo(this.rid); if (result.success) { // eslint-disable-next-line prefer-destructuring room = result.room; this.setState({ room }); } } catch (e) { log(e); } } const permissions = await RocketChat.hasPermission([PERMISSION_EDIT_ROOM], room.rid); if (permissions[PERMISSION_EDIT_ROOM] && !room.prid && this.t !== 'l') { navigation.setParams({ showEdit: true }); } } componentWillUnmount() { if (this.subscription && this.subscription.unsubscribe) { this.subscription.unsubscribe(); } } getRoleDescription = async(id) => { const db = database.active; try { const rolesCollection = db.collections.get('roles'); const role = await rolesCollection.find(id); if (role) { return role.description; } return null; } catch (e) { return null; } } isDirect = () => this.t === 'd' renderItem = (key, room) => { const { theme } = this.props; return ( {I18n.t(camelize(key))} { room[key] ? room[key] : I18n.t(`No_${ key }_provided`) } ); } renderRole = (description) => { const { theme } = this.props; if (description) { return ( { description } ); } return null; } renderRoles = () => { const { parsedRoles } = this.state; if (parsedRoles && parsedRoles.length) { return ( {I18n.t('Roles')} {parsedRoles.map(role => this.renderRole(role))} ); } return null; } renderTimezone = () => { const { roomUser } = this.state; const { Message_TimeFormat, theme } = this.props; if (roomUser) { const { utcOffset } = roomUser; if (!utcOffset) { return null; } return ( {I18n.t('Timezone')} {moment().utcOffset(utcOffset).format(Message_TimeFormat)} (UTC { utcOffset }) ); } return null; } renderAvatar = (room, roomUser) => { const { baseUrl, user, theme } = this.props; return ( {this.t === 'd' && roomUser._id ? : null} ); } renderBroadcast = () => ( {I18n.t('Broadcast_Channel')} {I18n.t('Broadcast_channel_Description')} ) renderCustomFields = () => { const { roomUser } = this.state; if (roomUser) { const { customFields } = roomUser; if (!roomUser.customFields) { return null; } return ( Object.keys(customFields).map((title) => { if (!customFields[title]) { return; } return ( {title} {customFields[title]} ); }) ); } return null; } renderChannel = () => { const { room } = this.state; return ( <> {this.renderItem('description', room)} {this.renderItem('topic', room)} {this.renderItem('announcement', room)} {room.broadcast ? this.renderBroadcast() : null} ); } renderDirect = () => { const { roomUser } = this.state; return ( <> {this.renderRoles()} {this.renderTimezone()} {this.renderCustomFields(roomUser._id)} ); } render() { const { room, roomUser } = this.state; const { theme } = this.props; if (!room) { return ; } return ( {this.renderAvatar(room, roomUser)} { getRoomTitle(room, this.t, roomUser && roomUser.name, theme) } {this.isDirect() ? this.renderDirect() : this.renderChannel()} ); } } const mapStateToProps = state => ({ baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', user: { id: state.login.user && state.login.user.id, token: state.login.user && state.login.user.token }, Message_TimeFormat: state.settings.Message_TimeFormat }); export default connect(mapStateToProps)(withTheme(RoomInfoView));