* Upgrade to RN 0.54.2 and other dependencies * feedback review * upgrade mattermost-redux * Update dependencies
305 lines
9.1 KiB
JavaScript
305 lines
9.1 KiB
JavaScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import React, {PureComponent} from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import {
|
|
Alert,
|
|
FlatList,
|
|
InteractionManager,
|
|
Text,
|
|
TouchableOpacity,
|
|
View,
|
|
} from 'react-native';
|
|
|
|
import {RequestStatus} from 'mattermost-redux/constants';
|
|
import EventEmitter from 'mattermost-redux/utils/event_emitter';
|
|
|
|
import FormattedText from 'app/components/formatted_text';
|
|
import Loading from 'app/components/loading';
|
|
import StatusBar from 'app/components/status_bar';
|
|
import {ListTypes} from 'app/constants';
|
|
import {preventDoubleTap} from 'app/utils/tap';
|
|
import {changeOpacity, makeStyleSheetFromTheme, setNavigatorStyles} from 'app/utils/theme';
|
|
|
|
import TeamIcon from 'app/components/team_icon';
|
|
|
|
const VIEWABILITY_CONFIG = ListTypes.VISIBILITY_CONFIG_DEFAULTS;
|
|
|
|
export default class SelectTeam extends PureComponent {
|
|
static propTypes = {
|
|
actions: PropTypes.shape({
|
|
getTeams: PropTypes.func.isRequired,
|
|
handleTeamChange: PropTypes.func.isRequired,
|
|
joinTeam: PropTypes.func.isRequired,
|
|
logout: PropTypes.func.isRequired,
|
|
markChannelAsRead: PropTypes.func.isRequired,
|
|
}).isRequired,
|
|
currentChannelId: PropTypes.string,
|
|
currentUrl: PropTypes.string.isRequired,
|
|
joinTeamRequest: PropTypes.object.isRequired,
|
|
navigator: PropTypes.object,
|
|
userWithoutTeams: PropTypes.bool,
|
|
teams: PropTypes.array.isRequired,
|
|
theme: PropTypes.object,
|
|
};
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
props.navigator.setOnNavigatorEvent(this.onNavigatorEvent);
|
|
|
|
this.state = {
|
|
joining: false,
|
|
teams: null,
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.props.actions.getTeams().then(() => {
|
|
this.buildData(this.props);
|
|
});
|
|
}
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
if (this.props.theme !== nextProps.theme) {
|
|
setNavigatorStyles(this.props.navigator, nextProps.theme);
|
|
}
|
|
|
|
if (this.props.teams !== nextProps.teams) {
|
|
this.buildData(nextProps);
|
|
}
|
|
|
|
if (this.props.joinTeamRequest.status !== RequestStatus.FAILURE &&
|
|
nextProps.joinTeamRequest.status === RequestStatus.FAILURE) {
|
|
Alert.alert('', nextProps.joinTeamRequest.error.message);
|
|
}
|
|
}
|
|
|
|
buildData = (props) => {
|
|
if (props.teams.length) {
|
|
this.setState({teams: props.teams});
|
|
} else {
|
|
const teams = [{
|
|
id: 'mobile.select_team.no_teams',
|
|
defaultMessage: 'There are no available teams for you to join.',
|
|
}];
|
|
this.setState({teams});
|
|
}
|
|
};
|
|
|
|
close = () => {
|
|
this.props.navigator.dismissModal({
|
|
animationType: 'slide-down',
|
|
});
|
|
};
|
|
|
|
goToChannelView = () => {
|
|
const {navigator, theme} = this.props;
|
|
|
|
navigator.resetTo({
|
|
screen: 'Channel',
|
|
animated: false,
|
|
navigatorStyle: {
|
|
navBarHidden: true,
|
|
statusBarHidden: false,
|
|
statusBarHideWithNavBar: false,
|
|
screenBackgroundColor: theme.centerChannelBg,
|
|
},
|
|
});
|
|
};
|
|
|
|
onNavigatorEvent = (event) => {
|
|
if (event.type === 'NavBarButtonPress') {
|
|
const {logout} = this.props.actions;
|
|
|
|
switch (event.id) {
|
|
case 'close-teams':
|
|
this.close();
|
|
break;
|
|
case 'logout':
|
|
InteractionManager.runAfterInteractions(logout);
|
|
break;
|
|
}
|
|
}
|
|
};
|
|
|
|
onSelectTeam = async (team) => {
|
|
this.setState({joining: true});
|
|
const {currentChannelId, userWithoutTeams} = this.props;
|
|
const {
|
|
joinTeam,
|
|
handleTeamChange,
|
|
markChannelAsRead,
|
|
} = this.props.actions;
|
|
|
|
if (currentChannelId) {
|
|
markChannelAsRead(currentChannelId);
|
|
}
|
|
|
|
const success = await joinTeam(team.invite_id, team.id);
|
|
if (!success) {
|
|
this.setState({joining: false});
|
|
return;
|
|
}
|
|
|
|
handleTeamChange(team.id);
|
|
|
|
if (userWithoutTeams) {
|
|
this.goToChannelView();
|
|
} else {
|
|
EventEmitter.emit('close_channel_drawer');
|
|
InteractionManager.runAfterInteractions(() => {
|
|
this.close();
|
|
});
|
|
}
|
|
};
|
|
|
|
renderItem = ({item}) => {
|
|
const {currentUrl, theme} = this.props;
|
|
const styles = getStyleSheet(theme);
|
|
|
|
if (item.id === 'mobile.select_team.no_teams') {
|
|
return (
|
|
<View style={styles.teamWrapper}>
|
|
<View style={styles.teamContainer}>
|
|
<FormattedText
|
|
id={item.id}
|
|
defaultMessage={item.defaultMessage}
|
|
style={styles.noTeam}
|
|
/>
|
|
</View>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<View style={styles.teamWrapper}>
|
|
<TouchableOpacity
|
|
onPress={preventDoubleTap(() => this.onSelectTeam(item))}
|
|
>
|
|
<View style={styles.teamContainer}>
|
|
<TeamIcon
|
|
teamId={item.id}
|
|
styleContainer={styles.teamIconContainer}
|
|
styleText={styles.teamIconText}
|
|
styleImage={styles.imageContainer}
|
|
/>
|
|
<View style={styles.teamNameContainer}>
|
|
<Text
|
|
numberOfLines={1}
|
|
ellipsizeMode='tail'
|
|
style={styles.teamName}
|
|
>
|
|
{item.display_name}
|
|
</Text>
|
|
<Text
|
|
numberOfLines={1}
|
|
ellipsizeMode='tail'
|
|
style={styles.teamUrl}
|
|
>
|
|
{`${currentUrl}/${item.name}`}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
</TouchableOpacity>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
render() {
|
|
const {theme} = this.props;
|
|
const {teams} = this.state;
|
|
const styles = getStyleSheet(theme);
|
|
|
|
if (this.state.joining) {
|
|
return <Loading/>;
|
|
}
|
|
|
|
return (
|
|
<View style={styles.container}>
|
|
<StatusBar/>
|
|
<View style={styles.headingContainer}>
|
|
<View style={styles.headingWrapper}>
|
|
<FormattedText
|
|
id='mobile.select_team.join_open'
|
|
defaultMessage='Open teams you can join'
|
|
style={styles.heading}
|
|
/>
|
|
</View>
|
|
<View style={styles.line}/>
|
|
</View>
|
|
<FlatList
|
|
data={teams}
|
|
renderItem={this.renderItem}
|
|
keyExtractor={(item) => item.id}
|
|
viewabilityConfig={VIEWABILITY_CONFIG}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|
|
}
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
|
|
return {
|
|
container: {
|
|
backgroundColor: theme.centerChannelBg,
|
|
flex: 1,
|
|
},
|
|
headingContainer: {
|
|
alignItems: 'center',
|
|
flexDirection: 'row',
|
|
marginHorizontal: 16,
|
|
marginTop: 20,
|
|
},
|
|
headingWrapper: {
|
|
marginRight: 15,
|
|
},
|
|
heading: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.5),
|
|
fontSize: 13,
|
|
},
|
|
line: {
|
|
backgroundColor: changeOpacity(theme.centerChannelColor, 0.2),
|
|
width: '100%',
|
|
height: 1,
|
|
},
|
|
teamWrapper: {
|
|
marginTop: 20,
|
|
},
|
|
teamContainer: {
|
|
alignItems: 'center',
|
|
flex: 1,
|
|
flexDirection: 'row',
|
|
marginHorizontal: 16,
|
|
},
|
|
teamIconContainer: {
|
|
width: 40,
|
|
height: 40,
|
|
backgroundColor: theme.sidebarBg,
|
|
},
|
|
teamIconText: {
|
|
color: theme.sidebarText,
|
|
fontSize: 18,
|
|
},
|
|
imageContainer: {
|
|
backgroundColor: theme.centerChannelBg,
|
|
},
|
|
noTeam: {
|
|
color: theme.centerChannelColor,
|
|
fontSize: 14,
|
|
},
|
|
teamNameContainer: {
|
|
flex: 1,
|
|
flexDirection: 'column',
|
|
marginLeft: 10,
|
|
},
|
|
teamName: {
|
|
color: theme.centerChannelColor,
|
|
fontSize: 18,
|
|
},
|
|
teamUrl: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.5),
|
|
fontSize: 12,
|
|
},
|
|
};
|
|
});
|