2018-11-14 21:42:03 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import {
|
2018-12-05 20:52:08 +00:00
|
|
|
Text, ScrollView, StyleSheet
|
2018-11-14 21:42:03 +00:00
|
|
|
} from 'react-native';
|
|
|
|
import { connect } from 'react-redux';
|
2019-03-12 16:23:06 +00:00
|
|
|
import Orientation from 'react-native-orientation-locker';
|
2018-11-14 21:42:03 +00:00
|
|
|
|
2018-12-05 20:52:08 +00:00
|
|
|
import { loginRequest as loginRequestAction } from '../actions/login';
|
2018-11-14 21:42:03 +00:00
|
|
|
import TextInput from '../containers/TextInput';
|
|
|
|
import Button from '../containers/Button';
|
|
|
|
import KeyboardView from '../presentation/KeyboardView';
|
|
|
|
import sharedStyles from './Styles';
|
|
|
|
import scrollPersistTaps from '../utils/scrollPersistTaps';
|
|
|
|
import I18n from '../i18n';
|
|
|
|
import RocketChat from '../lib/rocketchat';
|
2019-03-12 16:23:06 +00:00
|
|
|
import StatusBar from '../containers/StatusBar';
|
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 { isTablet } from '../utils/deviceInfo';
|
2020-02-11 14:09:14 +00:00
|
|
|
import { getUserSelector } from '../selectors/login';
|
2020-02-21 15:53:07 +00:00
|
|
|
import { showErrorAlert } from '../utils/info';
|
2020-06-15 14:00:46 +00:00
|
|
|
import SafeAreaView from '../containers/SafeAreaView';
|
2018-11-14 21:42:03 +00:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
loginTitle: {
|
|
|
|
marginVertical: 0,
|
|
|
|
marginTop: 15
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-08-07 13:51:34 +00:00
|
|
|
class SetUsernameView extends React.Component {
|
2020-06-15 14:00:46 +00:00
|
|
|
static navigationOptions = ({ route }) => ({
|
|
|
|
title: route.params?.title
|
|
|
|
})
|
2018-11-14 21:42:03 +00:00
|
|
|
|
|
|
|
static propTypes = {
|
2019-03-12 16:23:06 +00:00
|
|
|
navigation: PropTypes.object,
|
2018-11-14 21:42:03 +00:00
|
|
|
server: PropTypes.string,
|
2018-12-05 20:52:08 +00:00
|
|
|
userId: PropTypes.string,
|
2019-02-07 15:48:10 +00:00
|
|
|
loginRequest: PropTypes.func,
|
2019-12-04 16:39:53 +00:00
|
|
|
token: PropTypes.string,
|
|
|
|
theme: PropTypes.string
|
2018-11-14 21:42:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constructor(props) {
|
2019-05-28 13:03:08 +00:00
|
|
|
super(props);
|
2018-11-14 21:42:03 +00:00
|
|
|
this.state = {
|
2018-12-05 20:52:08 +00:00
|
|
|
username: '',
|
|
|
|
saving: false
|
2018-11-14 21:42:03 +00:00
|
|
|
};
|
2019-03-12 16:23:06 +00:00
|
|
|
const { server } = this.props;
|
2020-06-15 14:00:46 +00:00
|
|
|
props.navigation.setOptions({ title: server });
|
2019-11-25 20:01:17 +00:00
|
|
|
if (!isTablet) {
|
|
|
|
Orientation.lockToPortrait();
|
|
|
|
}
|
2018-11-14 21:42:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async componentDidMount() {
|
|
|
|
const suggestion = await RocketChat.getUsernameSuggestion();
|
2018-12-05 20:52:08 +00:00
|
|
|
if (suggestion.success) {
|
|
|
|
this.setState({ username: suggestion.result });
|
2018-11-14 21:42:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-21 10:55:35 +00:00
|
|
|
shouldComponentUpdate(nextProps, nextState) {
|
|
|
|
const { username, saving } = this.state;
|
2019-12-04 16:39:53 +00:00
|
|
|
const { theme } = this.props;
|
|
|
|
if (nextProps.theme !== theme) {
|
|
|
|
return true;
|
|
|
|
}
|
2018-12-21 10:55:35 +00:00
|
|
|
if (nextState.username !== username) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (nextState.saving !== saving) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-05 20:52:08 +00:00
|
|
|
submit = async() => {
|
2018-11-14 21:42:03 +00:00
|
|
|
const { username } = this.state;
|
2018-12-05 20:52:08 +00:00
|
|
|
const { loginRequest, token } = this.props;
|
|
|
|
|
|
|
|
if (!username.trim()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({ saving: true });
|
|
|
|
try {
|
|
|
|
await RocketChat.setUsername(username);
|
|
|
|
await loginRequest({ resume: token });
|
|
|
|
} catch (e) {
|
2020-02-21 15:53:07 +00:00
|
|
|
showErrorAlert(e.message, I18n.t('Oops'));
|
2018-12-05 20:52:08 +00:00
|
|
|
}
|
|
|
|
this.setState({ saving: false });
|
2018-11-14 21:42:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2018-12-05 20:52:08 +00:00
|
|
|
const { username, saving } = this.state;
|
2019-12-04 16:39:53 +00:00
|
|
|
const { theme } = this.props;
|
2018-11-14 21:42:03 +00:00
|
|
|
return (
|
2019-12-04 16:39:53 +00:00
|
|
|
<KeyboardView
|
|
|
|
style={{ backgroundColor: themes[theme].auxiliaryBackground }}
|
|
|
|
contentContainerStyle={sharedStyles.container}
|
|
|
|
>
|
|
|
|
<StatusBar theme={theme} />
|
2018-11-14 21:42:03 +00:00
|
|
|
<ScrollView {...scrollPersistTaps} contentContainerStyle={sharedStyles.containerScrollView}>
|
2020-06-15 14:00:46 +00:00
|
|
|
<SafeAreaView testID='set-username-view' theme={theme}>
|
2019-12-04 16:39:53 +00:00
|
|
|
<Text
|
|
|
|
style={[
|
|
|
|
sharedStyles.loginTitle,
|
|
|
|
sharedStyles.textBold,
|
|
|
|
styles.loginTitle,
|
|
|
|
{ color: themes[theme].titleText }
|
|
|
|
]}
|
|
|
|
>
|
|
|
|
{I18n.t('Username')}
|
|
|
|
</Text>
|
|
|
|
<Text
|
|
|
|
style={[
|
|
|
|
sharedStyles.loginSubtitle,
|
|
|
|
sharedStyles.textRegular,
|
|
|
|
{ color: themes[theme].titleText }
|
|
|
|
]}
|
|
|
|
>
|
|
|
|
{I18n.t('Set_username_subtitle')}
|
|
|
|
</Text>
|
2018-11-14 21:42:03 +00:00
|
|
|
<TextInput
|
2019-08-07 19:20:16 +00:00
|
|
|
autoFocus
|
2018-11-14 21:42:03 +00:00
|
|
|
placeholder={I18n.t('Username')}
|
|
|
|
returnKeyType='send'
|
|
|
|
onChangeText={value => this.setState({ username: value })}
|
|
|
|
value={username}
|
|
|
|
onSubmitEditing={this.submit}
|
|
|
|
testID='set-username-view-input'
|
|
|
|
clearButtonMode='while-editing'
|
|
|
|
containerStyle={sharedStyles.inputLastChild}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2018-11-14 21:42:03 +00:00
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
title={I18n.t('Register')}
|
|
|
|
type='primary'
|
|
|
|
onPress={this.submit}
|
|
|
|
testID='set-username-view-submit'
|
|
|
|
disabled={!username}
|
2018-12-05 20:52:08 +00:00
|
|
|
loading={saving}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2018-11-14 21:42:03 +00:00
|
|
|
/>
|
|
|
|
</SafeAreaView>
|
|
|
|
</ScrollView>
|
|
|
|
</KeyboardView>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-08-07 13:51:34 +00:00
|
|
|
|
|
|
|
const mapStateToProps = state => ({
|
|
|
|
server: state.server.server,
|
2020-02-11 14:09:14 +00:00
|
|
|
token: getUserSelector(state).token
|
2019-08-07 13:51:34 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
loginRequest: params => dispatch(loginRequestAction(params))
|
|
|
|
});
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(withTheme(SetUsernameView));
|