import React from 'react';
import PropTypes from 'prop-types';
import { View, Text, ScrollView } from 'react-native';
import { BorderlessButton } from 'react-native-gesture-handler';
import { connect } from 'react-redux';
import moment from 'moment';
import { SafeAreaView } from 'react-navigation';
import { CustomIcon } from '../../lib/Icons';
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';
import { getUserSelector } from '../../selectors/login';
import Markdown from '../../containers/markdown';
const PERMISSION_EDIT_ROOM = 'edit-room';
const getRoomTitle = (room, type, name, username, theme) => (type === 'd'
? (
<>
{ name }
{username && {`@${ username }`}}
>
)
: (
{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;
}
}
goRoom = async() => {
const { roomUser } = this.state;
const { username } = roomUser;
const { navigation } = this.props;
try {
const result = await RocketChat.createDirectMessage(username);
if (result.success) {
await navigation.navigate('RoomsListView');
const rid = result.room._id;
navigation.navigate('RoomView', { rid, name: RocketChat.getRoomTitle(roomUser), t: 'd' });
}
} catch (e) {
// do nothing
}
}
videoCall = () => RocketChat.callJitsi(this.rid)
isDirect = () => this.t === 'd'
renderItem = ({ label, content, testID }) => {
const { theme } = this.props;
return (
{I18n.t(label)}
);
}
renderRole = (description) => {
const { theme } = this.props;
if (description) {
return (
{ description }
);
}
return null;
}
renderRoles = () => {
const { parsedRoles } = this.state;
const { theme } = this.props;
if (parsedRoles && parsedRoles.length) {
return (
{I18n.t('Roles')}
{parsedRoles.map(role => this.renderRole(role))}
);
}
return null;
}
renderTimezone = () => {
const { roomUser } = this.state;
const { Message_TimeFormat } = this.props;
if (roomUser) {
const { utcOffset } = roomUser;
if (!utcOffset) {
return null;
}
return this.renderItem({
label: 'Timezone',
content: `${ moment().utcOffset(utcOffset).format(Message_TimeFormat) } (UTC ${ utcOffset })`,
testID: 'room-info-view-timezone'
});
}
return null;
}
renderAvatar = (room, roomUser) => {
const { baseUrl, user, theme } = this.props;
return (
{this.t === 'd' && roomUser._id ? : null}
);
}
renderBroadcast = () => this.renderItem({
label: 'Broadcast_Channel',
content: I18n.t('Broadcast_channel_Description'),
testID: 'room-info-view-broadcast'
});
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;
}
renderButton = (onPress, iconName, text) => {
const { theme } = this.props;
return (
{text}
);
}
renderButtons = () => (
{this.renderButton(this.goRoom, 'message', I18n.t('Message'))}
{this.renderButton(this.videoCall, 'video', I18n.t('Video_call'))}
)
renderChannel = () => {
const { room } = this.state;
const { description, topic, announcement } = room;
return (
<>
{this.renderItem({ label: 'Description', content: description })}
{this.renderItem({ label: 'Topic', content: topic })}
{this.renderItem({ label: 'Announcement', content: announcement })}
{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;
const isDirect = this.isDirect();
if (!room) {
return ;
}
return (
{this.renderAvatar(room, roomUser)}
{ getRoomTitle(room, this.t, roomUser && roomUser.name, roomUser && roomUser.username, theme) }
{isDirect ? this.renderButtons() : null}
{isDirect ? this.renderDirect() : this.renderChannel()}
);
}
}
const mapStateToProps = state => ({
baseUrl: state.server.server,
user: getUserSelector(state),
Message_TimeFormat: state.settings.Message_TimeFormat
});
export default connect(mapStateToProps)(withTheme(RoomInfoView));