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';
|
|
|
|
import SafeAreaView from 'react-native-safe-area-view';
|
|
|
|
|
2019-01-31 16:08:38 +00:00
|
|
|
import Navigation from '../lib/Navigation';
|
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 LoggedView from './View';
|
|
|
|
import I18n from '../i18n';
|
|
|
|
import { DARK_HEADER } from '../constants/headerOptions';
|
|
|
|
import RocketChat from '../lib/rocketchat';
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
loginTitle: {
|
|
|
|
marginVertical: 0,
|
|
|
|
marginTop: 15
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
@connect(state => ({
|
|
|
|
server: state.server.server,
|
2018-12-05 20:52:08 +00:00
|
|
|
token: state.login.user && state.login.user.token
|
2018-11-14 21:42:03 +00:00
|
|
|
}), dispatch => ({
|
2018-12-05 20:52:08 +00:00
|
|
|
loginRequest: params => dispatch(loginRequestAction(params))
|
2018-11-14 21:42:03 +00:00
|
|
|
}))
|
|
|
|
/** @extends React.Component */
|
|
|
|
export default class SetUsernameView extends LoggedView {
|
|
|
|
static options() {
|
|
|
|
return {
|
|
|
|
...DARK_HEADER
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
componentId: PropTypes.string,
|
|
|
|
server: PropTypes.string,
|
2018-12-05 20:52:08 +00:00
|
|
|
userId: PropTypes.string,
|
|
|
|
loginRequest: PropTypes.func
|
2018-11-14 21:42:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super('SetUsernameView', props);
|
|
|
|
this.state = {
|
2018-12-05 20:52:08 +00:00
|
|
|
username: '',
|
|
|
|
saving: false
|
2018-11-14 21:42:03 +00:00
|
|
|
};
|
|
|
|
const { componentId, server } = this.props;
|
|
|
|
Navigation.mergeOptions(componentId, {
|
|
|
|
topBar: {
|
|
|
|
title: {
|
|
|
|
text: server
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async componentDidMount() {
|
|
|
|
this.timeout = setTimeout(() => {
|
|
|
|
this.usernameInput.focus();
|
|
|
|
}, 600);
|
|
|
|
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;
|
|
|
|
if (nextState.username !== username) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (nextState.saving !== saving) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-11-14 21:42:03 +00:00
|
|
|
componentWillUnmount() {
|
|
|
|
if (this.timeout) {
|
|
|
|
clearTimeout(this.timeout);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
RocketChat.setApiUser({ userId: null, authToken: null });
|
|
|
|
await loginRequest({ resume: token });
|
|
|
|
} catch (e) {
|
|
|
|
console.log('SetUsernameView -> catch -> e', e);
|
|
|
|
}
|
|
|
|
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;
|
2018-11-14 21:42:03 +00:00
|
|
|
return (
|
|
|
|
<KeyboardView contentContainerStyle={sharedStyles.container}>
|
|
|
|
<ScrollView {...scrollPersistTaps} contentContainerStyle={sharedStyles.containerScrollView}>
|
|
|
|
<SafeAreaView style={sharedStyles.container} testID='set-username-view' forceInset={{ bottom: 'never' }}>
|
|
|
|
<Text style={[sharedStyles.loginTitle, sharedStyles.textBold, styles.loginTitle]}>{I18n.t('Username')}</Text>
|
|
|
|
<Text style={[sharedStyles.loginSubtitle, sharedStyles.textRegular]}>{I18n.t('Set_username_subtitle')}</Text>
|
|
|
|
<TextInput
|
|
|
|
inputRef={e => this.usernameInput = e}
|
|
|
|
placeholder={I18n.t('Username')}
|
|
|
|
returnKeyType='send'
|
|
|
|
iconLeft='mention'
|
|
|
|
onChangeText={value => this.setState({ username: value })}
|
|
|
|
value={username}
|
|
|
|
onSubmitEditing={this.submit}
|
|
|
|
testID='set-username-view-input'
|
|
|
|
clearButtonMode='while-editing'
|
|
|
|
containerStyle={sharedStyles.inputLastChild}
|
|
|
|
/>
|
|
|
|
<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}
|
2018-11-14 21:42:03 +00:00
|
|
|
/>
|
|
|
|
</SafeAreaView>
|
|
|
|
</ScrollView>
|
|
|
|
</KeyboardView>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|