2017-11-10 13:42:02 +00:00
|
|
|
import React from 'react';
|
2018-11-14 21:42:03 +00:00
|
|
|
import { Text, ScrollView } from 'react-native';
|
2019-10-02 12:18:08 +00:00
|
|
|
import { SafeAreaView } from 'react-navigation';
|
2019-03-12 16:23:06 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2018-04-03 16:24:59 +00:00
|
|
|
|
2017-11-10 13:42:02 +00:00
|
|
|
import KeyboardView from '../presentation/KeyboardView';
|
2018-04-24 19:34:03 +00:00
|
|
|
import TextInput from '../containers/TextInput';
|
|
|
|
import Button from '../containers/Button';
|
2018-11-14 21:42:03 +00:00
|
|
|
import sharedStyles from './Styles';
|
2018-01-15 20:43:52 +00:00
|
|
|
import { showErrorAlert } from '../utils/info';
|
2018-12-05 20:52:08 +00:00
|
|
|
import isValidEmail from '../utils/isValidEmail';
|
2018-04-24 19:34:03 +00:00
|
|
|
import scrollPersistTaps from '../utils/scrollPersistTaps';
|
2018-06-01 17:38:13 +00:00
|
|
|
import I18n from '../i18n';
|
2018-12-05 20:52:08 +00:00
|
|
|
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';
|
|
|
|
import { themedHeader } from '../utils/navigation';
|
2018-04-24 19:34:03 +00:00
|
|
|
|
2019-12-04 16:39:53 +00:00
|
|
|
class ForgotPasswordView extends React.Component {
|
|
|
|
static navigationOptions = ({ navigation, screenProps }) => {
|
2019-03-12 16:23:06 +00:00
|
|
|
const title = navigation.getParam('title', 'Rocket.Chat');
|
2018-11-14 21:42:03 +00:00
|
|
|
return {
|
2019-12-04 16:39:53 +00:00
|
|
|
title,
|
|
|
|
...themedHeader(screenProps.theme)
|
2018-11-14 21:42:03 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-11-10 13:42:02 +00:00
|
|
|
static propTypes = {
|
2019-12-04 16:39:53 +00:00
|
|
|
navigation: PropTypes.object,
|
|
|
|
theme: PropTypes.string
|
2017-11-10 13:42:02 +00:00
|
|
|
}
|
|
|
|
|
2019-05-28 13:03:08 +00:00
|
|
|
state = {
|
|
|
|
email: '',
|
|
|
|
invalidEmail: true,
|
|
|
|
isFetching: false
|
2017-11-10 13:42:02 +00:00
|
|
|
}
|
|
|
|
|
2018-12-21 10:55:35 +00:00
|
|
|
shouldComponentUpdate(nextProps, nextState) {
|
|
|
|
const { email, invalidEmail, isFetching } = 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.email !== email) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (nextState.invalidEmail !== invalidEmail) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (nextState.isFetching !== isFetching) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-10 13:42:02 +00:00
|
|
|
validate = (email) => {
|
2018-12-05 20:52:08 +00:00
|
|
|
if (!isValidEmail(email)) {
|
2017-11-10 13:42:02 +00:00
|
|
|
this.setState({ invalidEmail: true });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.setState({ email, invalidEmail: false });
|
|
|
|
}
|
|
|
|
|
2018-12-05 20:52:08 +00:00
|
|
|
resetPassword = async() => {
|
2018-04-24 19:34:03 +00:00
|
|
|
const { email, invalidEmail } = this.state;
|
|
|
|
if (invalidEmail || !email) {
|
2017-11-10 13:42:02 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-12-05 20:52:08 +00:00
|
|
|
try {
|
|
|
|
this.setState({ isFetching: true });
|
|
|
|
const result = await RocketChat.forgotPassword(email);
|
|
|
|
if (result.success) {
|
2019-03-12 16:23:06 +00:00
|
|
|
const { navigation } = this.props;
|
|
|
|
navigation.pop();
|
2018-12-05 20:52:08 +00:00
|
|
|
showErrorAlert(I18n.t('Forgot_password_If_this_email_is_registered'), I18n.t('Alert'));
|
|
|
|
}
|
|
|
|
} catch (e) {
|
2020-02-28 17:25:38 +00:00
|
|
|
const msg = (e.data && e.data.error) || I18n.t('There_was_an_error_while_action', { action: I18n.t('resetting_password') });
|
2018-12-05 20:52:08 +00:00
|
|
|
showErrorAlert(msg, I18n.t('Alert'));
|
|
|
|
}
|
|
|
|
this.setState({ isFetching: false });
|
2017-11-10 13:42:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2018-12-05 20:52:08 +00:00
|
|
|
const { invalidEmail, isFetching } = this.state;
|
2019-12-04 16:39:53 +00:00
|
|
|
const { theme } = this.props;
|
2018-09-25 19:28:42 +00:00
|
|
|
|
2017-11-10 13:42:02 +00:00
|
|
|
return (
|
|
|
|
<KeyboardView
|
2019-12-04 16:39:53 +00:00
|
|
|
style={{ backgroundColor: themes[theme].backgroundColor }}
|
2018-11-14 21:42:03 +00:00
|
|
|
contentContainerStyle={sharedStyles.container}
|
2017-11-10 13:42:02 +00:00
|
|
|
keyboardVerticalOffset={128}
|
|
|
|
>
|
2019-12-04 16:39:53 +00:00
|
|
|
<StatusBar theme={theme} />
|
2018-11-14 21:42:03 +00:00
|
|
|
<ScrollView {...scrollPersistTaps} contentContainerStyle={sharedStyles.containerScrollView}>
|
2019-08-07 13:51:34 +00:00
|
|
|
<SafeAreaView style={sharedStyles.container} testID='forgot-password-view' forceInset={{ vertical: 'never' }}>
|
2019-12-04 16:39:53 +00:00
|
|
|
<Text style={[sharedStyles.loginTitle, sharedStyles.textBold, { color: themes[theme].titleText }]}>{I18n.t('Forgot_password')}</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('Email')}
|
|
|
|
keyboardType='email-address'
|
|
|
|
iconLeft='mail'
|
|
|
|
returnKeyType='send'
|
|
|
|
onChangeText={email => this.validate(email)}
|
|
|
|
onSubmitEditing={this.resetPassword}
|
|
|
|
testID='forgot-password-view-email'
|
|
|
|
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('Reset_password')}
|
|
|
|
type='primary'
|
|
|
|
onPress={this.resetPassword}
|
|
|
|
testID='forgot-password-view-submit'
|
2018-12-05 20:52:08 +00:00
|
|
|
loading={isFetching}
|
2018-11-14 21:42:03 +00:00
|
|
|
disabled={invalidEmail}
|
2019-12-04 16:39:53 +00:00
|
|
|
theme={theme}
|
2018-11-14 21:42:03 +00:00
|
|
|
/>
|
2018-04-24 19:34:03 +00:00
|
|
|
</SafeAreaView>
|
|
|
|
</ScrollView>
|
2017-11-10 13:42:02 +00:00
|
|
|
</KeyboardView>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2019-12-04 16:39:53 +00:00
|
|
|
|
|
|
|
export default withTheme(ForgotPasswordView);
|