import React from 'react'; import PropTypes from 'prop-types'; import { View, SectionList, Text, Alert } from 'react-native'; import Icon from 'react-native-vector-icons/Ionicons'; import MaterialIcon from 'react-native-vector-icons/MaterialIcons'; import { connect, Provider } from 'react-redux'; import { Navigation } from 'react-native-navigation'; import { gestureHandlerRootHOC } from 'react-native-gesture-handler'; import SafeAreaView from 'react-native-safe-area-view'; import { leaveRoom as leaveRoomAction } from '../../actions/room'; import LoggedView from '../View'; import styles from './styles'; import sharedStyles from '../Styles'; import Avatar from '../../containers/Avatar'; import Status from '../../containers/status'; import Touch from '../../utils/touch'; import database from '../../lib/realm'; import RocketChat from '../../lib/rocketchat'; import log from '../../utils/log'; import RoomTypeIcon from '../../containers/RoomTypeIcon'; import I18n from '../../i18n'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; import store from '../../lib/createStore'; import { DEFAULT_HEADER } from '../../constants/headerOptions'; const renderSeparator = () => ; const modules = {}; @connect(state => ({ userId: state.login.user && state.login.user.id, username: state.login.user && state.login.user.username, baseUrl: state.settings.Site_Url || state.server ? state.server.server : '' }), dispatch => ({ leaveRoom: (rid, t) => dispatch(leaveRoomAction(rid, t)) })) /** @extends React.Component */ export default class RoomActionsView extends LoggedView { static options() { return { ...DEFAULT_HEADER, topBar: { ...DEFAULT_HEADER.topBar, title: { ...DEFAULT_HEADER.topBar.title, text: I18n.t('Actions') } } }; } static propTypes = { baseUrl: PropTypes.string, rid: PropTypes.string, componentId: PropTypes.string, userId: PropTypes.string, username: PropTypes.string, leaveRoom: PropTypes.func } constructor(props) { super('RoomActionsView', props); const { rid } = props; this.rooms = database.objects('subscriptions').filtered('rid = $0', rid); this.state = { room: this.rooms[0] || {}, membersCount: 0, member: {} }; } async componentDidMount() { const { room } = this.state; if (room && room.t !== 'd' && this.canViewMembers) { const { rid } = this.props; try { const counters = await RocketChat.getRoomCounters(rid, room.t); if (counters.success) { this.setState({ membersCount: counters.members, joined: counters.joined }); } } catch (error) { console.log('RoomActionsView -> getRoomCounters -> error', error); } } this.rooms.addListener(this.updateRoom); } componentWillUnmount() { this.rooms.removeAllListeners(); } onPressTouchable = (item) => { if (item.route) { if (modules[item.route] == null) { modules[item.route] = item.require(); Navigation.registerComponentWithRedux(item.route, () => gestureHandlerRootHOC(modules[item.route]), Provider, store); } const { componentId } = this.props; Navigation.push(componentId, { component: { name: item.route, passProps: item.params } }); } if (item.event) { return item.event(); } } get canAddUser() { const { room, joined } = this.state; const { rid, t } = room; const userInRoom = joined; const permissions = RocketChat.hasPermission(['add-user-to-joined-room', 'add-user-to-any-c-room', 'add-user-to-any-p-room'], rid); if (userInRoom && permissions['add-user-to-joined-room']) { return true; } if (t === 'c' && permissions['add-user-to-any-c-room']) { return true; } if (t === 'p' && permissions['add-user-to-any-p-room']) { return true; } return false; } get canViewMembers() { const { room } = this.state; const { rid, t, broadcast } = room; if (broadcast) { const viewBroadcastMemberListPermission = 'view-broadcast-member-list'; const permissions = RocketChat.hasPermission([viewBroadcastMemberListPermission], rid); if (!permissions[viewBroadcastMemberListPermission]) { return false; } } // This method is executed only in componentDidMount and returns a value // We save the state to read in render const result = (t === 'c' || t === 'p'); this.setState({ canViewMembers: result }); return result; } get sections() { const { room, membersCount, canViewMembers } = this.state; const { rid, t, blocker, notifications } = room; const sections = [{ data: [{ icon: 'ios-star', name: I18n.t('Room_Info'), route: 'RoomInfoView', params: { rid }, testID: 'room-actions-info', require: () => require('../RoomInfoView').default }], renderItem: this.renderRoomInfo }, { data: [ { icon: 'ios-call', name: I18n.t('Voice_call'), disabled: true, testID: 'room-actions-voice' }, { icon: 'ios-videocam', name: I18n.t('Video_call'), disabled: true, testID: 'room-actions-video' } ], renderItem: this.renderItem }, { data: [ { icon: 'ios-attach', name: I18n.t('Files'), route: 'RoomFilesView', params: { rid }, testID: 'room-actions-files', require: () => require('../RoomFilesView').default }, { icon: 'ios-at', name: I18n.t('Mentions'), route: 'MentionedMessagesView', params: { rid }, testID: 'room-actions-mentioned', require: () => require('../MentionedMessagesView').default }, { icon: 'ios-star', name: I18n.t('Starred'), route: 'StarredMessagesView', params: { rid }, testID: 'room-actions-starred', require: () => require('../StarredMessagesView').default }, { icon: 'ios-search', name: I18n.t('Search'), route: 'SearchMessagesView', params: { rid }, testID: 'room-actions-search', require: () => require('../SearchMessagesView').default }, { icon: 'ios-share', name: I18n.t('Share'), disabled: true, testID: 'room-actions-share' }, { icon: 'ios-pin', name: I18n.t('Pinned'), route: 'PinnedMessagesView', params: { rid }, testID: 'room-actions-pinned', require: () => require('../PinnedMessagesView').default }, { icon: 'ios-code', name: I18n.t('Snippets'), route: 'SnippetedMessagesView', params: { rid }, testID: 'room-actions-snippeted', require: () => require('../SnippetedMessagesView').default }, { icon: `ios-notifications${ notifications ? '' : '-off' }`, name: I18n.t(`${ notifications ? 'Enable' : 'Disable' }_notifications`), event: () => this.toggleNotifications(), testID: 'room-actions-notifications' } ], renderItem: this.renderItem }]; if (t === 'd') { sections.push({ data: [ { icon: 'block', name: I18n.t(`${ blocker ? 'Unblock' : 'Block' }_user`), type: 'danger', event: () => this.toggleBlockUser(), testID: 'room-actions-block-user' } ], renderItem: this.renderItem }); } else if (t === 'c' || t === 'p') { const actions = []; if (canViewMembers) { actions.push({ icon: 'ios-people', name: I18n.t('Members'), description: `${ membersCount } ${ I18n.t('members') }`, route: 'RoomMembersView', params: { rid }, testID: 'room-actions-members', require: () => require('../RoomMembersView').default }); } if (this.canAddUser) { actions.push({ icon: 'ios-person-add', name: I18n.t('Add_user'), route: 'SelectedUsersView', params: { nextAction: 'ADD_USER', rid }, testID: 'room-actions-add-user', require: () => require('../SelectedUsersView').default }); } sections[2].data = [...actions, ...sections[2].data]; sections.push({ data: [ { icon: 'block', name: I18n.t('Leave_channel'), type: 'danger', event: () => this.leaveChannel(), testID: 'room-actions-leave-channel' } ], renderItem: this.renderItem }); } return sections; } updateRoom = () => { this.setState({ room: this.rooms[0] || {} }); } toggleBlockUser = () => { const { room } = this.state; const { rid, blocker } = room; const { member } = this.state; try { RocketChat.toggleBlockUser(rid, member._id, !blocker); } catch (e) { log('toggleBlockUser', e); } } leaveChannel = () => { const { room } = this.state; const { leaveRoom } = this.props; Alert.alert( I18n.t('Are_you_sure_question_mark'), I18n.t('Are_you_sure_you_want_to_leave_the_room', { room: room.t === 'd' ? room.fname : room.name }), [ { text: I18n.t('Cancel'), style: 'cancel' }, { text: I18n.t('Yes_action_it', { action: I18n.t('leave') }), style: 'destructive', onPress: () => leaveRoom(room.rid, room.t) } ] ); } toggleNotifications = () => { const { room } = this.state; try { const notifications = { mobilePushNotifications: room.notifications ? 'default' : 'nothing' }; RocketChat.saveNotificationSettings(room.rid, notifications); } catch (e) { log('toggleNotifications', e); } } renderRoomInfo = ({ item }) => { const { room, member } = this.state; const { name, t, topic } = room; const { baseUrl } = this.props; return ( this.renderTouchableItem([ {t === 'd' ? : null } , {room.t === 'd' ? {room.fname} : ( {room.name} ) } {t === 'd' ? `@${ name }` : topic} , ], item) ); } renderTouchableItem = (subview, item) => ( this.onPressTouchable(item)} underlayColor='#FFFFFF' activeOpacity={0.5} accessibilityLabel={item.name} accessibilityTraits='button' testID={item.testID} > {subview} ) renderItem = ({ item }) => { const subview = item.type === 'danger' ? [ , { item.name } ] : [ , { item.name }, item.description ? { item.description } : null, ]; return this.renderTouchableItem(subview, item); } renderSectionSeparator = (data) => { if (data.trailingItem) { return ; } if (!data.trailingSection) { return ; } return null; } render() { return ( item.name} testID='room-actions-list' {...scrollPersistTaps} /> ); } }