import React from 'react'; import PropTypes from 'prop-types'; import { FlatList, Text, View, TextInput, Vibration, TouchableOpacity } from 'react-native'; import { connect } from 'react-redux'; import ActionSheet from 'react-native-actionsheet'; import LoggedView from '../View'; import styles from './styles'; import sharedStyles from '../Styles'; import RoomItem from '../../presentation/RoomItem'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; import RocketChat from '../../lib/rocketchat'; import { goRoom } from '../../containers/routes/NavigationService'; import database from '../../lib/realm'; import { showToast } from '../../utils/info'; import log from '../../utils/log'; import I18n from '../../i18n'; @connect(state => ({ user: state.login.user, baseUrl: state.settings.Site_Url || state.server ? state.server.server : '' })) export default class MentionedMessagesView extends LoggedView { static propTypes = { navigation: PropTypes.object } static navigationOptions = ({ navigation }) => { const params = navigation.state.params || {}; const label = params.allUsers ? I18n.t('All') : I18n.t('Online'); if (params.allUsers === undefined) { return; } return { headerRight: ( {label} ) }; }; constructor(props) { super('MentionedMessagesView', props); this.CANCEL_INDEX = 0; this.MUTE_INDEX = 1; this.actionSheetOptions = ['']; const { rid, members } = props.navigation.state.params; this.rooms = database.objects('subscriptions').filtered('rid = $0', rid); this.permissions = RocketChat.hasPermission(['mute-user'], rid); this.state = { allUsers: false, filtering: false, rid, members, membersFiltered: [], userLongPressed: {}, room: {} }; } componentDidMount() { this.props.navigation.setParams({ onPressToogleStatus: this.onPressToogleStatus, allUsers: this.state.allUsers }); this.rooms.addListener(this.updateRoom); } componentWillUnmount() { this.rooms.removeAllListeners(); } updateRoom = async() => { const [room] = this.rooms; await this.setState({ room }); } onSearchChangeText = (text) => { let membersFiltered = []; if (text) { membersFiltered = this.state.members.filter(m => m.username.toLowerCase().match(text.toLowerCase())); } this.setState({ filtering: !!text, membersFiltered }); } onPressToogleStatus = async() => { try { const allUsers = !this.state.allUsers; this.props.navigation.setParams({ allUsers }); const membersResult = await RocketChat.getRoomMembers(this.state.rid, allUsers); const members = membersResult.records; this.setState({ allUsers, members }); } catch (e) { log('onPressToogleStatus', e); } } onPressUser = async(item) => { try { const subscriptions = database.objects('subscriptions').filtered('name = $0', item.username); if (subscriptions.length) { goRoom({ rid: subscriptions[0].rid, name: subscriptions[0].name }); } else { const room = await RocketChat.createDirectMessage(item.username); goRoom({ rid: room.rid, name: item.username }); } } catch (e) { log('onPressUser', e); } } onLongPressUser = (user) => { if (!this.permissions['mute-user']) { return; } this.actionSheetOptions = [I18n.t('Cancel')]; const { muted } = this.state.room; const userIsMuted = !!muted.find(m => m.value === user.username); user.muted = userIsMuted; if (userIsMuted) { this.actionSheetOptions.push(I18n.t('Unmute')); } else { this.actionSheetOptions.push(I18n.t('Mute')); } this.setState({ userLongPressed: user }); Vibration.vibrate(50); this.ActionSheet.show(); } handleMute = async() => { const { rid, userLongPressed } = this.state; try { await RocketChat.toggleMuteUserInRoom(rid, userLongPressed.username, !userLongPressed.muted); showToast(I18n.t('User_has_been_key', { key: userLongPressed.muted ? I18n.t('unmuted') : I18n.t('muted') })); } catch (e) { log('handleMute', e); } } handleActionPress = (actionIndex) => { switch (actionIndex) { case this.MUTE_INDEX: this.handleMute(); break; default: break; } } renderSearchBar = () => ( this.onSearchChangeText(text)} returnKeyType='search' placeholder={I18n.t('Search')} clearButtonMode='while-editing' blurOnSubmit autoCorrect={false} autoCapitalize='none' testID='room-members-view-search' /> ) renderSeparator = () => ; renderItem = ({ item }) => ( this.onPressUser(item)} onLongPress={() => this.onLongPressUser(item)} id={item._id} showLastMessage={false} avatarSize={30} statusStyle={styles.status} testID={`room-members-view-item-${ item.username }`} /> ) render() { const { filtering, members, membersFiltered } = this.state; return ( [ item._id} ItemSeparatorComponent={this.renderSeparator} ListHeaderComponent={this.renderSearchBar} {...scrollPersistTaps} />, this.ActionSheet = o} title={I18n.t('Actions')} options={this.actionSheetOptions} cancelButtonIndex={this.CANCEL_INDEX} onPress={this.handleActionPress} /> ] ); } }