2018-11-14 21:42:03 +00:00
|
|
|
import React from 'react';
|
2021-12-02 13:29:01 +00:00
|
|
|
import { StackNavigationOptions, StackNavigationProp } from '@react-navigation/stack';
|
|
|
|
import { Dispatch } from 'redux';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { ScrollView, StyleSheet, Text } from 'react-native';
|
2018-11-14 21:42:03 +00:00
|
|
|
import { connect } from 'react-redux';
|
2019-03-12 16:23:06 +00:00
|
|
|
import Orientation from 'react-native-orientation-locker';
|
2021-12-02 13:29:01 +00:00
|
|
|
import { RouteProp } from '@react-navigation/native';
|
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 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';
|
2021-09-13 20:41:05 +00:00
|
|
|
import sharedStyles from './Styles';
|
2018-11-14 21:42:03 +00:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
loginTitle: {
|
|
|
|
marginVertical: 0,
|
|
|
|
marginTop: 15
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-12-02 13:29:01 +00:00
|
|
|
interface ISetUsernameViewState {
|
|
|
|
username: string;
|
|
|
|
saving: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ISetUsernameViewProps {
|
|
|
|
navigation: StackNavigationProp<any, 'SetUsernameView'>;
|
|
|
|
route: RouteProp<{ SetUsernameView: { title: string } }, 'SetUsernameView'>;
|
|
|
|
server: string;
|
|
|
|
userId: string;
|
|
|
|
loginRequest: ({ resume }: { resume: string }) => void;
|
|
|
|
token: string;
|
|
|
|
theme: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
class SetUsernameView extends React.Component<ISetUsernameViewProps, ISetUsernameViewState> {
|
|
|
|
static navigationOptions = ({ route }: Pick<ISetUsernameViewProps, 'route'>): StackNavigationOptions => ({
|
2020-06-15 14:00:46 +00:00
|
|
|
title: route.params?.title
|
2021-09-13 20:41:05 +00:00
|
|
|
});
|
2018-11-14 21:42:03 +00:00
|
|
|
|
2021-12-02 13:29:01 +00:00
|
|
|
constructor(props: ISetUsernameViewProps) {
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-02 13:29:01 +00:00
|
|
|
shouldComponentUpdate(nextProps: ISetUsernameViewProps, nextState: ISetUsernameViewState) {
|
2018-12-21 10:55:35 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +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 {
|
2020-06-29 17:57:39 +00:00
|
|
|
await RocketChat.saveUserProfile({ username });
|
2018-12-05 20:52:08 +00:00
|
|
|
await loginRequest({ resume: token });
|
2021-12-02 13:29:01 +00:00
|
|
|
} catch (e: any) {
|
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 });
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
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 (
|
2021-09-13 20:41:05 +00:00
|
|
|
<KeyboardView style={{ backgroundColor: themes[theme].auxiliaryBackground }} contentContainerStyle={sharedStyles.container}>
|
2020-10-30 13:59:44 +00:00
|
|
|
<StatusBar />
|
2018-11-14 21:42:03 +00:00
|
|
|
<ScrollView {...scrollPersistTaps} contentContainerStyle={sharedStyles.containerScrollView}>
|
2020-10-30 13:59:44 +00:00
|
|
|
<SafeAreaView testID='set-username-view'>
|
2021-09-13 20:41:05 +00:00
|
|
|
<Text style={[sharedStyles.loginTitle, sharedStyles.textBold, styles.loginTitle, { color: themes[theme].titleText }]}>
|
2019-12-04 16:39:53 +00:00
|
|
|
{I18n.t('Username')}
|
|
|
|
</Text>
|
2021-09-13 20:41:05 +00:00
|
|
|
<Text style={[sharedStyles.loginSubtitle, sharedStyles.textRegular, { color: themes[theme].titleText }]}>
|
2019-12-04 16:39:53 +00:00
|
|
|
{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
|
|
|
|
2021-12-02 13:29:01 +00:00
|
|
|
const mapStateToProps = (state: any) => ({
|
2019-08-07 13:51:34 +00:00
|
|
|
server: state.server.server,
|
2020-02-11 14:09:14 +00:00
|
|
|
token: getUserSelector(state).token
|
2019-08-07 13:51:34 +00:00
|
|
|
});
|
|
|
|
|
2021-12-02 13:29:01 +00:00
|
|
|
const mapDispatchToProps = (dispatch: Dispatch) => ({
|
|
|
|
loginRequest: (params: { resume: string }) => dispatch(loginRequestAction(params))
|
2019-08-07 13:51:34 +00:00
|
|
|
});
|
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(withTheme(SetUsernameView));
|