2017-08-03 18:23:43 +00:00
|
|
|
import React from 'react';
|
2022-02-25 18:59:39 +00:00
|
|
|
import { BackHandler, FlatList, Keyboard, NativeEventSubscription, RefreshControl, Text, View } from 'react-native';
|
2021-09-23 14:17:53 +00:00
|
|
|
import { batch, connect } from 'react-redux';
|
2021-02-26 16:01:45 +00:00
|
|
|
import { dequal } from 'dequal';
|
2019-03-12 16:23:06 +00:00
|
|
|
import Orientation from 'react-native-orientation-locker';
|
2019-09-16 20:26:32 +00:00
|
|
|
import { Q } from '@nozbe/watermelondb';
|
2020-07-06 20:56:28 +00:00
|
|
|
import { withSafeAreaInsets } from 'react-native-safe-area-context';
|
2022-02-25 18:59:39 +00:00
|
|
|
import { Subscription } from 'rxjs';
|
|
|
|
import { StackNavigationOptions } from '@react-navigation/stack';
|
2018-05-18 17:55:08 +00:00
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
import database from '../../lib/database';
|
2017-12-08 19:13:21 +00:00
|
|
|
import RocketChat from '../../lib/rocketchat';
|
2021-10-06 20:30:10 +00:00
|
|
|
import RoomItem, { ROW_HEIGHT, ROW_HEIGHT_CONDENSED } from '../../presentation/RoomItem';
|
|
|
|
import log, { logEvent, events } from '../../utils/log';
|
2018-06-01 17:38:13 +00:00
|
|
|
import I18n from '../../i18n';
|
2022-01-14 22:06:55 +00:00
|
|
|
import { closeSearchHeader, closeServerDropdown, openSearchHeader, roomsRequest } from '../../actions/rooms';
|
2022-02-02 18:27:10 +00:00
|
|
|
import { appStart } from '../../actions/app';
|
2018-12-21 10:55:35 +00:00
|
|
|
import debounce from '../../utils/debounce';
|
2020-07-06 20:56:28 +00:00
|
|
|
import { isIOS, isTablet } from '../../utils/deviceInfo';
|
2020-10-30 16:15:58 +00:00
|
|
|
import * as HeaderButton from '../../containers/HeaderButton';
|
2019-03-12 16:23:06 +00:00
|
|
|
import StatusBar from '../../containers/StatusBar';
|
2019-12-04 16:39:53 +00:00
|
|
|
import ActivityIndicator from '../../containers/ActivityIndicator';
|
2022-02-02 18:27:10 +00:00
|
|
|
import { serverInitAdd } from '../../actions/server';
|
2019-09-19 13:32:24 +00:00
|
|
|
import { animateNextTransition } from '../../utils/layoutAnimation';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { withTheme } from '../../theme';
|
|
|
|
import { themes } from '../../constants/colors';
|
2019-11-25 20:01:17 +00:00
|
|
|
import EventEmitter from '../../utils/events';
|
|
|
|
import {
|
|
|
|
KEY_COMMAND,
|
2021-09-13 20:41:05 +00:00
|
|
|
handleCommandAddNewServer,
|
|
|
|
handleCommandNextRoom,
|
|
|
|
handleCommandPreviousRoom,
|
2019-11-25 20:01:17 +00:00
|
|
|
handleCommandSearching,
|
|
|
|
handleCommandSelectRoom,
|
|
|
|
handleCommandShowNewMessage,
|
2022-02-25 18:59:39 +00:00
|
|
|
handleCommandShowPreferences,
|
|
|
|
IKeyCommandEvent
|
2019-11-25 20:01:17 +00:00
|
|
|
} from '../../commands';
|
|
|
|
import { MAX_SIDEBAR_WIDTH } from '../../constants/tablet';
|
2020-02-11 14:09:14 +00:00
|
|
|
import { getUserSelector } from '../../selectors/login';
|
2020-05-13 19:02:57 +00:00
|
|
|
import { goRoom } from '../../utils/goRoom';
|
2020-06-15 14:00:46 +00:00
|
|
|
import SafeAreaView from '../../containers/SafeAreaView';
|
2020-07-06 20:56:28 +00:00
|
|
|
import Header, { getHeaderTitlePosition } from '../../containers/Header';
|
2020-06-17 17:35:58 +00:00
|
|
|
import { withDimensions } from '../../dimensions';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { showConfirmationAlert, showErrorAlert } from '../../utils/info';
|
2020-09-11 14:31:38 +00:00
|
|
|
import { E2E_BANNER_TYPE } from '../../lib/encryption/constants';
|
2020-08-28 19:41:08 +00:00
|
|
|
import { getInquiryQueueSelector } from '../../ee/omnichannel/selectors/inquiry';
|
|
|
|
import { changeLivechatStatus, isOmnichannelStatusAvailable } from '../../ee/omnichannel/lib';
|
2022-02-25 18:59:39 +00:00
|
|
|
import { IApplicationState, IBaseScreen, ISubscription, IUser, RootEnum, TSubscriptionModel } from '../../definitions';
|
2022-01-11 14:47:23 +00:00
|
|
|
import { DisplayMode, SortBy } from '../../constants/constantDisplayMode';
|
2021-10-06 20:30:10 +00:00
|
|
|
import styles from './styles';
|
|
|
|
import ServerDropdown from './ServerDropdown';
|
2022-02-25 18:59:39 +00:00
|
|
|
import ListHeader, { TEncryptionBanner } from './ListHeader';
|
2021-09-13 20:41:05 +00:00
|
|
|
import RoomsListHeaderView from './Header';
|
2022-02-25 18:59:39 +00:00
|
|
|
import { ChatsStackParamList } from '../../stacks/types';
|
|
|
|
import { RoomTypes } from '../../lib/rocketchat/methods/roomTypeToApiType';
|
|
|
|
|
|
|
|
interface IRoomsListViewProps extends IBaseScreen<ChatsStackParamList, 'RoomsListView'> {
|
|
|
|
[key: string]: any;
|
|
|
|
user: IUser;
|
|
|
|
server: string;
|
|
|
|
searchText: string;
|
|
|
|
changingServer: boolean;
|
|
|
|
loadingServer: boolean;
|
|
|
|
showServerDropdown: boolean;
|
|
|
|
sortBy: string;
|
|
|
|
groupByType: boolean;
|
|
|
|
showFavorites: boolean;
|
|
|
|
showUnread: boolean;
|
|
|
|
refreshing: boolean;
|
|
|
|
StoreLastMessage: boolean;
|
|
|
|
useRealName: boolean;
|
|
|
|
isMasterDetail: boolean;
|
|
|
|
rooms: ISubscription[];
|
|
|
|
width: number;
|
|
|
|
insets: {
|
|
|
|
left: number;
|
|
|
|
right: number;
|
|
|
|
};
|
|
|
|
queueSize: number;
|
|
|
|
inquiryEnabled: boolean;
|
|
|
|
encryptionBanner: TEncryptionBanner;
|
|
|
|
showAvatar: boolean;
|
|
|
|
displayMode: string;
|
|
|
|
createTeamPermission: [];
|
|
|
|
createDirectMessagePermission: [];
|
|
|
|
createPublicChannelPermission: [];
|
|
|
|
createPrivateChannelPermission: [];
|
|
|
|
createDiscussionPermission: [];
|
|
|
|
}
|
|
|
|
|
|
|
|
interface IRoomsListViewState {
|
|
|
|
searching: boolean;
|
|
|
|
search: ISubscription[];
|
|
|
|
loading: boolean;
|
|
|
|
chatsUpdate: [];
|
|
|
|
chats: ISubscription[];
|
|
|
|
item: ISubscription;
|
|
|
|
canCreateRoom: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface IRoomItem extends ISubscription {
|
|
|
|
search?: boolean;
|
|
|
|
outside?: boolean;
|
|
|
|
}
|
2018-08-31 16:46:33 +00:00
|
|
|
|
2019-11-25 20:01:17 +00:00
|
|
|
const INITIAL_NUM_TO_RENDER = isTablet ? 20 : 12;
|
|
|
|
const CHATS_HEADER = 'Chats';
|
|
|
|
const UNREAD_HEADER = 'Unread';
|
|
|
|
const FAVORITES_HEADER = 'Favorites';
|
|
|
|
const DISCUSSIONS_HEADER = 'Discussions';
|
2021-04-07 18:31:25 +00:00
|
|
|
const TEAMS_HEADER = 'Teams';
|
2019-11-25 20:01:17 +00:00
|
|
|
const CHANNELS_HEADER = 'Channels';
|
|
|
|
const DM_HEADER = 'Direct_Messages';
|
2020-08-25 12:10:15 +00:00
|
|
|
const OMNICHANNEL_HEADER = 'Open_Livechats';
|
2020-07-20 16:44:54 +00:00
|
|
|
const QUERY_SIZE = 20;
|
2018-08-31 16:46:33 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
const filterIsUnread = (s: TSubscriptionModel) => (s.unread > 0 || s.tunread?.length > 0 || s.alert) && !s.hideUnreadStatus;
|
|
|
|
const filterIsFavorite = (s: TSubscriptionModel) => s.f;
|
|
|
|
const filterIsOmnichannel = (s: TSubscriptionModel) => s.t === 'l';
|
|
|
|
const filterIsTeam = (s: TSubscriptionModel) => s.teamMain;
|
|
|
|
const filterIsDiscussion = (s: TSubscriptionModel) => s.prid;
|
2019-12-03 12:32:02 +00:00
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
const shouldUpdateProps = [
|
|
|
|
'searchText',
|
|
|
|
'loadingServer',
|
|
|
|
'showServerDropdown',
|
|
|
|
'useRealName',
|
|
|
|
'StoreLastMessage',
|
2019-12-04 16:39:53 +00:00
|
|
|
'theme',
|
2020-06-15 14:00:46 +00:00
|
|
|
'isMasterDetail',
|
2020-07-31 18:22:30 +00:00
|
|
|
'refreshing',
|
|
|
|
'queueSize',
|
2020-09-11 14:31:38 +00:00
|
|
|
'inquiryEnabled',
|
2021-10-05 13:59:40 +00:00
|
|
|
'encryptionBanner',
|
|
|
|
'createTeamPermission',
|
|
|
|
'createDirectMessagePermission',
|
|
|
|
'createPublicChannelPermission',
|
|
|
|
'createPrivateChannelPermission',
|
|
|
|
'createDiscussionPermission'
|
2019-09-16 20:26:32 +00:00
|
|
|
];
|
2021-10-06 20:30:10 +00:00
|
|
|
|
|
|
|
const sortPreferencesShouldUpdate = ['sortBy', 'groupByType', 'showFavorites', 'showUnread'];
|
|
|
|
|
|
|
|
const displayPropsShouldUpdate = ['showAvatar', 'displayMode'];
|
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
const getItemLayout = (data: ISubscription[] | null | undefined, index: number, height: number) => ({
|
2021-10-06 20:30:10 +00:00
|
|
|
length: height,
|
|
|
|
offset: height * index,
|
2019-09-16 20:26:32 +00:00
|
|
|
index
|
|
|
|
});
|
2022-02-25 18:59:39 +00:00
|
|
|
const keyExtractor = (item: ISubscription) => item.rid;
|
|
|
|
|
|
|
|
class RoomsListView extends React.Component<IRoomsListViewProps, IRoomsListViewState> {
|
|
|
|
private animated: boolean;
|
|
|
|
private mounted: boolean;
|
|
|
|
private count: number;
|
|
|
|
private unsubscribeFocus?: () => void;
|
|
|
|
private unsubscribeBlur?: () => void;
|
|
|
|
private sortPreferencesChanged?: boolean;
|
|
|
|
private shouldUpdate?: boolean;
|
|
|
|
private backHandler?: NativeEventSubscription;
|
|
|
|
private querySubscription?: Subscription;
|
|
|
|
private scroll?: FlatList;
|
|
|
|
private useRealName?: boolean;
|
|
|
|
|
|
|
|
constructor(props: IRoomsListViewProps) {
|
2019-05-28 13:03:08 +00:00
|
|
|
super(props);
|
2021-09-13 20:41:05 +00:00
|
|
|
console.time(`${this.constructor.name} init`);
|
|
|
|
console.time(`${this.constructor.name} mount`);
|
2017-09-21 17:08:00 +00:00
|
|
|
|
2020-02-17 19:06:18 +00:00
|
|
|
this.animated = false;
|
2021-01-13 14:16:00 +00:00
|
|
|
this.mounted = false;
|
2020-07-20 16:44:54 +00:00
|
|
|
this.count = 0;
|
2017-08-10 16:16:32 +00:00
|
|
|
this.state = {
|
2018-11-27 19:40:53 +00:00
|
|
|
searching: false,
|
2018-05-24 20:17:00 +00:00
|
|
|
search: [],
|
2018-08-31 16:46:33 +00:00
|
|
|
loading: true,
|
2020-11-12 14:17:32 +00:00
|
|
|
chatsUpdate: [],
|
2018-08-31 16:46:33 +00:00
|
|
|
chats: [],
|
2022-02-25 18:59:39 +00:00
|
|
|
item: {} as ISubscription,
|
2021-10-05 13:59:40 +00:00
|
|
|
canCreateRoom: false
|
2017-08-10 16:16:32 +00:00
|
|
|
};
|
2020-06-15 14:00:46 +00:00
|
|
|
this.setHeader();
|
2021-01-13 14:16:00 +00:00
|
|
|
this.getSubscriptions();
|
2017-08-13 01:35:09 +00:00
|
|
|
}
|
2017-09-21 17:08:00 +00:00
|
|
|
|
2018-07-18 20:34:59 +00:00
|
|
|
componentDidMount() {
|
2022-01-14 22:06:55 +00:00
|
|
|
const { navigation, dispatch } = this.props;
|
2021-10-05 13:59:40 +00:00
|
|
|
this.handleHasPermission();
|
2021-01-13 14:16:00 +00:00
|
|
|
this.mounted = true;
|
2020-07-02 17:14:12 +00:00
|
|
|
|
2019-11-25 20:01:17 +00:00
|
|
|
if (isTablet) {
|
|
|
|
EventEmitter.addEventListener(KEY_COMMAND, this.handleCommands);
|
|
|
|
}
|
2020-06-15 14:00:46 +00:00
|
|
|
this.unsubscribeFocus = navigation.addListener('focus', () => {
|
2020-05-08 17:04:37 +00:00
|
|
|
Orientation.unlockAllOrientations();
|
2020-02-17 19:06:18 +00:00
|
|
|
this.animated = true;
|
2021-10-06 20:30:10 +00:00
|
|
|
// Check if there were changes with sort preference, then call getSubscription to remount the list
|
|
|
|
if (this.sortPreferencesChanged) {
|
|
|
|
this.getSubscriptions();
|
|
|
|
this.sortPreferencesChanged = false;
|
|
|
|
}
|
2020-04-30 17:38:57 +00:00
|
|
|
// Check if there were changes while not focused (it's set on sCU)
|
|
|
|
if (this.shouldUpdate) {
|
|
|
|
this.forceUpdate();
|
|
|
|
this.shouldUpdate = false;
|
|
|
|
}
|
2019-11-25 20:01:17 +00:00
|
|
|
this.backHandler = BackHandler.addEventListener('hardwareBackPress', this.handleBackPress);
|
|
|
|
});
|
2020-06-15 14:00:46 +00:00
|
|
|
this.unsubscribeBlur = navigation.addListener('blur', () => {
|
2020-02-17 19:06:18 +00:00
|
|
|
this.animated = false;
|
2022-01-14 22:06:55 +00:00
|
|
|
dispatch(closeServerDropdown());
|
2020-06-15 14:00:46 +00:00
|
|
|
this.cancelSearch();
|
2019-11-27 20:53:46 +00:00
|
|
|
if (this.backHandler && this.backHandler.remove) {
|
|
|
|
this.backHandler.remove();
|
|
|
|
}
|
2019-11-25 20:01:17 +00:00
|
|
|
});
|
2021-09-13 20:41:05 +00:00
|
|
|
console.timeEnd(`${this.constructor.name} mount`);
|
2018-07-18 20:34:59 +00:00
|
|
|
}
|
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
UNSAFE_componentWillReceiveProps(nextProps: IRoomsListViewProps) {
|
2021-09-13 20:41:05 +00:00
|
|
|
const { loadingServer, searchText, server, changingServer } = this.props;
|
2018-09-25 19:28:42 +00:00
|
|
|
|
2021-01-13 14:16:00 +00:00
|
|
|
// when the server is changed
|
|
|
|
if (server !== nextProps.server && loadingServer !== nextProps.loadingServer && nextProps.loadingServer) {
|
|
|
|
this.setState({ loading: true });
|
2019-11-25 20:01:17 +00:00
|
|
|
}
|
2021-01-13 14:16:00 +00:00
|
|
|
// when the server is changing and stopped loading
|
|
|
|
if (changingServer && loadingServer !== nextProps.loadingServer && !nextProps.loadingServer) {
|
|
|
|
this.getSubscriptions();
|
2019-11-25 20:01:17 +00:00
|
|
|
}
|
|
|
|
if (searchText !== nextProps.searchText) {
|
2018-08-31 16:46:33 +00:00
|
|
|
this.search(nextProps.searchText);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
shouldComponentUpdate(nextProps: IRoomsListViewProps, nextState: IRoomsListViewState) {
|
2021-10-05 13:59:40 +00:00
|
|
|
const { chatsUpdate, searching, item, canCreateRoom } = this.state;
|
2018-12-21 10:55:35 +00:00
|
|
|
// eslint-disable-next-line react/destructuring-assignment
|
|
|
|
const propsUpdated = shouldUpdateProps.some(key => nextProps[key] !== this.props[key]);
|
|
|
|
if (propsUpdated) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-10-06 20:30:10 +00:00
|
|
|
// check if some display props are changed to force update when focus this view again
|
|
|
|
// eslint-disable-next-line react/destructuring-assignment
|
|
|
|
const displayUpdated = displayPropsShouldUpdate.some(key => nextProps[key] !== this.props[key]);
|
|
|
|
if (displayUpdated) {
|
|
|
|
this.shouldUpdate = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if some sort preferences are changed to getSubscription() when focus this view again
|
|
|
|
// eslint-disable-next-line react/destructuring-assignment
|
|
|
|
const sortPreferencesUpdate = sortPreferencesShouldUpdate.some(key => nextProps[key] !== this.props[key]);
|
|
|
|
if (sortPreferencesUpdate) {
|
|
|
|
this.sortPreferencesChanged = true;
|
|
|
|
}
|
|
|
|
|
2019-09-24 18:19:33 +00:00
|
|
|
// Compare changes only once
|
2021-02-26 16:01:45 +00:00
|
|
|
const chatsNotEqual = !dequal(nextState.chatsUpdate, chatsUpdate);
|
2019-09-24 18:19:33 +00:00
|
|
|
|
|
|
|
// If they aren't equal, set to update if focused
|
|
|
|
if (chatsNotEqual) {
|
|
|
|
this.shouldUpdate = true;
|
|
|
|
}
|
|
|
|
|
2020-02-13 19:24:39 +00:00
|
|
|
if (nextState.searching !== searching) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-10-05 13:59:40 +00:00
|
|
|
if (nextState.canCreateRoom !== canCreateRoom) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
if (nextState.item?.rid !== item?.rid) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-09-24 18:19:33 +00:00
|
|
|
// Abort if it's not focused
|
2019-09-16 20:26:32 +00:00
|
|
|
if (!nextProps.navigation.isFocused()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
const { loading, search } = this.state;
|
2020-07-06 20:56:28 +00:00
|
|
|
const { rooms, width, insets } = this.props;
|
2018-12-21 10:55:35 +00:00
|
|
|
if (nextState.loading !== loading) {
|
|
|
|
return true;
|
|
|
|
}
|
2020-06-17 17:35:58 +00:00
|
|
|
if (nextProps.width !== width) {
|
2019-07-04 16:15:30 +00:00
|
|
|
return true;
|
|
|
|
}
|
2021-02-26 16:01:45 +00:00
|
|
|
if (!dequal(nextState.search, search)) {
|
2018-12-21 10:55:35 +00:00
|
|
|
return true;
|
|
|
|
}
|
2021-02-26 16:01:45 +00:00
|
|
|
if (!dequal(nextProps.rooms, rooms)) {
|
2020-06-15 14:00:46 +00:00
|
|
|
return true;
|
|
|
|
}
|
2021-02-26 16:01:45 +00:00
|
|
|
if (!dequal(nextProps.insets, insets)) {
|
2020-07-06 20:56:28 +00:00
|
|
|
return true;
|
|
|
|
}
|
2019-09-24 18:19:33 +00:00
|
|
|
// If it's focused and there are changes, update
|
|
|
|
if (chatsNotEqual) {
|
|
|
|
this.shouldUpdate = false;
|
2019-09-16 20:26:32 +00:00
|
|
|
return true;
|
|
|
|
}
|
2018-12-21 10:55:35 +00:00
|
|
|
return false;
|
2018-08-31 16:46:33 +00:00
|
|
|
}
|
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
componentDidUpdate(prevProps: IRoomsListViewProps) {
|
2021-10-05 13:59:40 +00:00
|
|
|
const {
|
|
|
|
sortBy,
|
|
|
|
groupByType,
|
|
|
|
showFavorites,
|
|
|
|
showUnread,
|
|
|
|
rooms,
|
|
|
|
isMasterDetail,
|
|
|
|
insets,
|
|
|
|
createTeamPermission,
|
|
|
|
createPublicChannelPermission,
|
|
|
|
createPrivateChannelPermission,
|
|
|
|
createDirectMessagePermission,
|
2021-10-06 20:30:10 +00:00
|
|
|
createDiscussionPermission,
|
|
|
|
showAvatar,
|
|
|
|
displayMode
|
2021-10-05 13:59:40 +00:00
|
|
|
} = this.props;
|
2020-06-15 14:00:46 +00:00
|
|
|
const { item } = this.state;
|
2018-09-25 19:28:42 +00:00
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
if (
|
|
|
|
!(
|
2021-09-13 20:41:05 +00:00
|
|
|
prevProps.sortBy === sortBy &&
|
|
|
|
prevProps.groupByType === groupByType &&
|
|
|
|
prevProps.showFavorites === showFavorites &&
|
2021-10-06 20:30:10 +00:00
|
|
|
prevProps.showUnread === showUnread &&
|
|
|
|
prevProps.showAvatar === showAvatar &&
|
|
|
|
prevProps.displayMode === displayMode
|
2019-09-16 20:26:32 +00:00
|
|
|
)
|
|
|
|
) {
|
2020-07-20 16:44:54 +00:00
|
|
|
this.getSubscriptions();
|
2017-11-07 20:25:04 +00:00
|
|
|
}
|
2020-06-15 14:00:46 +00:00
|
|
|
// Update current item in case of another action triggers an update on rooms reducer
|
2022-02-25 18:59:39 +00:00
|
|
|
if (isMasterDetail && item?.rid !== rooms[0].rid && !dequal(rooms, prevProps.rooms)) {
|
2020-06-15 14:00:46 +00:00
|
|
|
// eslint-disable-next-line react/no-did-update-set-state
|
2022-02-25 18:59:39 +00:00
|
|
|
// @ts-ignore
|
2020-06-15 14:00:46 +00:00
|
|
|
this.setState({ item: { rid: rooms[0] } });
|
|
|
|
}
|
2020-07-06 20:56:28 +00:00
|
|
|
if (insets.left !== prevProps.insets.left || insets.right !== prevProps.insets.right) {
|
|
|
|
this.setHeader();
|
|
|
|
}
|
2021-10-05 13:59:40 +00:00
|
|
|
|
|
|
|
if (
|
|
|
|
!dequal(createTeamPermission, prevProps.createTeamPermission) ||
|
|
|
|
!dequal(createPublicChannelPermission, prevProps.createPublicChannelPermission) ||
|
|
|
|
!dequal(createPrivateChannelPermission, prevProps.createPrivateChannelPermission) ||
|
|
|
|
!dequal(createDirectMessagePermission, prevProps.createDirectMessagePermission) ||
|
|
|
|
!dequal(createDiscussionPermission, prevProps.createDiscussionPermission)
|
|
|
|
) {
|
|
|
|
this.handleHasPermission();
|
|
|
|
this.setHeader();
|
|
|
|
}
|
2017-11-07 20:25:04 +00:00
|
|
|
}
|
2018-03-02 21:31:44 +00:00
|
|
|
|
2017-08-09 16:19:17 +00:00
|
|
|
componentWillUnmount() {
|
2020-07-20 16:44:54 +00:00
|
|
|
this.unsubscribeQuery();
|
2020-06-15 14:00:46 +00:00
|
|
|
if (this.unsubscribeFocus) {
|
|
|
|
this.unsubscribeFocus();
|
2019-09-24 18:19:33 +00:00
|
|
|
}
|
2020-06-15 14:00:46 +00:00
|
|
|
if (this.unsubscribeBlur) {
|
|
|
|
this.unsubscribeBlur();
|
2019-05-03 14:54:57 +00:00
|
|
|
}
|
2021-03-05 16:10:21 +00:00
|
|
|
if (this.backHandler && this.backHandler.remove) {
|
|
|
|
this.backHandler.remove();
|
|
|
|
}
|
2019-11-25 20:01:17 +00:00
|
|
|
if (isTablet) {
|
|
|
|
EventEmitter.removeListener(KEY_COMMAND, this.handleCommands);
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
console.countReset(`${this.constructor.name}.render calls`);
|
2017-08-12 20:52:55 +00:00
|
|
|
}
|
|
|
|
|
2021-10-05 13:59:40 +00:00
|
|
|
handleHasPermission = async () => {
|
|
|
|
const {
|
|
|
|
createTeamPermission,
|
|
|
|
createDirectMessagePermission,
|
|
|
|
createPublicChannelPermission,
|
|
|
|
createPrivateChannelPermission,
|
|
|
|
createDiscussionPermission
|
|
|
|
} = this.props;
|
|
|
|
const permissions = [
|
|
|
|
createPublicChannelPermission,
|
|
|
|
createPrivateChannelPermission,
|
|
|
|
createTeamPermission,
|
|
|
|
createDirectMessagePermission,
|
|
|
|
createDiscussionPermission
|
|
|
|
];
|
|
|
|
const permissionsToCreate = await RocketChat.hasPermission(permissions);
|
2022-02-25 18:59:39 +00:00
|
|
|
const canCreateRoom = permissionsToCreate.filter((r: boolean) => r === true).length > 0;
|
2021-10-05 13:59:40 +00:00
|
|
|
this.setState({ canCreateRoom }, () => this.setHeader());
|
|
|
|
};
|
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
getHeader = () => {
|
2021-10-05 13:59:40 +00:00
|
|
|
const { searching, canCreateRoom } = this.state;
|
2022-02-25 18:59:39 +00:00
|
|
|
const { navigation, isMasterDetail, insets, theme } = this.props;
|
2021-04-01 14:09:02 +00:00
|
|
|
const headerTitlePosition = getHeaderTitlePosition({ insets, numIconsRight: searching ? 0 : 3 });
|
2021-10-05 13:59:40 +00:00
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
return {
|
2020-07-06 20:56:28 +00:00
|
|
|
headerTitleAlign: 'left',
|
2021-09-13 20:41:05 +00:00
|
|
|
headerLeft: () =>
|
|
|
|
searching ? (
|
|
|
|
<HeaderButton.Container left>
|
|
|
|
<HeaderButton.Item iconName='close' onPress={this.cancelSearch} />
|
|
|
|
</HeaderButton.Container>
|
|
|
|
) : (
|
|
|
|
<HeaderButton.Drawer
|
|
|
|
navigation={navigation}
|
|
|
|
testID='rooms-list-view-sidebar'
|
|
|
|
onPress={
|
|
|
|
isMasterDetail
|
|
|
|
? () => navigation.navigate('ModalStackNavigator', { screen: 'SettingsView' })
|
2022-02-25 18:59:39 +00:00
|
|
|
: // @ts-ignore
|
|
|
|
() => navigation.toggleDrawer()
|
2021-09-13 20:41:05 +00:00
|
|
|
}
|
2020-06-15 14:00:46 +00:00
|
|
|
/>
|
2021-09-13 20:41:05 +00:00
|
|
|
),
|
2022-02-25 18:59:39 +00:00
|
|
|
headerTitle: () => <RoomsListHeaderView theme={theme} />,
|
2020-07-06 20:56:28 +00:00
|
|
|
headerTitleContainerStyle: {
|
|
|
|
left: headerTitlePosition.left,
|
|
|
|
right: headerTitlePosition.right
|
|
|
|
},
|
2021-09-13 20:41:05 +00:00
|
|
|
headerRight: () =>
|
|
|
|
searching ? null : (
|
|
|
|
<HeaderButton.Container>
|
2021-10-05 13:59:40 +00:00
|
|
|
{canCreateRoom ? (
|
|
|
|
<HeaderButton.Item iconName='create' onPress={this.goToNewMessage} testID='rooms-list-view-create-channel' />
|
|
|
|
) : null}
|
2021-09-13 20:41:05 +00:00
|
|
|
<HeaderButton.Item iconName='search' onPress={this.initSearching} testID='rooms-list-view-search' />
|
|
|
|
<HeaderButton.Item iconName='directory' onPress={this.goDirectory} testID='rooms-list-view-directory' />
|
|
|
|
</HeaderButton.Container>
|
|
|
|
)
|
2020-06-15 14:00:46 +00:00
|
|
|
};
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-06-15 14:00:46 +00:00
|
|
|
|
|
|
|
setHeader = () => {
|
|
|
|
const { navigation } = this.props;
|
2022-02-25 18:59:39 +00:00
|
|
|
const options = this.getHeader() as Partial<StackNavigationOptions>;
|
2020-06-15 14:00:46 +00:00
|
|
|
navigation.setOptions(options);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-06-15 14:00:46 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
// internalSetState = (...args: { chats: TSubscriptionModel; chatsUpdate: TSubscriptionModel; loading: boolean }[]) => {
|
|
|
|
internalSetState = (...args: any) => {
|
2020-02-17 19:06:18 +00:00
|
|
|
if (this.animated) {
|
2019-09-19 13:32:24 +00:00
|
|
|
animateNextTransition();
|
2018-10-29 13:54:23 +00:00
|
|
|
}
|
2022-02-25 18:59:39 +00:00
|
|
|
// @ts-ignore
|
2018-10-23 21:39:48 +00:00
|
|
|
this.setState(...args);
|
2019-09-16 20:26:32 +00:00
|
|
|
};
|
2018-10-23 21:39:48 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
addRoomsGroup = (data: TSubscriptionModel[], header: string, allData: TSubscriptionModel[]) => {
|
2019-11-25 20:01:17 +00:00
|
|
|
if (data.length > 0) {
|
|
|
|
if (header) {
|
2022-02-25 18:59:39 +00:00
|
|
|
allData.push({ rid: header, separator: true } as TSubscriptionModel);
|
2019-11-25 20:01:17 +00:00
|
|
|
}
|
|
|
|
allData = allData.concat(data);
|
|
|
|
}
|
|
|
|
return allData;
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-11-25 20:01:17 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
getSubscriptions = async () => {
|
2020-07-20 16:44:54 +00:00
|
|
|
this.unsubscribeQuery();
|
2019-11-25 20:01:17 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
const { sortBy, showUnread, showFavorites, groupByType, user } = this.props;
|
2018-09-25 19:28:42 +00:00
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
const db = database.active;
|
2020-07-20 16:44:54 +00:00
|
|
|
let observable;
|
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
const defaultWhereClause = [Q.where('archived', false), Q.where('open', true)] as (Q.WhereDescription | Q.SortBy)[];
|
2020-07-20 16:44:54 +00:00
|
|
|
|
2022-01-11 14:47:23 +00:00
|
|
|
if (sortBy === SortBy.Alphabetical) {
|
2021-09-13 20:41:05 +00:00
|
|
|
defaultWhereClause.push(Q.experimentalSortBy(`${this.useRealName ? 'fname' : 'name'}`, Q.asc));
|
2020-07-20 16:44:54 +00:00
|
|
|
} else {
|
|
|
|
defaultWhereClause.push(Q.experimentalSortBy('room_updated_at', Q.desc));
|
|
|
|
}
|
|
|
|
|
|
|
|
// When we're grouping by something
|
|
|
|
if (this.isGrouping) {
|
2022-02-01 13:39:09 +00:00
|
|
|
observable = await db
|
2020-07-20 16:44:54 +00:00
|
|
|
.get('subscriptions')
|
|
|
|
.query(...defaultWhereClause)
|
2020-11-12 14:17:32 +00:00
|
|
|
.observeWithColumns(['alert']);
|
2020-07-20 16:44:54 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
// When we're NOT grouping
|
2020-07-20 16:44:54 +00:00
|
|
|
} else {
|
|
|
|
this.count += QUERY_SIZE;
|
2022-02-01 13:39:09 +00:00
|
|
|
observable = await db
|
2020-07-20 16:44:54 +00:00
|
|
|
.get('subscriptions')
|
2021-09-13 20:41:05 +00:00
|
|
|
.query(...defaultWhereClause, Q.experimentalSkip(0), Q.experimentalTake(this.count))
|
2020-07-20 16:44:54 +00:00
|
|
|
.observe();
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
this.querySubscription = observable.subscribe(data => {
|
2022-02-25 18:59:39 +00:00
|
|
|
let tempChats = [] as TSubscriptionModel[];
|
2020-07-20 16:44:54 +00:00
|
|
|
let chats = data;
|
2018-08-31 16:46:33 +00:00
|
|
|
|
2020-11-12 14:17:32 +00:00
|
|
|
let chatsUpdate = [];
|
|
|
|
if (showUnread) {
|
|
|
|
/**
|
|
|
|
* If unread on top, we trigger re-render based on order changes and sub.alert
|
|
|
|
* RoomItem handles its own re-render
|
|
|
|
*/
|
|
|
|
chatsUpdate = data.map(item => ({ rid: item.rid, alert: item.alert }));
|
|
|
|
} else {
|
|
|
|
/**
|
|
|
|
* Otherwise, we trigger re-render only when chats order changes
|
|
|
|
* RoomItem handles its own re-render
|
|
|
|
*/
|
|
|
|
chatsUpdate = data.map(item => item.rid);
|
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
|
2020-08-25 12:10:15 +00:00
|
|
|
const isOmnichannelAgent = user?.roles?.includes('livechat-agent');
|
|
|
|
if (isOmnichannelAgent) {
|
|
|
|
const omnichannel = chats.filter(s => filterIsOmnichannel(s));
|
|
|
|
chats = chats.filter(s => !filterIsOmnichannel(s));
|
|
|
|
tempChats = this.addRoomsGroup(omnichannel, OMNICHANNEL_HEADER, tempChats);
|
|
|
|
}
|
|
|
|
|
2018-08-31 16:46:33 +00:00
|
|
|
// unread
|
2018-09-25 19:28:42 +00:00
|
|
|
if (showUnread) {
|
2019-12-03 12:32:02 +00:00
|
|
|
const unread = chats.filter(s => filterIsUnread(s));
|
|
|
|
chats = chats.filter(s => !filterIsUnread(s));
|
2019-11-25 20:01:17 +00:00
|
|
|
tempChats = this.addRoomsGroup(unread, UNREAD_HEADER, tempChats);
|
2018-08-31 16:46:33 +00:00
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
|
2018-08-31 16:46:33 +00:00
|
|
|
// favorites
|
2018-09-25 19:28:42 +00:00
|
|
|
if (showFavorites) {
|
2019-12-03 12:32:02 +00:00
|
|
|
const favorites = chats.filter(s => filterIsFavorite(s));
|
|
|
|
chats = chats.filter(s => !filterIsFavorite(s));
|
|
|
|
tempChats = this.addRoomsGroup(favorites, FAVORITES_HEADER, tempChats);
|
2018-08-31 16:46:33 +00:00
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
|
2018-08-31 16:46:33 +00:00
|
|
|
// type
|
2018-09-25 19:28:42 +00:00
|
|
|
if (groupByType) {
|
2021-04-07 18:31:25 +00:00
|
|
|
const teams = chats.filter(s => filterIsTeam(s));
|
|
|
|
const discussions = chats.filter(s => filterIsDiscussion(s));
|
2021-07-13 19:35:21 +00:00
|
|
|
const channels = chats.filter(s => (s.t === 'c' || s.t === 'p') && !filterIsDiscussion(s) && !filterIsTeam(s));
|
2021-04-07 18:31:25 +00:00
|
|
|
const direct = chats.filter(s => s.t === 'd' && !filterIsDiscussion(s) && !filterIsTeam(s));
|
|
|
|
tempChats = this.addRoomsGroup(teams, TEAMS_HEADER, tempChats);
|
2019-12-03 12:32:02 +00:00
|
|
|
tempChats = this.addRoomsGroup(discussions, DISCUSSIONS_HEADER, tempChats);
|
|
|
|
tempChats = this.addRoomsGroup(channels, CHANNELS_HEADER, tempChats);
|
|
|
|
tempChats = this.addRoomsGroup(direct, DM_HEADER, tempChats);
|
2020-08-25 12:10:15 +00:00
|
|
|
} else if (showUnread || showFavorites || isOmnichannelAgent) {
|
2019-12-03 12:32:02 +00:00
|
|
|
tempChats = this.addRoomsGroup(chats, CHATS_HEADER, tempChats);
|
2019-11-25 20:01:17 +00:00
|
|
|
} else {
|
2019-12-03 12:32:02 +00:00
|
|
|
tempChats = chats;
|
2018-08-31 16:46:33 +00:00
|
|
|
}
|
|
|
|
|
2021-01-13 14:16:00 +00:00
|
|
|
if (this.mounted) {
|
|
|
|
this.internalSetState({
|
|
|
|
chats: tempChats,
|
|
|
|
chatsUpdate,
|
|
|
|
loading: false
|
|
|
|
});
|
|
|
|
} else {
|
2022-02-25 18:59:39 +00:00
|
|
|
// @ts-ignore
|
2021-01-13 14:16:00 +00:00
|
|
|
this.state.chats = tempChats;
|
2022-02-25 18:59:39 +00:00
|
|
|
// @ts-ignore
|
2021-01-13 14:16:00 +00:00
|
|
|
this.state.chatsUpdate = chatsUpdate;
|
2022-02-25 18:59:39 +00:00
|
|
|
// @ts-ignore
|
2021-01-13 14:16:00 +00:00
|
|
|
this.state.loading = false;
|
|
|
|
}
|
2019-04-17 18:57:46 +00:00
|
|
|
});
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2018-10-18 17:56:49 +00:00
|
|
|
|
2020-07-20 16:44:54 +00:00
|
|
|
unsubscribeQuery = () => {
|
|
|
|
if (this.querySubscription && this.querySubscription.unsubscribe) {
|
|
|
|
this.querySubscription.unsubscribe();
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-07-20 16:44:54 +00:00
|
|
|
|
2020-02-13 19:24:39 +00:00
|
|
|
initSearching = () => {
|
2020-07-30 13:26:17 +00:00
|
|
|
logEvent(events.RL_SEARCH);
|
2022-01-14 22:06:55 +00:00
|
|
|
const { dispatch } = this.props;
|
2020-06-15 14:00:46 +00:00
|
|
|
this.internalSetState({ searching: true }, () => {
|
2022-01-14 22:06:55 +00:00
|
|
|
dispatch(openSearchHeader());
|
2021-04-07 18:56:16 +00:00
|
|
|
this.search('');
|
2020-07-06 20:56:28 +00:00
|
|
|
this.setHeader();
|
2020-06-15 14:00:46 +00:00
|
|
|
});
|
2019-09-16 20:26:32 +00:00
|
|
|
};
|
2018-07-10 13:40:32 +00:00
|
|
|
|
2020-02-13 19:24:39 +00:00
|
|
|
cancelSearch = () => {
|
|
|
|
const { searching } = this.state;
|
2022-01-14 22:06:55 +00:00
|
|
|
const { dispatch } = this.props;
|
2020-02-13 19:24:39 +00:00
|
|
|
|
|
|
|
if (!searching) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
Keyboard.dismiss();
|
|
|
|
|
2020-02-13 19:24:39 +00:00
|
|
|
this.setState({ searching: false, search: [] }, () => {
|
2020-07-06 20:56:28 +00:00
|
|
|
this.setHeader();
|
2022-01-14 22:06:55 +00:00
|
|
|
dispatch(closeSearchHeader());
|
2020-02-13 19:24:39 +00:00
|
|
|
setTimeout(() => {
|
2020-07-08 16:36:37 +00:00
|
|
|
this.scrollToTop();
|
2020-02-13 19:24:39 +00:00
|
|
|
}, 200);
|
|
|
|
});
|
2019-09-16 20:26:32 +00:00
|
|
|
};
|
2018-10-23 21:39:48 +00:00
|
|
|
|
2018-07-10 13:40:32 +00:00
|
|
|
handleBackPress = () => {
|
2018-11-27 19:40:53 +00:00
|
|
|
const { searching } = this.state;
|
|
|
|
if (searching) {
|
2020-02-13 19:24:39 +00:00
|
|
|
this.cancelSearch();
|
2018-11-27 19:40:53 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2019-09-16 20:26:32 +00:00
|
|
|
};
|
2018-02-16 18:34:25 +00:00
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
// eslint-disable-next-line react/sort-comp
|
2022-02-25 18:59:39 +00:00
|
|
|
search = debounce(async (text: string) => {
|
2018-08-31 18:13:30 +00:00
|
|
|
const result = await RocketChat.search({ text });
|
2020-06-15 14:00:46 +00:00
|
|
|
|
2020-02-13 19:24:39 +00:00
|
|
|
// if the search was cancelled before the promise is resolved
|
2020-06-15 14:00:46 +00:00
|
|
|
const { searching } = this.state;
|
2020-02-13 19:24:39 +00:00
|
|
|
if (!searching) {
|
|
|
|
return;
|
|
|
|
}
|
2018-10-23 21:39:48 +00:00
|
|
|
this.internalSetState({
|
2020-02-13 19:24:39 +00:00
|
|
|
search: result,
|
|
|
|
searching: true
|
2018-08-31 18:13:30 +00:00
|
|
|
});
|
2020-07-08 16:36:37 +00:00
|
|
|
this.scrollToTop();
|
2019-09-16 20:26:32 +00:00
|
|
|
}, 300);
|
2017-08-10 16:16:32 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
getRoomTitle = (item: ISubscription) => RocketChat.getRoomTitle(item);
|
2019-04-08 12:35:28 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
getRoomAvatar = (item: ISubscription) => RocketChat.getRoomAvatar(item);
|
2020-02-12 17:21:11 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
isGroupChat = (item: ISubscription) => RocketChat.isGroupChat(item);
|
2020-07-20 16:44:54 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
isRead = (item: ISubscription) => RocketChat.isRead(item);
|
2020-07-20 16:44:54 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
isSwipeEnabled = (item: IRoomItem) => !(item?.search || item?.joinCodeRequired || item?.outside);
|
2021-10-20 16:34:38 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
getUserPresence = (uid: string) => RocketChat.getUserPresence(uid);
|
2020-03-03 21:10:39 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
getUidDirectMessage = (room: ISubscription) => RocketChat.getUidDirectMessage(room);
|
2020-04-01 12:28:54 +00:00
|
|
|
|
2020-07-20 16:44:54 +00:00
|
|
|
get isGrouping() {
|
|
|
|
const { showUnread, showFavorites, groupByType } = this.props;
|
|
|
|
return showUnread || showFavorites || groupByType;
|
|
|
|
}
|
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
onPressItem = (item = {} as ISubscription) => {
|
2020-06-15 14:00:46 +00:00
|
|
|
const { navigation, isMasterDetail } = this.props;
|
2020-04-30 16:03:07 +00:00
|
|
|
if (!navigation.isFocused()) {
|
|
|
|
return;
|
|
|
|
}
|
2020-05-13 19:02:57 +00:00
|
|
|
|
|
|
|
this.cancelSearch();
|
2020-06-15 14:00:46 +00:00
|
|
|
this.goRoom({ item, isMasterDetail });
|
2019-09-16 20:26:32 +00:00
|
|
|
};
|
2017-09-21 17:08:00 +00:00
|
|
|
|
2020-07-08 16:36:37 +00:00
|
|
|
scrollToTop = () => {
|
|
|
|
if (this.scroll?.scrollToOffset) {
|
|
|
|
this.scroll.scrollToOffset({ offset: 0 });
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-07-08 16:36:37 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
toggleFav = async (rid: string, favorite: boolean) => {
|
2020-07-30 13:26:17 +00:00
|
|
|
logEvent(favorite ? events.RL_UNFAVORITE_CHANNEL : events.RL_FAVORITE_CHANNEL);
|
2019-07-01 14:20:38 +00:00
|
|
|
try {
|
2019-09-16 20:26:32 +00:00
|
|
|
const db = database.active;
|
2019-07-15 16:54:28 +00:00
|
|
|
const result = await RocketChat.toggleFavorite(rid, !favorite);
|
|
|
|
if (result.success) {
|
2021-02-26 16:25:51 +00:00
|
|
|
const subCollection = db.get('subscriptions');
|
2022-02-25 18:59:39 +00:00
|
|
|
await db.write(async () => {
|
2019-09-16 20:26:32 +00:00
|
|
|
try {
|
|
|
|
const subRecord = await subCollection.find(rid);
|
2021-09-13 20:41:05 +00:00
|
|
|
await subRecord.update(sub => {
|
2019-09-16 20:26:32 +00:00
|
|
|
sub.f = !favorite;
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
2019-07-15 16:54:28 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2019-07-01 14:20:38 +00:00
|
|
|
} catch (e) {
|
2022-02-25 18:59:39 +00:00
|
|
|
logEvent(events.RL_TOGGLE_FAVORITE_F);
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2019-07-01 14:20:38 +00:00
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
};
|
2019-07-01 14:20:38 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
toggleRead = async (rid: string, isRead: boolean) => {
|
2020-07-30 13:26:17 +00:00
|
|
|
logEvent(isRead ? events.RL_UNREAD_CHANNEL : events.RL_READ_CHANNEL);
|
2019-07-01 14:20:38 +00:00
|
|
|
try {
|
2019-09-16 20:26:32 +00:00
|
|
|
const db = database.active;
|
2019-07-04 16:15:30 +00:00
|
|
|
const result = await RocketChat.toggleRead(isRead, rid);
|
2021-08-27 16:33:29 +00:00
|
|
|
|
2019-07-04 16:15:30 +00:00
|
|
|
if (result.success) {
|
2021-02-26 16:25:51 +00:00
|
|
|
const subCollection = db.get('subscriptions');
|
2022-02-25 18:59:39 +00:00
|
|
|
await db.write(async () => {
|
2019-09-16 20:26:32 +00:00
|
|
|
try {
|
|
|
|
const subRecord = await subCollection.find(rid);
|
2021-09-13 20:41:05 +00:00
|
|
|
await subRecord.update(sub => {
|
2019-09-16 20:26:32 +00:00
|
|
|
sub.alert = isRead;
|
2021-08-27 16:33:29 +00:00
|
|
|
sub.unread = 0;
|
2019-09-16 20:26:32 +00:00
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
2019-07-04 16:15:30 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2019-07-01 14:20:38 +00:00
|
|
|
} catch (e) {
|
2020-07-30 13:26:17 +00:00
|
|
|
logEvent(events.RL_TOGGLE_READ_F);
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2019-07-01 14:20:38 +00:00
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
};
|
2019-07-01 14:20:38 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
hideChannel = async (rid: string, type: RoomTypes) => {
|
2020-07-30 13:26:17 +00:00
|
|
|
logEvent(events.RL_HIDE_CHANNEL);
|
2019-07-01 14:20:38 +00:00
|
|
|
try {
|
2019-09-16 20:26:32 +00:00
|
|
|
const db = database.active;
|
2019-07-04 16:15:30 +00:00
|
|
|
const result = await RocketChat.hideRoom(rid, type);
|
|
|
|
if (result.success) {
|
2021-02-26 16:25:51 +00:00
|
|
|
const subCollection = db.get('subscriptions');
|
2022-02-25 18:59:39 +00:00
|
|
|
await db.write(async () => {
|
2019-09-16 20:26:32 +00:00
|
|
|
try {
|
|
|
|
const subRecord = await subCollection.find(rid);
|
|
|
|
await subRecord.destroyPermanently();
|
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
|
|
|
}
|
2019-07-04 16:15:30 +00:00
|
|
|
});
|
|
|
|
}
|
2019-07-01 14:20:38 +00:00
|
|
|
} catch (e) {
|
2020-07-30 13:26:17 +00:00
|
|
|
logEvent(events.RL_HIDE_CHANNEL_F);
|
2019-08-23 13:18:47 +00:00
|
|
|
log(e);
|
2019-07-01 14:20:38 +00:00
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
};
|
2019-07-01 14:20:38 +00:00
|
|
|
|
2019-06-10 16:22:35 +00:00
|
|
|
goDirectory = () => {
|
2020-08-05 13:15:56 +00:00
|
|
|
logEvent(events.RL_GO_DIRECTORY);
|
2020-06-15 14:00:46 +00:00
|
|
|
const { navigation, isMasterDetail } = this.props;
|
|
|
|
if (isMasterDetail) {
|
|
|
|
navigation.navigate('ModalStackNavigator', { screen: 'DirectoryView' });
|
|
|
|
} else {
|
|
|
|
navigation.navigate('DirectoryView');
|
|
|
|
}
|
2019-09-16 20:26:32 +00:00
|
|
|
};
|
2019-06-10 16:22:35 +00:00
|
|
|
|
2020-07-31 18:22:30 +00:00
|
|
|
goQueue = () => {
|
|
|
|
logEvent(events.RL_GO_QUEUE);
|
2021-09-13 20:41:05 +00:00
|
|
|
const { navigation, isMasterDetail, queueSize, inquiryEnabled, user } = this.props;
|
2020-08-21 13:38:50 +00:00
|
|
|
|
|
|
|
// if not-available, prompt to change to available
|
2020-08-28 19:41:08 +00:00
|
|
|
if (!isOmnichannelStatusAvailable(user)) {
|
2020-08-21 13:38:50 +00:00
|
|
|
showConfirmationAlert({
|
|
|
|
message: I18n.t('Omnichannel_enable_alert'),
|
2020-08-25 20:04:18 +00:00
|
|
|
confirmationText: I18n.t('Yes'),
|
2021-09-13 20:41:05 +00:00
|
|
|
onPress: async () => {
|
2020-08-21 13:38:50 +00:00
|
|
|
try {
|
2020-08-28 19:41:08 +00:00
|
|
|
await changeLivechatStatus();
|
2020-08-21 13:38:50 +00:00
|
|
|
} catch {
|
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!inquiryEnabled) {
|
|
|
|
return;
|
|
|
|
}
|
2020-07-31 18:22:30 +00:00
|
|
|
// prevent navigation to empty list
|
|
|
|
if (!queueSize) {
|
|
|
|
return showErrorAlert(I18n.t('Queue_is_empty'), I18n.t('Oops'));
|
|
|
|
}
|
|
|
|
if (isMasterDetail) {
|
|
|
|
navigation.navigate('ModalStackNavigator', { screen: 'QueueListView' });
|
|
|
|
} else {
|
|
|
|
navigation.navigate('QueueListView');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
goRoom = ({ item, isMasterDetail }: { item: ISubscription; isMasterDetail: boolean }) => {
|
2020-08-05 13:15:56 +00:00
|
|
|
logEvent(events.RL_GO_ROOM);
|
2020-06-15 14:00:46 +00:00
|
|
|
const { item: currentItem } = this.state;
|
|
|
|
const { rooms } = this.props;
|
2022-02-25 18:59:39 +00:00
|
|
|
// @ts-ignore
|
2020-06-15 14:00:46 +00:00
|
|
|
if (currentItem?.rid === item.rid || rooms?.includes(item.rid)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Only mark room as focused when in master detail layout
|
|
|
|
if (isMasterDetail) {
|
|
|
|
this.setState({ item });
|
|
|
|
}
|
|
|
|
goRoom({ item, isMasterDetail });
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-06-15 14:00:46 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
goRoomByIndex = (index: number) => {
|
2019-11-25 20:01:17 +00:00
|
|
|
const { chats } = this.state;
|
2020-06-15 14:00:46 +00:00
|
|
|
const { isMasterDetail } = this.props;
|
2019-11-25 20:01:17 +00:00
|
|
|
const filteredChats = chats.filter(c => !c.separator);
|
|
|
|
const room = filteredChats[index - 1];
|
|
|
|
if (room) {
|
2020-06-15 14:00:46 +00:00
|
|
|
this.goRoom({ item: room, isMasterDetail });
|
2019-11-25 20:01:17 +00:00
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-11-25 20:01:17 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
findOtherRoom = (index: number, sign: number): ISubscription | void => {
|
2019-11-25 20:01:17 +00:00
|
|
|
const { chats } = this.state;
|
|
|
|
const otherIndex = index + sign;
|
|
|
|
const otherRoom = chats[otherIndex];
|
|
|
|
if (!otherRoom) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (otherRoom.separator) {
|
|
|
|
return this.findOtherRoom(otherIndex, sign);
|
|
|
|
}
|
2022-02-25 18:59:39 +00:00
|
|
|
return otherRoom;
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-11-25 20:01:17 +00:00
|
|
|
|
|
|
|
// Go to previous or next room based on sign (-1 or 1)
|
|
|
|
// It's used by iPad key commands
|
2022-02-25 18:59:39 +00:00
|
|
|
goOtherRoom = (sign: number) => {
|
2020-06-15 14:00:46 +00:00
|
|
|
const { item } = this.state;
|
|
|
|
if (!item) {
|
2019-11-25 20:01:17 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-06-15 14:00:46 +00:00
|
|
|
|
2019-11-25 20:01:17 +00:00
|
|
|
// Don't run during search
|
|
|
|
const { search } = this.state;
|
|
|
|
if (search.length > 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { chats } = this.state;
|
2020-06-15 14:00:46 +00:00
|
|
|
const { isMasterDetail } = this.props;
|
|
|
|
const index = chats.findIndex(c => c.rid === item.rid);
|
2019-11-25 20:01:17 +00:00
|
|
|
const otherRoom = this.findOtherRoom(index, sign);
|
|
|
|
if (otherRoom) {
|
2020-06-15 14:00:46 +00:00
|
|
|
this.goRoom({ item: otherRoom, isMasterDetail });
|
2019-11-25 20:01:17 +00:00
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-11-25 20:01:17 +00:00
|
|
|
|
2020-07-30 13:26:17 +00:00
|
|
|
goToNewMessage = () => {
|
2020-08-05 13:15:56 +00:00
|
|
|
logEvent(events.RL_GO_NEW_MSG);
|
2020-07-30 13:26:17 +00:00
|
|
|
const { navigation, isMasterDetail } = this.props;
|
|
|
|
|
|
|
|
if (isMasterDetail) {
|
|
|
|
navigation.navigate('ModalStackNavigator', { screen: 'NewMessageView' });
|
|
|
|
} else {
|
|
|
|
navigation.navigate('NewMessageStackNavigator');
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-07-30 13:26:17 +00:00
|
|
|
|
2020-09-11 14:31:38 +00:00
|
|
|
goEncryption = () => {
|
|
|
|
logEvent(events.RL_GO_E2E_SAVE_PASSWORD);
|
|
|
|
const { navigation, isMasterDetail, encryptionBanner } = this.props;
|
|
|
|
|
|
|
|
const isSavePassword = encryptionBanner === E2E_BANNER_TYPE.SAVE_PASSWORD;
|
|
|
|
if (isMasterDetail) {
|
|
|
|
const screen = isSavePassword ? 'E2ESaveYourPasswordView' : 'E2EEnterYourPasswordView';
|
|
|
|
navigation.navigate('ModalStackNavigator', { screen });
|
|
|
|
} else {
|
|
|
|
const screen = isSavePassword ? 'E2ESaveYourPasswordStackNavigator' : 'E2EEnterYourPasswordStackNavigator';
|
|
|
|
navigation.navigate(screen);
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-09-11 14:31:38 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
handleCommands = ({ event }: { event: IKeyCommandEvent }) => {
|
2022-02-02 18:27:10 +00:00
|
|
|
const { navigation, server, isMasterDetail, dispatch } = this.props;
|
2019-11-25 20:01:17 +00:00
|
|
|
const { input } = event;
|
|
|
|
if (handleCommandShowPreferences(event)) {
|
2020-06-15 14:00:46 +00:00
|
|
|
navigation.navigate('SettingsView');
|
2019-11-25 20:01:17 +00:00
|
|
|
} else if (handleCommandSearching(event)) {
|
2020-07-06 20:56:28 +00:00
|
|
|
this.initSearching();
|
2019-11-25 20:01:17 +00:00
|
|
|
} else if (handleCommandSelectRoom(event)) {
|
|
|
|
this.goRoomByIndex(input);
|
|
|
|
} else if (handleCommandPreviousRoom(event)) {
|
|
|
|
this.goOtherRoom(-1);
|
|
|
|
} else if (handleCommandNextRoom(event)) {
|
|
|
|
this.goOtherRoom(1);
|
|
|
|
} else if (handleCommandShowNewMessage(event)) {
|
2020-06-15 14:00:46 +00:00
|
|
|
if (isMasterDetail) {
|
|
|
|
navigation.navigate('ModalStackNavigator', { screen: 'NewMessageView' });
|
|
|
|
} else {
|
|
|
|
navigation.navigate('NewMessageStack');
|
|
|
|
}
|
2019-11-25 20:01:17 +00:00
|
|
|
} else if (handleCommandAddNewServer(event)) {
|
2021-09-23 14:17:53 +00:00
|
|
|
batch(() => {
|
2022-02-02 18:27:10 +00:00
|
|
|
dispatch(appStart({ root: RootEnum.ROOT_OUTSIDE }));
|
|
|
|
dispatch(serverInitAdd(server));
|
2021-09-23 14:17:53 +00:00
|
|
|
});
|
2019-11-25 20:01:17 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-02-11 20:13:44 +00:00
|
|
|
onRefresh = () => {
|
2020-02-13 19:24:39 +00:00
|
|
|
const { searching } = this.state;
|
2022-01-14 22:06:55 +00:00
|
|
|
const { dispatch } = this.props;
|
2020-02-13 19:24:39 +00:00
|
|
|
if (searching) {
|
|
|
|
return;
|
|
|
|
}
|
2022-01-14 22:06:55 +00:00
|
|
|
dispatch(roomsRequest({ allData: true }));
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-02-11 20:13:44 +00:00
|
|
|
|
2020-07-20 16:44:54 +00:00
|
|
|
onEndReached = () => {
|
|
|
|
// Run only when we're not grouping by anything
|
|
|
|
if (!this.isGrouping) {
|
|
|
|
this.getSubscriptions();
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-07-20 16:44:54 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
getScrollRef = (ref: FlatList) => (this.scroll = ref);
|
2018-09-26 13:56:36 +00:00
|
|
|
|
2019-04-17 18:57:46 +00:00
|
|
|
renderListHeader = () => {
|
2020-02-13 19:24:39 +00:00
|
|
|
const { searching } = this.state;
|
2022-02-25 18:59:39 +00:00
|
|
|
const { queueSize, inquiryEnabled, encryptionBanner, user, theme } = this.props;
|
2018-09-25 19:28:42 +00:00
|
|
|
return (
|
2019-04-17 18:57:46 +00:00
|
|
|
<ListHeader
|
2020-02-13 19:24:39 +00:00
|
|
|
searching={searching}
|
2020-09-11 14:31:38 +00:00
|
|
|
goEncryption={this.goEncryption}
|
2020-07-31 18:22:30 +00:00
|
|
|
goQueue={this.goQueue}
|
|
|
|
queueSize={queueSize}
|
|
|
|
inquiryEnabled={inquiryEnabled}
|
2020-09-11 14:31:38 +00:00
|
|
|
encryptionBanner={encryptionBanner}
|
2020-08-21 13:38:50 +00:00
|
|
|
user={user}
|
2022-02-25 18:59:39 +00:00
|
|
|
theme={theme}
|
2019-04-17 18:57:46 +00:00
|
|
|
/>
|
2018-09-25 19:28:42 +00:00
|
|
|
);
|
2019-09-16 20:26:32 +00:00
|
|
|
};
|
2018-08-31 16:46:33 +00:00
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
renderHeader = () => {
|
2020-10-30 16:15:58 +00:00
|
|
|
const { isMasterDetail } = this.props;
|
2020-06-15 14:00:46 +00:00
|
|
|
|
|
|
|
if (!isMasterDetail) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
const options = this.getHeader() as any;
|
2021-09-13 20:41:05 +00:00
|
|
|
return <Header {...options} />;
|
|
|
|
};
|
2020-06-15 14:00:46 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
renderItem = ({ item }: { item: ISubscription }) => {
|
2019-11-25 20:01:17 +00:00
|
|
|
if (item.separator) {
|
|
|
|
return this.renderSectionHeader(item.rid);
|
|
|
|
}
|
|
|
|
|
2020-06-17 17:35:58 +00:00
|
|
|
const { item: currentItem } = this.state;
|
2019-03-29 19:36:07 +00:00
|
|
|
const {
|
2020-11-04 16:53:44 +00:00
|
|
|
user: { username },
|
2019-11-25 20:01:17 +00:00
|
|
|
StoreLastMessage,
|
2020-02-21 16:13:05 +00:00
|
|
|
useRealName,
|
2019-12-04 16:39:53 +00:00
|
|
|
theme,
|
2020-06-17 17:35:58 +00:00
|
|
|
isMasterDetail,
|
2021-10-06 20:30:10 +00:00
|
|
|
width,
|
|
|
|
showAvatar,
|
|
|
|
displayMode
|
2019-03-29 19:36:07 +00:00
|
|
|
} = this.props;
|
2020-04-01 12:28:54 +00:00
|
|
|
const id = this.getUidDirectMessage(item);
|
2021-10-20 16:34:38 +00:00
|
|
|
const swipeEnabled = this.isSwipeEnabled(item);
|
2018-09-25 19:28:42 +00:00
|
|
|
|
2019-09-16 20:26:32 +00:00
|
|
|
return (
|
|
|
|
<RoomItem
|
2020-07-20 16:44:54 +00:00
|
|
|
item={item}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2019-09-16 20:26:32 +00:00
|
|
|
id={id}
|
2020-07-20 16:44:54 +00:00
|
|
|
type={item.t}
|
2019-09-16 20:26:32 +00:00
|
|
|
username={username}
|
|
|
|
showLastMessage={StoreLastMessage}
|
2020-07-20 16:44:54 +00:00
|
|
|
onPress={this.onPressItem}
|
2020-06-15 14:00:46 +00:00
|
|
|
width={isMasterDetail ? MAX_SIDEBAR_WIDTH : width}
|
2019-09-16 20:26:32 +00:00
|
|
|
toggleFav={this.toggleFav}
|
|
|
|
toggleRead={this.toggleRead}
|
|
|
|
hideChannel={this.hideChannel}
|
2020-02-21 16:13:05 +00:00
|
|
|
useRealName={useRealName}
|
2020-03-03 21:10:39 +00:00
|
|
|
getUserPresence={this.getUserPresence}
|
2020-07-20 16:44:54 +00:00
|
|
|
getRoomTitle={this.getRoomTitle}
|
|
|
|
getRoomAvatar={this.getRoomAvatar}
|
|
|
|
getIsGroupChat={this.isGroupChat}
|
|
|
|
getIsRead={this.isRead}
|
2020-05-08 17:36:10 +00:00
|
|
|
visitor={item.visitor}
|
2020-06-15 14:00:46 +00:00
|
|
|
isFocused={currentItem?.rid === item.rid}
|
2021-10-20 16:34:38 +00:00
|
|
|
swipeEnabled={swipeEnabled}
|
2021-10-06 20:30:10 +00:00
|
|
|
showAvatar={showAvatar}
|
|
|
|
displayMode={displayMode}
|
2019-09-16 20:26:32 +00:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
2017-09-21 17:08:00 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
renderSectionHeader = (header: string) => {
|
2019-12-04 16:39:53 +00:00
|
|
|
const { theme } = this.props;
|
|
|
|
return (
|
|
|
|
<View style={[styles.groupTitleContainer, { backgroundColor: themes[theme].backgroundColor }]}>
|
|
|
|
<Text style={[styles.groupTitle, { color: themes[theme].controlText }]}>{I18n.t(header)}</Text>
|
|
|
|
</View>
|
|
|
|
);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2018-08-31 16:46:33 +00:00
|
|
|
|
|
|
|
renderScroll = () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
const { loading, chats, search, searching } = this.state;
|
2021-10-06 20:30:10 +00:00
|
|
|
const { theme, refreshing, displayMode } = this.props;
|
|
|
|
|
2022-01-11 14:47:23 +00:00
|
|
|
const height = displayMode === DisplayMode.Condensed ? ROW_HEIGHT_CONDENSED : ROW_HEIGHT;
|
2018-09-25 19:28:42 +00:00
|
|
|
|
|
|
|
if (loading) {
|
2019-12-04 16:39:53 +00:00
|
|
|
return <ActivityIndicator theme={theme} />;
|
2018-08-01 19:35:06 +00:00
|
|
|
}
|
2018-08-31 16:46:33 +00:00
|
|
|
|
2018-08-01 19:35:06 +00:00
|
|
|
return (
|
2019-11-25 20:01:17 +00:00
|
|
|
<FlatList
|
2018-09-26 13:56:36 +00:00
|
|
|
ref={this.getScrollRef}
|
2020-02-13 19:24:39 +00:00
|
|
|
data={searching ? search : chats}
|
|
|
|
extraData={searching ? search : chats}
|
2019-11-25 20:01:17 +00:00
|
|
|
keyExtractor={keyExtractor}
|
2019-12-04 16:39:53 +00:00
|
|
|
style={[styles.list, { backgroundColor: themes[theme].backgroundColor }]}
|
2019-11-25 20:01:17 +00:00
|
|
|
renderItem={this.renderItem}
|
|
|
|
ListHeaderComponent={this.renderListHeader}
|
2021-10-06 20:30:10 +00:00
|
|
|
getItemLayout={(data, index) => getItemLayout(data, index, height)}
|
2019-11-25 20:01:17 +00:00
|
|
|
removeClippedSubviews={isIOS}
|
2018-08-01 19:35:06 +00:00
|
|
|
keyboardShouldPersistTaps='always'
|
2019-11-25 20:01:17 +00:00
|
|
|
initialNumToRender={INITIAL_NUM_TO_RENDER}
|
2021-09-13 20:41:05 +00:00
|
|
|
refreshControl={
|
|
|
|
<RefreshControl refreshing={refreshing} onRefresh={this.onRefresh} tintColor={themes[theme].auxiliaryText} />
|
|
|
|
}
|
2019-11-25 20:01:17 +00:00
|
|
|
windowSize={9}
|
2020-07-20 16:44:54 +00:00
|
|
|
onEndReached={this.onEndReached}
|
|
|
|
onEndReachedThreshold={0.5}
|
2019-11-25 20:01:17 +00:00
|
|
|
/>
|
2018-08-01 19:35:06 +00:00
|
|
|
);
|
2019-09-16 20:26:32 +00:00
|
|
|
};
|
2017-09-21 17:08:00 +00:00
|
|
|
|
2018-08-31 16:46:33 +00:00
|
|
|
render = () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
console.count(`${this.constructor.name}.render calls`);
|
2021-10-06 20:30:10 +00:00
|
|
|
const { showServerDropdown, theme, navigation } = this.props;
|
2018-08-31 16:46:33 +00:00
|
|
|
|
|
|
|
return (
|
2020-10-30 13:59:44 +00:00
|
|
|
<SafeAreaView testID='rooms-list-view' style={{ backgroundColor: themes[theme].backgroundColor }}>
|
|
|
|
<StatusBar />
|
2020-06-15 14:00:46 +00:00
|
|
|
{this.renderHeader()}
|
2018-08-31 16:46:33 +00:00
|
|
|
{this.renderScroll()}
|
2022-02-25 18:59:39 +00:00
|
|
|
{/* TODO - this ts-ignore is here because the route props, on IBaseScreen*/}
|
|
|
|
{/* @ts-ignore*/}
|
|
|
|
{showServerDropdown ? <ServerDropdown navigation={navigation} theme={theme} /> : null}
|
2018-08-31 16:46:33 +00:00
|
|
|
</SafeAreaView>
|
|
|
|
);
|
2019-09-16 20:26:32 +00:00
|
|
|
};
|
2017-08-03 18:23:43 +00:00
|
|
|
}
|
2019-08-07 13:51:34 +00:00
|
|
|
|
2022-02-25 18:59:39 +00:00
|
|
|
const mapStateToProps = (state: IApplicationState) => ({
|
2020-02-11 14:09:14 +00:00
|
|
|
user: getUserSelector(state),
|
2020-06-15 14:00:46 +00:00
|
|
|
isMasterDetail: state.app.isMasterDetail,
|
2019-08-07 13:51:34 +00:00
|
|
|
server: state.server.server,
|
2021-01-13 14:16:00 +00:00
|
|
|
changingServer: state.server.changingServer,
|
2019-08-07 13:51:34 +00:00
|
|
|
searchText: state.rooms.searchText,
|
|
|
|
loadingServer: state.server.loading,
|
|
|
|
showServerDropdown: state.rooms.showServerDropdown,
|
2020-02-11 20:13:44 +00:00
|
|
|
refreshing: state.rooms.refreshing,
|
2019-08-07 13:51:34 +00:00
|
|
|
sortBy: state.sortPreferences.sortBy,
|
|
|
|
groupByType: state.sortPreferences.groupByType,
|
|
|
|
showFavorites: state.sortPreferences.showFavorites,
|
|
|
|
showUnread: state.sortPreferences.showUnread,
|
|
|
|
useRealName: state.settings.UI_Use_Real_Name,
|
2020-06-15 14:00:46 +00:00
|
|
|
StoreLastMessage: state.settings.Store_Last_Message,
|
2020-07-31 18:22:30 +00:00
|
|
|
rooms: state.room.rooms,
|
|
|
|
queueSize: getInquiryQueueSelector(state).length,
|
2020-09-11 14:31:38 +00:00
|
|
|
inquiryEnabled: state.inquiry.enabled,
|
2021-10-05 13:59:40 +00:00
|
|
|
encryptionBanner: state.encryption.banner,
|
2021-10-06 20:30:10 +00:00
|
|
|
showAvatar: state.sortPreferences.showAvatar,
|
|
|
|
displayMode: state.sortPreferences.displayMode,
|
2021-10-05 13:59:40 +00:00
|
|
|
createTeamPermission: state.permissions['create-team'],
|
|
|
|
createDirectMessagePermission: state.permissions['create-d'],
|
|
|
|
createPublicChannelPermission: state.permissions['create-c'],
|
|
|
|
createPrivateChannelPermission: state.permissions['create-p'],
|
|
|
|
createDiscussionPermission: state.permissions['start-discussion']
|
2019-08-07 13:51:34 +00:00
|
|
|
});
|
|
|
|
|
2022-01-14 22:06:55 +00:00
|
|
|
export default connect(mapStateToProps)(withDimensions(withTheme(withSafeAreaInsets(RoomsListView))));
|