* [MM-16593] [MM-17175] [MM-17164] [MM-17189] [MM-17181] Android - Upgrade to RN 0.60 (#3145)
* Upgrade to react-native 0.60
* Use @sentry/react-native
* Manually link @sentry/react-native
* Address review comments
* Jetify after install
* Call jetify from node_modules
* [MM-17785] iOS - Upgrade to RN 0.60 (#3153)
* Upgrade to react-native 0.60
* Use @sentry/react-native
* Manually link @sentry/react-native
* Address review comments
* Jetify after install
* Call jetify from node_modules
* Get app building for iOS
* Revert react-native-image-picker upgrade
* Minor version upgrade of react-native-image-picker
* [MM-17142] Convert all string refs to callbacks (#3217)
* Replace string refs
* Fix tests
* Don't use inline functions
* Fix mattermost-redux reversion from master merge
* [MM-18336] Upload Sentry debug symbols only when SENTRY_ENABLED is true (#3227)
* Upgrade @sentry/react-native
* Run Sentry gradle tasks only when enabled
* Upgrade @sentry/react-native and remove extra Sentry build phase
* [MM-17144] Use Hermes (#3226)
* Replace string refs
* Fix tests
* Don't use inline functions
* Fix mattermost-redux reversion from master merge
* Use Hermes
* bundleCommand ram-bundle no longer needed
* Require harmony-reflect only for Android
* Fix failing test
* Path react-native's splitLayoutProps (#3337)
* [MM-18867] [MM-17186] [MM-18866] [MM-19447] [MM-18967] Upgrade to RN 0.61.2 (#3423)
* Upgrade to RN 0.61.2
* Update rn-fetch-blob commit hash
* Update react-native-keyboard-tracking-view commit hash
* Use react-native-youtube with AVPlayer fix
* Fix jest mocks
* Use updated document picker API
* Remove unnecessary linking
* Revert "MM-17759 Add code highlighting (#3072)"
This reverts commit 26b999e885.
* Fix share extension
* Revert "Revert "MM-17759 Add code highlighting (#3072)""
This reverts commit 52aca776b12dee3abe8646d0c90480f8528e86c1.
* Address PR reviews
* Rename patch to match version
* Update react-native-youtube patch
* Update dependencies
* Fix RNDocViewer reference
* Update tests and revert to redux-persist 4.10.2
* Revert "Revert "Revert "MM-17759 Add code highlighting (#3072)"""
This reverts commit 5ef383be2619b1be6167c23f128ecb4b4ad25df9.
* Android fixes after dep upgrades
* Use fresco 2.0.0
* Use mattermost forks
* Use React-Core in Mattermost.scheme instead of react
* Remove packager (#3452)
* Remove Pods from source control
* Fix unit tests
* Add new line before entering the keystore in gradle.properties
* set ios as working directory for cocoapods
* Cache cocoapods on circleCI builds
* set ios as working dir
* fix cocoapods cache key
* Unify fastlane and npm dependencies command
* Use package-lock.json checksum for npm cache
* Fix package.json and use the checksum as the cache key
* Fix package.json and use the checksum as the cache key
* changes to circleci.yaml fastlane and removing pods from git
* Fix Mattermost.xcodeproj
* Update coocoapods to 1.7.5 and fix xcode header search paths
* Update package-lock.json
* Remove unused tooltip component
* Fix incorrect ref
* Disable Hermes (#3460)
* Revert "Remove packager (#3452)"
This reverts commit b2a79e184b3242124dfdb91ae095f6ce3f4eb986.
* Disable Hermes :'(
* Update preloaded modules
* Fix packages moduleNames and modulePaths, update snapshots and update mm-redux (ts version)
* remove document picker from modulePaths
* Fix package-lock.json
* Add eslint disable rules
414 lines
13 KiB
JavaScript
414 lines
13 KiB
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {PureComponent} from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import {intlShape} from 'react-intl';
|
|
import {
|
|
Platform,
|
|
View,
|
|
} from 'react-native';
|
|
|
|
import {debounce} from 'mattermost-redux/actions/helpers';
|
|
import {General} from 'mattermost-redux/constants';
|
|
import {filterProfilesMatchingTerm} from 'mattermost-redux/utils/user_utils';
|
|
import {filterChannelsMatchingTerm} from 'mattermost-redux/utils/channel_utils';
|
|
import {memoizeResult} from 'mattermost-redux/utils/helpers';
|
|
|
|
import CustomList, {FLATLIST, SECTIONLIST} from 'app/components/custom_list';
|
|
import UserListRow from 'app/components/custom_list/user_list_row';
|
|
import ChannelListRow from 'app/components/custom_list/channel_list_row';
|
|
import OptionListRow from 'app/components/custom_list/option_list_row';
|
|
import FormattedText from 'app/components/formatted_text';
|
|
import SearchBar from 'app/components/search_bar';
|
|
import StatusBar from 'app/components/status_bar';
|
|
import {ViewTypes} from 'app/constants';
|
|
import {createProfilesSections, loadingText} from 'app/utils/member_list';
|
|
import {
|
|
changeOpacity,
|
|
makeStyleSheetFromTheme,
|
|
setNavigatorStyles,
|
|
getKeyboardAppearanceFromTheme,
|
|
} from 'app/utils/theme';
|
|
import {t} from 'app/utils/i18n';
|
|
import {popTopScreen} from 'app/actions/navigation';
|
|
|
|
import {paddingHorizontal as padding} from 'app/components/safe_area_view/iphone_x_spacing';
|
|
|
|
export default class SelectorScreen extends PureComponent {
|
|
static propTypes = {
|
|
actions: PropTypes.shape({
|
|
getProfiles: PropTypes.func.isRequired,
|
|
getChannels: PropTypes.func.isRequired,
|
|
searchProfiles: PropTypes.func.isRequired,
|
|
searchChannels: PropTypes.func.isRequired,
|
|
}),
|
|
componentId: PropTypes.string,
|
|
currentTeamId: PropTypes.string.isRequired,
|
|
data: PropTypes.arrayOf(PropTypes.object),
|
|
dataSource: PropTypes.string,
|
|
onSelect: PropTypes.func.isRequired,
|
|
theme: PropTypes.object.isRequired,
|
|
isLandscape: PropTypes.bool.isRequired,
|
|
};
|
|
|
|
static contextTypes = {
|
|
intl: intlShape.isRequired,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.searchTimeoutId = 0;
|
|
this.page = -1;
|
|
this.next = props.dataSource === ViewTypes.DATA_SOURCE_USERS || props.dataSource === ViewTypes.DATA_SOURCE_CHANNELS;
|
|
|
|
let data = [];
|
|
if (!props.dataSource) {
|
|
data = props.data;
|
|
}
|
|
|
|
this.state = {
|
|
data,
|
|
loading: false,
|
|
searchResults: [],
|
|
term: '',
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
const {dataSource} = this.props;
|
|
this.mounted = true;
|
|
if (dataSource === ViewTypes.DATA_SOURCE_USERS) {
|
|
this.getProfiles();
|
|
} else if (dataSource === ViewTypes.DATA_SOURCE_CHANNELS) {
|
|
this.getChannels();
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.mounted = false;
|
|
}
|
|
|
|
componentDidUpdate(prevProps) {
|
|
if (this.props.theme !== prevProps.theme) {
|
|
setNavigatorStyles(this.props.componentId, this.props.theme);
|
|
}
|
|
}
|
|
|
|
setSearchBarRef = (ref) => {
|
|
this.searchBarRef = ref;
|
|
}
|
|
|
|
clearSearch = () => {
|
|
this.setState({term: '', searchResults: []});
|
|
};
|
|
|
|
close = () => {
|
|
popTopScreen();
|
|
};
|
|
|
|
handleSelectItem = (id, item) => {
|
|
this.props.onSelect(item);
|
|
this.close();
|
|
};
|
|
|
|
getChannels = debounce(() => {
|
|
const {actions, currentTeamId} = this.props;
|
|
const {loading, term} = this.state;
|
|
if (this.next && !loading && !term) {
|
|
this.setState({loading: true}, () => {
|
|
actions.getChannels(
|
|
currentTeamId,
|
|
this.page += 1,
|
|
General.CHANNELS_CHUNK_SIZE
|
|
).then(this.loadedChannels);
|
|
});
|
|
}
|
|
}, 100);
|
|
|
|
getDataResults = () => {
|
|
const {dataSource} = this.props;
|
|
const {data, searchResults, term} = this.state;
|
|
|
|
const result = {
|
|
data,
|
|
listType: FLATLIST};
|
|
if (term) {
|
|
result.data = filterSearchData(dataSource, searchResults, term);
|
|
} else if (dataSource === ViewTypes.DATA_SOURCE_USERS) {
|
|
result.data = createProfilesSections(data);
|
|
result.listType = SECTIONLIST;
|
|
}
|
|
|
|
return result;
|
|
};
|
|
|
|
getProfiles = debounce(() => {
|
|
const {loading, term} = this.state;
|
|
if (this.next && !loading && !term) {
|
|
this.setState({loading: true}, () => {
|
|
const {actions} = this.props;
|
|
|
|
actions.getProfiles(
|
|
this.page + 1,
|
|
General.PROFILE_CHUNK_SIZE
|
|
).then(this.loadedProfiles);
|
|
});
|
|
}
|
|
}, 100);
|
|
|
|
loadedChannels = ({data: channels}) => {
|
|
const {data} = this.state;
|
|
if (channels && !channels.length) {
|
|
this.next = false;
|
|
}
|
|
|
|
this.page += 1;
|
|
this.setState({loading: false, data: [...channels, ...data]});
|
|
};
|
|
|
|
loadedProfiles = ({data: profiles}) => {
|
|
const {data} = this.state;
|
|
if (profiles && !profiles.length) {
|
|
this.next = false;
|
|
}
|
|
|
|
this.page += 1;
|
|
this.setState({loading: false, data: [...profiles, ...data]});
|
|
};
|
|
|
|
loadMore = () => {
|
|
const {dataSource} = this.props;
|
|
|
|
if (dataSource === ViewTypes.DATA_SOURCE_USERS) {
|
|
this.getProfiles();
|
|
} else if (dataSource === ViewTypes.DATA_SOURCE_CHANNELS) {
|
|
this.getChannels();
|
|
}
|
|
};
|
|
|
|
onSearch = (text) => {
|
|
if (text) {
|
|
const {dataSource, data} = this.props;
|
|
this.setState({term: text});
|
|
clearTimeout(this.searchTimeoutId);
|
|
|
|
this.searchTimeoutId = setTimeout(() => {
|
|
if (!dataSource) {
|
|
this.setState({searchResults: filterSearchData(null, data, text)});
|
|
return;
|
|
}
|
|
|
|
if (dataSource === ViewTypes.DATA_SOURCE_USERS) {
|
|
this.searchProfiles(text);
|
|
} else if (dataSource === ViewTypes.DATA_SOURCE_CHANNELS) {
|
|
this.searchChannels(text);
|
|
}
|
|
}, General.SEARCH_TIMEOUT_MILLISECONDS);
|
|
} else {
|
|
this.clearSearch();
|
|
}
|
|
};
|
|
|
|
searchChannels = (term) => {
|
|
const {actions, currentTeamId} = this.props;
|
|
|
|
actions.searchChannels(currentTeamId, term.toLowerCase()).then(({data}) => {
|
|
this.setState({searchResults: data, loading: false});
|
|
});
|
|
};
|
|
|
|
searchProfiles = (term) => {
|
|
const {actions} = this.props;
|
|
this.setState({loading: true});
|
|
|
|
actions.searchProfiles(term.toLowerCase()).then(({data}) => {
|
|
this.setState({searchResults: data, loading: false});
|
|
});
|
|
};
|
|
|
|
renderLoading = () => {
|
|
const {dataSource, theme} = this.props;
|
|
const {loading} = this.state;
|
|
const style = getStyleFromTheme(theme);
|
|
|
|
if (!loading) {
|
|
return null;
|
|
}
|
|
|
|
let text;
|
|
switch (dataSource) {
|
|
case ViewTypes.DATA_SOURCE_USERS:
|
|
text = loadingText;
|
|
break;
|
|
case ViewTypes.DATA_SOURCE_CHANNELS:
|
|
text = {
|
|
id: t('mobile.loading_channels'),
|
|
defaultMessage: 'Loading Channels...',
|
|
};
|
|
break;
|
|
default:
|
|
text = {
|
|
id: t('mobile.loading_options'),
|
|
defaultMessage: 'Loading Options...',
|
|
};
|
|
break;
|
|
}
|
|
|
|
return (
|
|
<View style={style.loadingContainer}>
|
|
<FormattedText
|
|
{...text}
|
|
style={style.loadingText}
|
|
/>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
renderNoResults = () => {
|
|
const {loading} = this.state;
|
|
const {theme} = this.props;
|
|
const style = getStyleFromTheme(theme);
|
|
|
|
if (loading || this.page === -1) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<View style={style.noResultContainer}>
|
|
<FormattedText
|
|
id='mobile.custom_list.no_results'
|
|
defaultMessage='No Results'
|
|
style={style.noResultText}
|
|
/>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
renderChannelItem = (props) => {
|
|
return <ChannelListRow {...props}/>;
|
|
};
|
|
|
|
renderOptionItem = (props) => {
|
|
return <OptionListRow {...props}/>;
|
|
};
|
|
|
|
renderUserItem = (props) => {
|
|
return <UserListRow {...props}/>;
|
|
};
|
|
|
|
render() {
|
|
const {formatMessage} = this.context.intl;
|
|
const {theme, dataSource, isLandscape} = this.props;
|
|
const {loading, term} = this.state;
|
|
const style = getStyleFromTheme(theme);
|
|
|
|
const searchBarInput = {
|
|
backgroundColor: changeOpacity(theme.centerChannelColor, 0.2),
|
|
color: theme.centerChannelColor,
|
|
fontSize: 15,
|
|
...Platform.select({
|
|
android: {
|
|
marginBottom: -5,
|
|
},
|
|
}),
|
|
};
|
|
|
|
let rowComponent;
|
|
if (dataSource === ViewTypes.DATA_SOURCE_USERS) {
|
|
rowComponent = this.renderUserItem;
|
|
} else if (dataSource === ViewTypes.DATA_SOURCE_CHANNELS) {
|
|
rowComponent = this.renderChannelItem;
|
|
} else {
|
|
rowComponent = this.renderOptionItem;
|
|
}
|
|
|
|
const {data, listType} = this.getDataResults();
|
|
|
|
return (
|
|
<View style={style.container}>
|
|
<StatusBar/>
|
|
<View style={[style.searchBar, padding(isLandscape)]}>
|
|
<SearchBar
|
|
ref={this.setSearchBarRef}
|
|
placeholder={formatMessage({id: 'search_bar.search', defaultMessage: 'Search'})}
|
|
cancelTitle={formatMessage({id: 'mobile.post.cancel', defaultMessage: 'Cancel'})}
|
|
backgroundColor='transparent'
|
|
inputHeight={33}
|
|
inputStyle={searchBarInput}
|
|
placeholderTextColor={changeOpacity(theme.centerChannelColor, 0.5)}
|
|
tintColorSearch={changeOpacity(theme.centerChannelColor, 0.5)}
|
|
tintColorDelete={changeOpacity(theme.centerChannelColor, 0.5)}
|
|
titleCancelColor={theme.centerChannelColor}
|
|
onChangeText={this.onSearch}
|
|
onSearchButtonPress={this.onSearch}
|
|
onCancelButtonPress={this.clearSearch}
|
|
autoCapitalize='none'
|
|
keyboardAppearance={getKeyboardAppearanceFromTheme(theme)}
|
|
value={term}
|
|
/>
|
|
</View>
|
|
<CustomList
|
|
data={data}
|
|
key='custom_list'
|
|
listType={listType}
|
|
loading={loading}
|
|
loadingComponent={this.renderLoading()}
|
|
noResults={this.renderNoResults()}
|
|
onLoadMore={this.loadMore}
|
|
onRowPress={this.handleSelectItem}
|
|
renderItem={rowComponent}
|
|
theme={theme}
|
|
isLandscape={isLandscape}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const getStyleFromTheme = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: theme.centerChannelBg,
|
|
},
|
|
searchBar: {
|
|
marginVertical: 5,
|
|
},
|
|
loadingContainer: {
|
|
alignItems: 'center',
|
|
backgroundColor: theme.centerChannelBg,
|
|
height: 70,
|
|
justifyContent: 'center',
|
|
},
|
|
loadingText: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.6),
|
|
},
|
|
noResultContainer: {
|
|
flexGrow: 1,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
noResultText: {
|
|
fontSize: 26,
|
|
color: changeOpacity(theme.centerChannelColor, 0.5),
|
|
},
|
|
};
|
|
});
|
|
|
|
const filterSearchData = memoizeResult((dataSource, data, term) => {
|
|
if (!data) {
|
|
return [];
|
|
}
|
|
|
|
const lowerCasedTerm = term.toLowerCase();
|
|
if (dataSource === ViewTypes.DATA_SOURCE_USERS) {
|
|
return filterProfilesMatchingTerm(data, lowerCasedTerm);
|
|
} else if (dataSource === ViewTypes.DATA_SOURCE_CHANNELS) {
|
|
return filterChannelsMatchingTerm(data, lowerCasedTerm);
|
|
}
|
|
|
|
return data.filter((option) => option.text && option.text.toLowerCase().startsWith(lowerCasedTerm));
|
|
});
|