2018-02-19 21:19:39 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2018-09-25 19:28:42 +00:00
|
|
|
import {
|
|
|
|
View, SectionList, Text, Alert, SafeAreaView
|
|
|
|
} from 'react-native';
|
2018-02-19 21:19:39 +00:00
|
|
|
import Icon from 'react-native-vector-icons/Ionicons';
|
|
|
|
import MaterialIcon from 'react-native-vector-icons/MaterialIcons';
|
2018-09-26 13:56:36 +00:00
|
|
|
import { connect, Provider } from 'react-redux';
|
|
|
|
import { Navigation } from 'react-native-navigation';
|
2018-09-26 19:38:06 +00:00
|
|
|
import { gestureHandlerRootHOC } from 'react-native-gesture-handler';
|
2018-02-19 21:19:39 +00:00
|
|
|
|
2018-09-25 19:28:42 +00:00
|
|
|
import { leaveRoom as leaveRoomAction } from '../../actions/room';
|
2018-04-03 16:24:59 +00:00
|
|
|
import LoggedView from '../View';
|
2018-02-19 21:19:39 +00:00
|
|
|
import styles from './styles';
|
2018-03-29 17:55:37 +00:00
|
|
|
import sharedStyles from '../Styles';
|
2018-02-19 21:19:39 +00:00
|
|
|
import Avatar from '../../containers/Avatar';
|
2018-03-29 17:55:37 +00:00
|
|
|
import Status from '../../containers/status';
|
2018-02-19 21:19:39 +00:00
|
|
|
import Touch from '../../utils/touch';
|
|
|
|
import database from '../../lib/realm';
|
2018-03-02 15:11:34 +00:00
|
|
|
import RocketChat from '../../lib/rocketchat';
|
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-08-10 17:26:36 +00:00
|
|
|
import scrollPersistTaps from '../../utils/scrollPersistTaps';
|
2018-09-26 13:56:36 +00:00
|
|
|
import store from '../../lib/createStore';
|
2018-04-24 19:34:03 +00:00
|
|
|
|
|
|
|
const renderSeparator = () => <View style={styles.separator} />;
|
2018-02-19 21:19:39 +00:00
|
|
|
|
2018-09-26 13:56:36 +00:00
|
|
|
const modules = {};
|
|
|
|
|
2018-02-19 21:19:39 +00:00
|
|
|
@connect(state => ({
|
2018-07-10 13:40:32 +00:00
|
|
|
userId: state.login.user && state.login.user.id,
|
2018-09-11 16:32:52 +00:00
|
|
|
username: state.login.user && state.login.user.username,
|
|
|
|
baseUrl: state.settings.Site_Url || state.server ? state.server.server : ''
|
2018-03-23 16:49:51 +00:00
|
|
|
}), dispatch => ({
|
2018-09-25 19:28:42 +00:00
|
|
|
leaveRoom: rid => dispatch(leaveRoomAction(rid))
|
2018-02-19 21:19:39 +00:00
|
|
|
}))
|
2018-07-10 13:40:32 +00:00
|
|
|
/** @extends React.Component */
|
2018-04-03 16:24:59 +00:00
|
|
|
export default class RoomActionsView extends LoggedView {
|
2018-02-19 21:19:39 +00:00
|
|
|
static propTypes = {
|
2018-09-11 16:32:52 +00:00
|
|
|
baseUrl: PropTypes.string,
|
2018-07-10 13:40:32 +00:00
|
|
|
rid: PropTypes.string,
|
|
|
|
navigator: PropTypes.object,
|
|
|
|
userId: PropTypes.string,
|
|
|
|
username: PropTypes.string,
|
2018-03-23 16:49:51 +00:00
|
|
|
leaveRoom: PropTypes.func
|
2018-02-19 21:19:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constructor(props) {
|
2018-04-03 16:24:59 +00:00
|
|
|
super('RoomActionsView', props);
|
2018-07-10 13:40:32 +00:00
|
|
|
const { rid } = props;
|
2018-02-19 21:19:39 +00:00
|
|
|
this.rooms = database.objects('subscriptions').filtered('rid = $0', rid);
|
|
|
|
this.state = {
|
2018-10-16 20:30:04 +00:00
|
|
|
room: this.rooms[0] || {},
|
2018-04-24 19:34:03 +00:00
|
|
|
onlineMembers: [],
|
|
|
|
allMembers: [],
|
2018-03-29 17:55:37 +00:00
|
|
|
member: {}
|
2018-02-19 21:19:39 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-03-23 16:49:51 +00:00
|
|
|
async componentDidMount() {
|
2018-02-19 21:19:39 +00:00
|
|
|
this.rooms.addListener(this.updateRoom);
|
2018-04-24 19:34:03 +00:00
|
|
|
const [members, member] = await Promise.all([this.updateRoomMembers(), this.updateRoomMember()]);
|
|
|
|
this.setState({ ...members, ...member });
|
2018-02-19 21:19:39 +00:00
|
|
|
}
|
|
|
|
|
2018-03-23 16:49:51 +00:00
|
|
|
componentWillUnmount() {
|
|
|
|
this.rooms.removeAllListeners();
|
|
|
|
}
|
|
|
|
|
|
|
|
onPressTouchable = (item) => {
|
2018-09-25 19:28:42 +00:00
|
|
|
const { navigator } = this.props;
|
|
|
|
|
2018-03-23 16:49:51 +00:00
|
|
|
if (item.route) {
|
2018-09-26 13:56:36 +00:00
|
|
|
if (modules[item.route] == null) {
|
|
|
|
modules[item.route] = item.require();
|
2018-09-26 19:38:06 +00:00
|
|
|
Navigation.registerComponent(item.route, () => gestureHandlerRootHOC(modules[item.route]), store, Provider);
|
2018-09-26 13:56:36 +00:00
|
|
|
}
|
2018-09-25 19:28:42 +00:00
|
|
|
navigator.push({
|
2018-07-10 13:40:32 +00:00
|
|
|
screen: item.route,
|
|
|
|
title: item.name,
|
2018-08-31 18:13:30 +00:00
|
|
|
passProps: item.params,
|
|
|
|
backButtonTitle: ''
|
2018-07-10 13:40:32 +00:00
|
|
|
});
|
2018-03-23 16:49:51 +00:00
|
|
|
}
|
|
|
|
if (item.event) {
|
|
|
|
return item.event();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-26 13:56:36 +00:00
|
|
|
get canAddUser() {
|
2018-10-16 20:30:04 +00:00
|
|
|
const { allMembers, room } = this.state;
|
2018-09-25 19:28:42 +00:00
|
|
|
const { username } = this.props;
|
2018-10-16 20:30:04 +00:00
|
|
|
const { rid, t } = room;
|
2018-09-25 19:28:42 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
// TODO: same test joined
|
2018-09-25 19:28:42 +00:00
|
|
|
const userInRoom = !!allMembers.find(m => m.username === username);
|
2018-04-24 19:34:03 +00:00
|
|
|
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;
|
2018-02-19 21:19:39 +00:00
|
|
|
}
|
2018-09-25 19:28:42 +00:00
|
|
|
|
2018-05-24 20:17:45 +00:00
|
|
|
get canViewMembers() {
|
2018-09-25 19:28:42 +00:00
|
|
|
const { room } = this.state;
|
|
|
|
const { rid, t, broadcast } = room;
|
2018-05-24 20:17:45 +00:00
|
|
|
if (broadcast) {
|
|
|
|
const viewBroadcastMemberListPermission = 'view-broadcast-member-list';
|
|
|
|
const permissions = RocketChat.hasPermission([viewBroadcastMemberListPermission], rid);
|
|
|
|
if (!permissions[viewBroadcastMemberListPermission]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (t === 'c' || t === 'p');
|
|
|
|
}
|
2018-09-25 19:28:42 +00:00
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
get sections() {
|
2018-10-16 20:30:04 +00:00
|
|
|
const { onlineMembers, room } = this.state;
|
2018-04-24 19:34:03 +00:00
|
|
|
const {
|
2018-05-24 20:17:45 +00:00
|
|
|
rid, t, blocker, notifications
|
2018-10-16 20:30:04 +00:00
|
|
|
} = room;
|
2018-02-19 21:19:39 +00:00
|
|
|
|
|
|
|
const sections = [{
|
2018-03-29 17:55:37 +00:00
|
|
|
data: [{
|
|
|
|
icon: 'ios-star',
|
2018-07-10 13:40:32 +00:00
|
|
|
name: I18n.t('Room_Info'),
|
|
|
|
route: 'RoomInfoView',
|
2018-05-23 13:39:18 +00:00
|
|
|
params: { rid },
|
2018-09-26 13:56:36 +00:00
|
|
|
testID: 'room-actions-info',
|
|
|
|
require: () => require('../RoomInfoView').default
|
2018-03-29 17:55:37 +00:00
|
|
|
}],
|
2018-02-19 21:19:39 +00:00
|
|
|
renderItem: this.renderRoomInfo
|
|
|
|
}, {
|
|
|
|
data: [
|
2018-05-23 13:39:18 +00:00
|
|
|
{
|
2018-08-10 17:26:36 +00:00
|
|
|
icon: 'ios-call',
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t('Voice_call'),
|
2018-05-23 13:39:18 +00:00
|
|
|
disabled: true,
|
|
|
|
testID: 'room-actions-voice'
|
|
|
|
},
|
|
|
|
{
|
2018-08-10 17:26:36 +00:00
|
|
|
icon: 'ios-videocam',
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t('Video_call'),
|
2018-05-23 13:39:18 +00:00
|
|
|
disabled: true,
|
|
|
|
testID: 'room-actions-video'
|
|
|
|
}
|
2018-02-19 21:19:39 +00:00
|
|
|
],
|
|
|
|
renderItem: this.renderItem
|
|
|
|
}, {
|
|
|
|
data: [
|
2018-03-23 16:49:51 +00:00
|
|
|
{
|
|
|
|
icon: 'ios-attach',
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t('Files'),
|
2018-07-10 13:40:32 +00:00
|
|
|
route: 'RoomFilesView',
|
2018-05-23 13:39:18 +00:00
|
|
|
params: { rid },
|
2018-09-26 13:56:36 +00:00
|
|
|
testID: 'room-actions-files',
|
|
|
|
require: () => require('../RoomFilesView').default
|
2018-03-23 16:49:51 +00:00
|
|
|
},
|
2018-03-02 15:11:34 +00:00
|
|
|
{
|
2018-08-10 17:26:36 +00:00
|
|
|
icon: 'ios-at',
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t('Mentions'),
|
2018-07-10 13:40:32 +00:00
|
|
|
route: 'MentionedMessagesView',
|
2018-05-23 13:39:18 +00:00
|
|
|
params: { rid },
|
2018-09-26 13:56:36 +00:00
|
|
|
testID: 'room-actions-mentioned',
|
|
|
|
require: () => require('../MentionedMessagesView').default
|
2018-03-02 15:11:34 +00:00
|
|
|
},
|
2018-02-19 21:19:39 +00:00
|
|
|
{
|
2018-08-10 17:26:36 +00:00
|
|
|
icon: 'ios-star',
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t('Starred'),
|
2018-07-10 13:40:32 +00:00
|
|
|
route: 'StarredMessagesView',
|
2018-05-23 13:39:18 +00:00
|
|
|
params: { rid },
|
2018-09-26 13:56:36 +00:00
|
|
|
testID: 'room-actions-starred',
|
|
|
|
require: () => require('../StarredMessagesView').default
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
2018-04-24 19:34:03 +00:00
|
|
|
{
|
|
|
|
icon: 'ios-search',
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t('Search'),
|
2018-07-10 13:40:32 +00:00
|
|
|
route: 'SearchMessagesView',
|
2018-05-23 13:39:18 +00:00
|
|
|
params: { rid },
|
2018-09-26 13:56:36 +00:00
|
|
|
testID: 'room-actions-search',
|
|
|
|
require: () => require('../SearchMessagesView').default
|
2018-05-23 13:39:18 +00:00
|
|
|
},
|
|
|
|
{
|
2018-08-10 17:26:36 +00:00
|
|
|
icon: 'ios-share',
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t('Share'),
|
2018-05-23 13:39:18 +00:00
|
|
|
disabled: true,
|
|
|
|
testID: 'room-actions-share'
|
2018-04-24 19:34:03 +00:00
|
|
|
},
|
2018-02-19 21:19:39 +00:00
|
|
|
{
|
|
|
|
icon: 'ios-pin',
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t('Pinned'),
|
2018-07-10 13:40:32 +00:00
|
|
|
route: 'PinnedMessagesView',
|
2018-05-23 13:39:18 +00:00
|
|
|
params: { rid },
|
2018-09-26 13:56:36 +00:00
|
|
|
testID: 'room-actions-pinned',
|
|
|
|
require: () => require('../PinnedMessagesView').default
|
2018-02-19 21:19:39 +00:00
|
|
|
},
|
2018-03-23 16:49:51 +00:00
|
|
|
{
|
|
|
|
icon: 'ios-code',
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t('Snippets'),
|
2018-07-10 13:40:32 +00:00
|
|
|
route: 'SnippetedMessagesView',
|
2018-05-23 13:39:18 +00:00
|
|
|
params: { rid },
|
2018-09-26 13:56:36 +00:00
|
|
|
testID: 'room-actions-snippeted',
|
|
|
|
require: () => require('../SnippetedMessagesView').default
|
2018-03-23 16:49:51 +00:00
|
|
|
},
|
2018-04-24 19:34:03 +00:00
|
|
|
{
|
2018-08-10 17:26:36 +00:00
|
|
|
icon: `ios-notifications${ notifications ? '' : '-off' }`,
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t(`${ notifications ? 'Enable' : 'Disable' }_notifications`),
|
2018-05-23 13:39:18 +00:00
|
|
|
event: () => this.toggleNotifications(),
|
|
|
|
testID: 'room-actions-notifications'
|
2018-04-24 19:34:03 +00:00
|
|
|
}
|
2018-02-19 21:19:39 +00:00
|
|
|
],
|
|
|
|
renderItem: this.renderItem
|
|
|
|
}];
|
2018-04-24 19:34:03 +00:00
|
|
|
|
2018-02-19 21:19:39 +00:00
|
|
|
if (t === 'd') {
|
|
|
|
sections.push({
|
|
|
|
data: [
|
2018-03-23 16:49:51 +00:00
|
|
|
{
|
|
|
|
icon: 'block',
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t(`${ blocker ? 'Unblock' : 'Block' }_user`),
|
2018-03-23 16:49:51 +00:00
|
|
|
type: 'danger',
|
2018-05-23 13:39:18 +00:00
|
|
|
event: () => this.toggleBlockUser(),
|
|
|
|
testID: 'room-actions-block-user'
|
2018-03-23 16:49:51 +00:00
|
|
|
}
|
2018-02-19 21:19:39 +00:00
|
|
|
],
|
|
|
|
renderItem: this.renderItem
|
|
|
|
});
|
|
|
|
} else if (t === 'c' || t === 'p') {
|
2018-05-24 20:17:45 +00:00
|
|
|
const actions = [];
|
|
|
|
|
|
|
|
if (this.canViewMembers) {
|
|
|
|
actions.push({
|
|
|
|
icon: 'ios-people',
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t('Members'),
|
2018-09-25 19:28:42 +00:00
|
|
|
description: (onlineMembers.length === 1
|
|
|
|
? I18n.t('1_online_member')
|
|
|
|
: I18n.t('N_online_members', { n: onlineMembers.length })),
|
2018-07-10 13:40:32 +00:00
|
|
|
route: 'RoomMembersView',
|
2018-05-24 20:17:45 +00:00
|
|
|
params: { rid, members: onlineMembers },
|
2018-09-26 13:56:36 +00:00
|
|
|
testID: 'room-actions-members',
|
|
|
|
require: () => require('../RoomMembersView').default
|
2018-05-24 20:17:45 +00:00
|
|
|
});
|
|
|
|
}
|
2018-04-24 19:34:03 +00:00
|
|
|
|
|
|
|
if (this.canAddUser) {
|
|
|
|
actions.push({
|
|
|
|
icon: 'ios-person-add',
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t('Add_user'),
|
2018-07-10 13:40:32 +00:00
|
|
|
route: 'SelectedUsersView',
|
2018-04-24 19:34:03 +00:00
|
|
|
params: {
|
2018-07-10 13:40:32 +00:00
|
|
|
nextAction: 'ADD_USER',
|
|
|
|
rid
|
2018-05-23 13:39:18 +00:00
|
|
|
},
|
2018-09-26 13:56:36 +00:00
|
|
|
testID: 'room-actions-add-user',
|
|
|
|
require: () => require('../SelectedUsersView').default
|
2018-03-23 16:49:51 +00:00
|
|
|
});
|
|
|
|
}
|
2018-04-24 19:34:03 +00:00
|
|
|
sections[2].data = [...actions, ...sections[2].data];
|
2018-02-19 21:19:39 +00:00
|
|
|
sections.push({
|
|
|
|
data: [
|
2018-03-23 16:49:51 +00:00
|
|
|
{
|
|
|
|
icon: 'block',
|
2018-06-01 17:38:13 +00:00
|
|
|
name: I18n.t('Leave_channel'),
|
2018-03-23 16:49:51 +00:00
|
|
|
type: 'danger',
|
2018-05-23 13:39:18 +00:00
|
|
|
event: () => this.leaveChannel(),
|
|
|
|
testID: 'room-actions-leave-channel'
|
2018-03-23 16:49:51 +00:00
|
|
|
}
|
2018-02-19 21:19:39 +00:00
|
|
|
],
|
|
|
|
renderItem: this.renderItem
|
|
|
|
});
|
|
|
|
}
|
2018-04-24 19:34:03 +00:00
|
|
|
return sections;
|
2018-02-19 21:19:39 +00:00
|
|
|
}
|
|
|
|
|
2018-07-10 13:40:32 +00:00
|
|
|
updateRoomMembers = async() => {
|
2018-09-25 19:28:42 +00:00
|
|
|
const { room } = this.state;
|
|
|
|
const { rid, t } = room;
|
2018-07-10 13:40:32 +00:00
|
|
|
|
|
|
|
if (!this.canViewMembers) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (t === 'c' || t === 'p') {
|
|
|
|
let onlineMembers = [];
|
|
|
|
let allMembers = [];
|
|
|
|
try {
|
2018-09-25 19:28:42 +00:00
|
|
|
const onlineMembersCall = RocketChat.getRoomMembers(rid, false);
|
|
|
|
const allMembersCall = RocketChat.getRoomMembers(rid, true);
|
2018-07-10 13:40:32 +00:00
|
|
|
const [onlineMembersResult, allMembersResult] = await Promise.all([onlineMembersCall, allMembersCall]);
|
|
|
|
onlineMembers = onlineMembersResult.records;
|
|
|
|
allMembers = allMembersResult.records;
|
|
|
|
return { onlineMembers, allMembers };
|
|
|
|
} catch (error) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
updateRoomMember = async() => {
|
2018-09-25 19:28:42 +00:00
|
|
|
const { room } = this.state;
|
|
|
|
const { rid, t } = room;
|
|
|
|
const { userId } = this.props;
|
|
|
|
|
|
|
|
if (t !== 'd') {
|
2018-07-10 13:40:32 +00:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
try {
|
2018-09-25 19:28:42 +00:00
|
|
|
const member = await RocketChat.getRoomMember(rid, userId);
|
2018-07-10 13:40:32 +00:00
|
|
|
return { member };
|
|
|
|
} catch (e) {
|
|
|
|
log('RoomActions updateRoomMember', e);
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
updateRoom = () => {
|
2018-10-16 20:30:04 +00:00
|
|
|
this.setState({ room: this.rooms[0] || {} });
|
2018-07-10 13:40:32 +00:00
|
|
|
}
|
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
toggleBlockUser = async() => {
|
2018-09-25 19:28:42 +00:00
|
|
|
const { room } = this.state;
|
|
|
|
const { rid, blocker } = room;
|
2018-03-29 17:55:37 +00:00
|
|
|
const { member } = this.state;
|
2018-05-18 17:55:08 +00:00
|
|
|
try {
|
2018-05-24 20:17:45 +00:00
|
|
|
RocketChat.toggleBlockUser(rid, member._id, !blocker);
|
2018-05-18 17:55:08 +00:00
|
|
|
} catch (e) {
|
|
|
|
log('toggleBlockUser', e);
|
|
|
|
}
|
2018-03-23 16:49:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
leaveChannel = () => {
|
|
|
|
const { room } = this.state;
|
2018-09-25 19:28:42 +00:00
|
|
|
const { leaveRoom } = this.props;
|
|
|
|
|
2018-03-23 16:49:51 +00:00
|
|
|
Alert.alert(
|
2018-06-01 17:38:13 +00:00
|
|
|
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 }),
|
2018-03-23 16:49:51 +00:00
|
|
|
[
|
|
|
|
{
|
2018-06-01 17:38:13 +00:00
|
|
|
text: I18n.t('Cancel'),
|
2018-03-23 16:49:51 +00:00
|
|
|
style: 'cancel'
|
|
|
|
},
|
|
|
|
{
|
2018-06-01 17:38:13 +00:00
|
|
|
text: I18n.t('Yes_action_it', { action: I18n.t('leave') }),
|
2018-03-23 16:49:51 +00:00
|
|
|
style: 'destructive',
|
2018-09-25 19:28:42 +00:00
|
|
|
onPress: () => leaveRoom(room.rid)
|
2018-03-23 16:49:51 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-04-24 19:34:03 +00:00
|
|
|
toggleNotifications = () => {
|
|
|
|
const { room } = this.state;
|
2018-05-18 17:55:08 +00:00
|
|
|
try {
|
|
|
|
RocketChat.saveNotificationSettings(room.rid, 'mobilePushNotifications', room.notifications ? 'default' : 'nothing');
|
|
|
|
} catch (e) {
|
|
|
|
log('toggleNotifications', e);
|
|
|
|
}
|
2018-04-24 19:34:03 +00:00
|
|
|
}
|
|
|
|
|
2018-03-02 15:11:34 +00:00
|
|
|
renderRoomInfo = ({ item }) => {
|
2018-03-29 17:55:37 +00:00
|
|
|
const { room, member } = this.state;
|
2018-03-23 16:49:51 +00:00
|
|
|
const { name, t, topic } = room;
|
2018-09-25 19:28:42 +00:00
|
|
|
const { baseUrl } = this.props;
|
|
|
|
|
2018-03-02 15:11:34 +00:00
|
|
|
return (
|
|
|
|
this.renderTouchableItem([
|
|
|
|
<Avatar
|
|
|
|
key='avatar'
|
|
|
|
text={name}
|
|
|
|
size={50}
|
|
|
|
style={styles.avatar}
|
|
|
|
type={t}
|
2018-09-25 19:28:42 +00:00
|
|
|
baseUrl={baseUrl}
|
2018-03-29 17:55:37 +00:00
|
|
|
>
|
|
|
|
{t === 'd' ? <Status style={sharedStyles.status} id={member._id} /> : null }
|
|
|
|
</Avatar>,
|
2018-03-02 15:11:34 +00:00
|
|
|
<View key='name' style={styles.roomTitleContainer}>
|
2018-09-25 19:28:42 +00:00
|
|
|
{room.t === 'd'
|
|
|
|
? <Text style={styles.roomTitle}>{room.fname}</Text>
|
|
|
|
: (
|
|
|
|
<View style={styles.roomTitleRow}>
|
|
|
|
<RoomTypeIcon type={room.t} />
|
|
|
|
<Text style={styles.roomTitle}>{room.name}</Text>
|
|
|
|
</View>
|
|
|
|
)
|
2018-08-31 16:46:33 +00:00
|
|
|
}
|
2018-03-02 15:11:34 +00:00
|
|
|
<Text style={styles.roomDescription} ellipsizeMode='tail' numberOfLines={1}>{t === 'd' ? `@${ name }` : topic}</Text>
|
|
|
|
</View>,
|
2018-03-29 17:55:37 +00:00
|
|
|
<Icon key='icon' name='ios-arrow-forward' size={20} style={styles.sectionItemIcon} color='#ccc' />
|
2018-03-02 15:11:34 +00:00
|
|
|
], item)
|
|
|
|
);
|
|
|
|
}
|
2018-02-19 21:19:39 +00:00
|
|
|
|
|
|
|
renderTouchableItem = (subview, item) => (
|
|
|
|
<Touch
|
2018-03-23 16:49:51 +00:00
|
|
|
onPress={() => this.onPressTouchable(item)}
|
2018-02-19 21:19:39 +00:00
|
|
|
underlayColor='#FFFFFF'
|
|
|
|
activeOpacity={0.5}
|
|
|
|
accessibilityLabel={item.name}
|
|
|
|
accessibilityTraits='button'
|
2018-05-23 13:39:18 +00:00
|
|
|
testID={item.testID}
|
2018-02-19 21:19:39 +00:00
|
|
|
>
|
2018-03-29 17:55:37 +00:00
|
|
|
<View style={[styles.sectionItem, item.disabled && styles.sectionItemDisabled]}>
|
2018-02-19 21:19:39 +00:00
|
|
|
{subview}
|
|
|
|
</View>
|
|
|
|
</Touch>
|
|
|
|
)
|
|
|
|
|
|
|
|
renderItem = ({ item }) => {
|
2018-04-24 19:34:03 +00:00
|
|
|
const subview = item.type === 'danger' ? [
|
|
|
|
<MaterialIcon key='icon' name={item.icon} size={20} style={[styles.sectionItemIcon, styles.textColorDanger]} />,
|
|
|
|
<Text key='name' style={[styles.sectionItemName, styles.textColorDanger]}>{ item.name }</Text>
|
|
|
|
] : [
|
2018-02-19 21:19:39 +00:00
|
|
|
<Icon key='left-icon' name={item.icon} size={24} style={styles.sectionItemIcon} />,
|
|
|
|
<Text key='name' style={styles.sectionItemName}>{ item.name }</Text>,
|
2018-06-13 01:33:00 +00:00
|
|
|
item.description ? <Text key='description' style={styles.sectionItemDescription}>{ item.description }</Text> : null,
|
2018-03-29 17:55:37 +00:00
|
|
|
<Icon key='right-icon' name='ios-arrow-forward' size={20} style={styles.sectionItemIcon} color='#ccc' />
|
2018-02-19 21:19:39 +00:00
|
|
|
];
|
|
|
|
return this.renderTouchableItem(subview, item);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderSectionSeparator = (data) => {
|
2018-04-24 19:34:03 +00:00
|
|
|
if (data.trailingItem) {
|
|
|
|
return <View style={[styles.sectionSeparator, data.leadingSection && styles.sectionSeparatorBorder]} />;
|
2018-02-19 21:19:39 +00:00
|
|
|
}
|
2018-04-24 19:34:03 +00:00
|
|
|
if (!data.trailingSection) {
|
|
|
|
return <View style={styles.sectionSeparatorBorder} />;
|
|
|
|
}
|
|
|
|
return null;
|
2018-02-19 21:19:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2018-08-01 19:35:06 +00:00
|
|
|
<SafeAreaView style={styles.container} testID='room-actions-view'>
|
2018-05-23 13:39:18 +00:00
|
|
|
<SectionList
|
|
|
|
style={styles.container}
|
|
|
|
stickySectionHeadersEnabled={false}
|
|
|
|
sections={this.sections}
|
|
|
|
SectionSeparatorComponent={this.renderSectionSeparator}
|
|
|
|
ItemSeparatorComponent={renderSeparator}
|
|
|
|
keyExtractor={item => item.name}
|
|
|
|
testID='room-actions-list'
|
2018-08-10 17:26:36 +00:00
|
|
|
{...scrollPersistTaps}
|
2018-05-23 13:39:18 +00:00
|
|
|
/>
|
2018-08-01 19:35:06 +00:00
|
|
|
</SafeAreaView>
|
2018-02-19 21:19:39 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|