Rocket.Chat.ReactNative/app/views/ForgotPasswordView.js

111 lines
3.2 KiB
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import { Text, View, SafeAreaView, ScrollView } from 'react-native';
import { connect } from 'react-redux';
import LoggedView from './View';
import { forgotPasswordInit, forgotPasswordRequest } from '../actions/login';
import KeyboardView from '../presentation/KeyboardView';
import TextInput from '../containers/TextInput';
import Button from '../containers/Button';
import Loading from '../containers/Loading';
import styles from './Styles';
import { showErrorAlert } from '../utils/info';
import scrollPersistTaps from '../utils/scrollPersistTaps';
import I18n from '../i18n';
@connect(state => ({
login: state.login
}), dispatch => ({
forgotPasswordInit: () => dispatch(forgotPasswordInit()),
forgotPasswordRequest: email => dispatch(forgotPasswordRequest(email))
}))
/** @extends React.Component */
export default class ForgotPasswordView extends LoggedView {
static propTypes = {
navigator: PropTypes.object,
forgotPasswordInit: PropTypes.func.isRequired,
forgotPasswordRequest: PropTypes.func.isRequired,
login: PropTypes.object
}
constructor(props) {
super('ForgotPasswordView', props);
this.state = {
email: '',
invalidEmail: false
};
}
componentDidMount() {
this.props.forgotPasswordInit();
}
componentDidUpdate() {
const { login } = this.props;
if (login.success) {
this.props.navigator.pop();
setTimeout(() => {
showErrorAlert(I18n.t('Forgot_password_If_this_email_is_registered'), I18n.t('Alert'));
});
}
}
validate = (email) => {
/* eslint-disable no-useless-escape */
const reg = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
if (!reg.test(email)) {
this.setState({ invalidEmail: true });
return;
}
this.setState({ email, invalidEmail: false });
}
resetPassword = () => {
const { email, invalidEmail } = this.state;
if (invalidEmail || !email) {
return;
}
this.props.forgotPasswordRequest(email);
}
render() {
return (
<KeyboardView
contentContainerStyle={styles.container}
keyboardVerticalOffset={128}
>
<ScrollView {...scrollPersistTaps} contentContainerStyle={styles.containerScrollView}>
<SafeAreaView testID='forgot-password-view'>
<View style={styles.loginView}>
<TextInput
inputStyle={this.state.invalidEmail ? { borderColor: 'red' } : {}}
label={I18n.t('Email')}
placeholder={I18n.t('Email')}
keyboardType='email-address'
returnKeyType='next'
onChangeText={email => this.validate(email)}
onSubmitEditing={() => this.resetPassword()}
testID='forgot-password-view-email'
/>
<View style={styles.alignItemsFlexStart}>
<Button
title={I18n.t('Reset_password')}
type='primary'
onPress={this.resetPassword}
testID='forgot-password-view-submit'
/>
</View>
{this.props.login.failure ? <Text style={styles.error}>{this.props.login.error.reason}</Text> : null}
<Loading visible={this.props.login.isFetching} />
</View>
</SafeAreaView>
</ScrollView>
</KeyboardView>
);
}
}