mattermost-mobile/app/screens/select_team/select_team.js
2017-10-24 17:03:51 -04:00

299 lines
8.9 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,
StyleSheet,
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 {preventDoubleTap} from 'app/utils/tap';
import {changeOpacity, makeStyleSheetFromTheme} from 'app/utils/theme';
export default class SelectTeam extends PureComponent {
static propTypes = {
actions: PropTypes.shape({
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.buildData(this.props);
}
componentWillReceiveProps(nextProps) {
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, this, item)}
>
<View style={styles.teamContainer}>
<View style={styles.teamIconContainer}>
<Text style={styles.teamIcon}>
{item.display_name.substr(0, 2).toUpperCase()}
</Text>
</View>
<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={{
viewAreaCoveragePercentThreshold: 3,
waitForInteraction: false
}}
/>
</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: StyleSheet.hairlineWidth
},
teamWrapper: {
marginTop: 20
},
teamContainer: {
alignItems: 'center',
flex: 1,
flexDirection: 'row',
marginHorizontal: 16
},
teamIconContainer: {
alignItems: 'center',
backgroundColor: theme.buttonBg,
borderRadius: 2,
height: 40,
justifyContent: 'center',
width: 40
},
noTeam: {
color: theme.centerChannelColor,
fontSize: 14
},
teamIcon: {
color: theme.buttonColor,
fontFamily: 'OpenSans',
fontSize: 18,
fontWeight: '600'
},
teamNameContainer: {
flex: 1,
flexDirection: 'column',
marginLeft: 10
},
teamName: {
color: theme.centerChannelColor,
fontSize: 18
},
teamUrl: {
color: changeOpacity(theme.centerChannelColor, 0.5),
fontSize: 12
}
};
});