2019-06-10 16:22:35 +00:00
|
|
|
import React from 'react';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { FlatList, Text, View } from 'react-native';
|
2019-06-10 16:22:35 +00:00
|
|
|
import { connect } from 'react-redux';
|
2022-01-17 16:10:39 +00:00
|
|
|
import { StackNavigationOptions, StackNavigationProp } from '@react-navigation/stack';
|
2019-06-10 16:22:35 +00:00
|
|
|
|
2021-12-03 19:27:57 +00:00
|
|
|
import { ChatsStackParamList } from '../../stacks/types';
|
2021-09-13 20:41:05 +00:00
|
|
|
import * as List from '../../containers/List';
|
2019-12-04 16:39:53 +00:00
|
|
|
import Touch from '../../utils/touch';
|
2019-06-10 16:22:35 +00:00
|
|
|
import RocketChat from '../../lib/rocketchat';
|
2019-07-18 17:44:02 +00:00
|
|
|
import DirectoryItem from '../../presentation/DirectoryItem';
|
2019-06-10 16:22:35 +00:00
|
|
|
import sharedStyles from '../Styles';
|
|
|
|
import I18n from '../../i18n';
|
|
|
|
import SearchBox from '../../containers/SearchBox';
|
|
|
|
import { CustomIcon } from '../../lib/Icons';
|
|
|
|
import StatusBar from '../../containers/StatusBar';
|
2019-12-04 16:39:53 +00:00
|
|
|
import ActivityIndicator from '../../containers/ActivityIndicator';
|
2020-10-30 16:15:58 +00:00
|
|
|
import * as HeaderButton from '../../containers/HeaderButton';
|
2019-06-10 16:22:35 +00:00
|
|
|
import debounce from '../../utils/debounce';
|
2021-09-13 20:41:05 +00:00
|
|
|
import log, { events, logEvent } from '../../utils/log';
|
2019-12-04 16:39:53 +00:00
|
|
|
import { withTheme } from '../../theme';
|
|
|
|
import { themes } from '../../constants/colors';
|
2020-02-11 14:09:14 +00:00
|
|
|
import { getUserSelector } from '../../selectors/login';
|
2020-06-15 14:00:46 +00:00
|
|
|
import SafeAreaView from '../../containers/SafeAreaView';
|
|
|
|
import { goRoom } from '../../utils/goRoom';
|
2021-09-13 20:41:05 +00:00
|
|
|
import styles from './styles';
|
|
|
|
import Options from './Options';
|
2019-06-10 16:22:35 +00:00
|
|
|
|
2021-09-15 20:37:21 +00:00
|
|
|
interface IDirectoryViewProps {
|
2021-12-03 19:27:57 +00:00
|
|
|
navigation: StackNavigationProp<ChatsStackParamList, 'DirectoryView'>;
|
2021-09-15 20:37:21 +00:00
|
|
|
baseUrl: string;
|
|
|
|
isFederationEnabled: boolean;
|
|
|
|
user: {
|
|
|
|
id: string;
|
|
|
|
token: string;
|
|
|
|
};
|
|
|
|
theme: string;
|
|
|
|
directoryDefaultView: string;
|
|
|
|
isMasterDetail: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
class DirectoryView extends React.Component<IDirectoryViewProps, any> {
|
2022-01-17 16:10:39 +00:00
|
|
|
static navigationOptions = ({ navigation, isMasterDetail }: IDirectoryViewProps) => {
|
|
|
|
const options: StackNavigationOptions = {
|
2019-11-25 20:01:17 +00:00
|
|
|
title: I18n.t('Directory')
|
|
|
|
};
|
2020-06-15 14:00:46 +00:00
|
|
|
if (isMasterDetail) {
|
2020-10-30 16:15:58 +00:00
|
|
|
options.headerLeft = () => <HeaderButton.CloseModal navigation={navigation} testID='directory-view-close' />;
|
2019-11-25 20:01:17 +00:00
|
|
|
}
|
|
|
|
return options;
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-06-10 16:22:35 +00:00
|
|
|
|
2021-09-15 20:37:21 +00:00
|
|
|
constructor(props: IDirectoryViewProps) {
|
2019-06-10 16:22:35 +00:00
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
data: [],
|
|
|
|
loading: false,
|
|
|
|
text: '',
|
|
|
|
total: -1,
|
|
|
|
showOptionsDropdown: false,
|
|
|
|
globalUsers: true,
|
2020-03-30 14:20:55 +00:00
|
|
|
type: props.directoryDefaultView
|
2019-06-10 16:22:35 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
this.load({});
|
|
|
|
}
|
|
|
|
|
2021-09-15 20:37:21 +00:00
|
|
|
onSearchChangeText = (text: string) => {
|
2020-11-03 12:40:33 +00:00
|
|
|
this.setState({ text }, this.search);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-06-10 16:22:35 +00:00
|
|
|
|
|
|
|
// eslint-disable-next-line react/sort-comp
|
2021-09-13 20:41:05 +00:00
|
|
|
load = debounce(async ({ newSearch = false }) => {
|
2019-06-10 16:22:35 +00:00
|
|
|
if (newSearch) {
|
|
|
|
this.setState({ data: [], total: -1, loading: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
const {
|
2021-09-13 20:41:05 +00:00
|
|
|
loading,
|
|
|
|
text,
|
|
|
|
total,
|
|
|
|
data: { length }
|
2019-06-10 16:22:35 +00:00
|
|
|
} = this.state;
|
|
|
|
if (loading || length === total) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({ loading: true });
|
|
|
|
|
|
|
|
try {
|
|
|
|
const { data, type, globalUsers } = this.state;
|
|
|
|
const query = { text, type, workspace: globalUsers ? 'all' : 'local' };
|
|
|
|
const directories = await RocketChat.getDirectory({
|
|
|
|
query,
|
|
|
|
offset: data.length,
|
|
|
|
count: 50,
|
2021-09-13 20:41:05 +00:00
|
|
|
sort: type === 'users' ? { username: 1 } : { usersCount: -1 }
|
2019-06-10 16:22:35 +00:00
|
|
|
});
|
|
|
|
if (directories.success) {
|
|
|
|
this.setState({
|
|
|
|
data: [...data, ...directories.result],
|
|
|
|
loading: false,
|
|
|
|
total: directories.total
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.setState({ loading: false });
|
|
|
|
}
|
2019-08-23 13:18:47 +00:00
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
2019-06-10 16:22:35 +00:00
|
|
|
this.setState({ loading: false });
|
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
}, 200);
|
2019-06-10 16:22:35 +00:00
|
|
|
|
|
|
|
search = () => {
|
|
|
|
this.load({ newSearch: true });
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-06-10 16:22:35 +00:00
|
|
|
|
2021-09-15 20:37:21 +00:00
|
|
|
changeType = (type: string) => {
|
2019-06-10 16:22:35 +00:00
|
|
|
this.setState({ type, data: [] }, () => this.search());
|
2020-07-30 13:26:17 +00:00
|
|
|
|
|
|
|
if (type === 'users') {
|
|
|
|
logEvent(events.DIRECTORY_SEARCH_USERS);
|
|
|
|
} else if (type === 'channels') {
|
|
|
|
logEvent(events.DIRECTORY_SEARCH_CHANNELS);
|
2021-06-04 18:07:26 +00:00
|
|
|
} else if (type === 'teams') {
|
|
|
|
logEvent(events.DIRECTORY_SEARCH_TEAMS);
|
2020-07-30 13:26:17 +00:00
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-06-10 16:22:35 +00:00
|
|
|
|
|
|
|
toggleWorkspace = () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
this.setState(
|
2021-09-15 20:37:21 +00:00
|
|
|
({ globalUsers }: any) => ({ globalUsers: !globalUsers, data: [] }),
|
2021-09-13 20:41:05 +00:00
|
|
|
() => this.search()
|
|
|
|
);
|
|
|
|
};
|
2019-06-10 16:22:35 +00:00
|
|
|
|
|
|
|
toggleDropdown = () => {
|
2021-09-15 20:37:21 +00:00
|
|
|
this.setState(({ showOptionsDropdown }: any) => ({ showOptionsDropdown: !showOptionsDropdown }));
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-06-10 16:22:35 +00:00
|
|
|
|
2021-09-15 20:37:21 +00:00
|
|
|
goRoom = (item: any) => {
|
|
|
|
const { navigation, isMasterDetail }: any = this.props;
|
2020-06-15 14:00:46 +00:00
|
|
|
if (isMasterDetail) {
|
|
|
|
navigation.navigate('DrawerNavigator');
|
|
|
|
} else {
|
|
|
|
navigation.navigate('RoomsListView');
|
|
|
|
}
|
|
|
|
goRoom({ item, isMasterDetail });
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-06-10 16:22:35 +00:00
|
|
|
|
2021-09-15 20:37:21 +00:00
|
|
|
onPressItem = async (item: any) => {
|
2019-06-10 16:22:35 +00:00
|
|
|
const { type } = this.state;
|
|
|
|
if (type === 'users') {
|
|
|
|
const result = await RocketChat.createDirectMessage(item.username);
|
|
|
|
if (result.success) {
|
|
|
|
this.goRoom({ rid: result.room._id, name: item.username, t: 'd' });
|
|
|
|
}
|
2021-06-04 18:07:26 +00:00
|
|
|
} else if (['p', 'c'].includes(item.t) && !item.teamMain) {
|
2022-02-15 18:50:55 +00:00
|
|
|
const { room }: any = await RocketChat.getRoomInfo(item._id);
|
2020-04-13 12:51:16 +00:00
|
|
|
this.goRoom({
|
2021-09-13 20:41:05 +00:00
|
|
|
rid: item._id,
|
|
|
|
name: item.name,
|
|
|
|
joinCodeRequired: room.joinCodeRequired,
|
|
|
|
t: item.t,
|
|
|
|
search: true
|
2020-04-13 12:51:16 +00:00
|
|
|
});
|
2021-06-04 18:07:26 +00:00
|
|
|
} else {
|
|
|
|
this.goRoom({
|
2021-09-13 20:41:05 +00:00
|
|
|
rid: item._id,
|
|
|
|
name: item.name,
|
|
|
|
t: item.t,
|
|
|
|
search: true,
|
|
|
|
teamMain: item.teamMain,
|
|
|
|
teamId: item.teamId
|
2021-06-04 18:07:26 +00:00
|
|
|
});
|
2019-06-10 16:22:35 +00:00
|
|
|
}
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-06-10 16:22:35 +00:00
|
|
|
|
|
|
|
renderHeader = () => {
|
|
|
|
const { type } = this.state;
|
2019-12-04 16:39:53 +00:00
|
|
|
const { theme } = this.props;
|
2021-06-04 18:07:26 +00:00
|
|
|
let text = 'Users';
|
|
|
|
let icon = 'user';
|
|
|
|
|
|
|
|
if (type === 'channels') {
|
|
|
|
text = 'Channels';
|
|
|
|
icon = 'channel-public';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (type === 'teams') {
|
|
|
|
text = 'Teams';
|
|
|
|
icon = 'teams';
|
|
|
|
}
|
|
|
|
|
2019-06-10 16:22:35 +00:00
|
|
|
return (
|
2019-09-24 20:26:56 +00:00
|
|
|
<>
|
2021-09-13 20:41:05 +00:00
|
|
|
<SearchBox onChangeText={this.onSearchChangeText} onSubmitEditing={this.search} testID='directory-view-search' />
|
|
|
|
<Touch onPress={this.toggleDropdown} style={styles.dropdownItemButton} testID='directory-view-dropdown' theme={theme}>
|
|
|
|
<View
|
|
|
|
style={[
|
|
|
|
sharedStyles.separatorVertical,
|
|
|
|
styles.toggleDropdownContainer,
|
|
|
|
{ borderColor: themes[theme].separatorColor }
|
|
|
|
]}>
|
2021-06-04 18:07:26 +00:00
|
|
|
<CustomIcon style={[styles.toggleDropdownIcon, { color: themes[theme].tintColor }]} size={20} name={icon} />
|
|
|
|
<Text style={[styles.toggleDropdownText, { color: themes[theme].tintColor }]}>{I18n.t(text)}</Text>
|
2021-09-13 20:41:05 +00:00
|
|
|
<CustomIcon
|
|
|
|
name='chevron-down'
|
|
|
|
size={20}
|
|
|
|
style={[styles.toggleDropdownArrow, { color: themes[theme].auxiliaryTintColor }]}
|
|
|
|
/>
|
2019-06-10 16:22:35 +00:00
|
|
|
</View>
|
|
|
|
</Touch>
|
2019-09-24 20:26:56 +00:00
|
|
|
</>
|
2019-06-10 16:22:35 +00:00
|
|
|
);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-06-10 16:22:35 +00:00
|
|
|
|
2021-09-15 20:37:21 +00:00
|
|
|
renderItem = ({ item, index }: any) => {
|
2019-06-10 16:22:35 +00:00
|
|
|
const { data, type } = this.state;
|
2019-12-04 16:39:53 +00:00
|
|
|
const { baseUrl, user, theme } = this.props;
|
2019-06-10 16:22:35 +00:00
|
|
|
|
|
|
|
let style;
|
|
|
|
if (index === data.length - 1) {
|
2020-04-01 12:28:54 +00:00
|
|
|
style = {
|
|
|
|
...sharedStyles.separatorBottom,
|
|
|
|
borderColor: themes[theme].separatorColor
|
|
|
|
};
|
2019-06-10 16:22:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const commonProps = {
|
|
|
|
title: item.name,
|
|
|
|
onPress: () => this.onPressItem(item),
|
|
|
|
baseUrl,
|
2021-09-13 20:41:05 +00:00
|
|
|
testID: `directory-view-item-${item.name}`.toLowerCase(),
|
2019-06-10 16:22:35 +00:00
|
|
|
style,
|
2019-12-04 16:39:53 +00:00
|
|
|
user,
|
2020-10-30 13:51:04 +00:00
|
|
|
theme,
|
|
|
|
rid: item._id
|
2019-06-10 16:22:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (type === 'users') {
|
|
|
|
return (
|
|
|
|
<DirectoryItem
|
|
|
|
avatar={item.username}
|
|
|
|
description={item.username}
|
|
|
|
rightLabel={item.federation && item.federation.peer}
|
|
|
|
type='d'
|
|
|
|
{...commonProps}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
2021-06-04 18:07:26 +00:00
|
|
|
|
|
|
|
if (type === 'teams') {
|
|
|
|
return (
|
|
|
|
<DirectoryItem
|
|
|
|
avatar={item.name}
|
|
|
|
description={item.name}
|
|
|
|
rightLabel={I18n.t('N_channels', { n: item.roomsCount })}
|
|
|
|
type={item.t}
|
|
|
|
teamMain={item.teamMain}
|
|
|
|
{...commonProps}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
2019-06-10 16:22:35 +00:00
|
|
|
return (
|
|
|
|
<DirectoryItem
|
|
|
|
avatar={item.name}
|
|
|
|
description={item.topic}
|
|
|
|
rightLabel={I18n.t('N_users', { n: item.usersCount })}
|
2021-06-04 18:07:26 +00:00
|
|
|
type={item.t}
|
2019-06-10 16:22:35 +00:00
|
|
|
{...commonProps}
|
|
|
|
/>
|
|
|
|
);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-06-10 16:22:35 +00:00
|
|
|
|
|
|
|
render = () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
const { data, loading, showOptionsDropdown, type, globalUsers } = this.state;
|
2019-12-04 16:39:53 +00:00
|
|
|
const { isFederationEnabled, theme } = this.props;
|
2019-06-10 16:22:35 +00:00
|
|
|
return (
|
2021-09-13 20:41:05 +00:00
|
|
|
<SafeAreaView style={{ backgroundColor: themes[theme].backgroundColor }} testID='directory-view'>
|
2020-10-30 13:59:44 +00:00
|
|
|
<StatusBar />
|
2019-06-10 16:22:35 +00:00
|
|
|
<FlatList
|
|
|
|
data={data}
|
|
|
|
style={styles.list}
|
|
|
|
contentContainerStyle={styles.listContainer}
|
|
|
|
extraData={this.state}
|
|
|
|
keyExtractor={item => item._id}
|
|
|
|
ListHeaderComponent={this.renderHeader}
|
|
|
|
renderItem={this.renderItem}
|
2021-02-26 16:27:04 +00:00
|
|
|
ItemSeparatorComponent={List.Separator}
|
2019-06-10 16:22:35 +00:00
|
|
|
keyboardShouldPersistTaps='always'
|
2019-12-04 16:39:53 +00:00
|
|
|
ListFooterComponent={loading ? <ActivityIndicator theme={theme} /> : null}
|
2019-06-10 16:22:35 +00:00
|
|
|
onEndReached={() => this.load({})}
|
|
|
|
/>
|
2021-09-13 20:41:05 +00:00
|
|
|
{showOptionsDropdown ? (
|
|
|
|
<Options
|
|
|
|
theme={theme}
|
|
|
|
type={type}
|
|
|
|
globalUsers={globalUsers}
|
|
|
|
close={this.toggleDropdown}
|
|
|
|
changeType={this.changeType}
|
|
|
|
toggleWorkspace={this.toggleWorkspace}
|
|
|
|
isFederationEnabled={isFederationEnabled}
|
|
|
|
/>
|
|
|
|
) : null}
|
2019-06-10 16:22:35 +00:00
|
|
|
</SafeAreaView>
|
|
|
|
);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2019-06-10 16:22:35 +00:00
|
|
|
}
|
2019-08-07 13:51:34 +00:00
|
|
|
|
2021-09-15 20:37:21 +00:00
|
|
|
const mapStateToProps = (state: any) => ({
|
2020-02-11 14:09:14 +00:00
|
|
|
baseUrl: state.server.server,
|
|
|
|
user: getUserSelector(state),
|
2020-03-30 14:20:55 +00:00
|
|
|
isFederationEnabled: state.settings.FEDERATION_Enabled,
|
2020-06-15 14:00:46 +00:00
|
|
|
directoryDefaultView: state.settings.Accounts_Directory_DefaultView,
|
|
|
|
isMasterDetail: state.app.isMasterDetail
|
2019-08-07 13:51:34 +00:00
|
|
|
});
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
export default connect(mapStateToProps)(withTheme(DirectoryView));
|