import React from 'react'; import Spinner from 'react-native-loading-spinner-overlay'; import PropTypes from 'prop-types'; import { Text, TextInput, View, TouchableOpacity, Alert, SafeAreaView } from 'react-native'; import { connect } from 'react-redux'; import { bindActionCreators } from 'redux'; import * as loginActions from '../actions/login'; import KeyboardView from '../presentation/KeyboardView'; import styles from './Styles'; class ForgotPasswordView extends React.Component { static propTypes = { forgotPasswordInit: PropTypes.func.isRequired, forgotPasswordRequest: PropTypes.func.isRequired, login: PropTypes.object, navigation: PropTypes.object.isRequired } constructor(props) { super(props); this.state = { email: '', invalidEmail: false }; } componentWillMount() { this.props.forgotPasswordInit(); } componentDidUpdate() { const { login } = this.props; if (login.success) { this.props.navigation.goBack(); setTimeout(() => { Alert.alert( 'Alert', 'If this email is registered, ' + 'we\'ll send instructions on how to reset your password. ' + 'If you do not receive an email shortly, please come back and try again.' ); }); } } 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 = () => { if (this.state.invalidEmail) { return; } this.props.forgotPasswordRequest(this.state.email); } backLogin = () => { this.props.navigation.goBack(); } render() { return ( this.validate(email)} keyboardType='email-address' autoCorrect={false} returnKeyType='next' autoCapitalize='none' underlineColorAndroid='transparent' onSubmitEditing={() => this.resetPassword()} placeholder='Email' /> RESET PASSWORD BACK TO LOGIN {this.props.login.failure && {this.props.login.error.reason}} ); } } function mapStateToProps(state) { return { login: state.login }; } function mapDispatchToProps(dispatch) { return bindActionCreators(loginActions, dispatch); } export default connect(mapStateToProps, mapDispatchToProps)(ForgotPasswordView);