import React from 'react'; import PropTypes from 'prop-types'; import { Text, ScrollView } from 'react-native'; import SafeAreaView from 'react-native-safe-area-view'; import Navigation from '../lib/Navigation'; import LoggedView from './View'; import KeyboardView from '../presentation/KeyboardView'; import TextInput from '../containers/TextInput'; import Button from '../containers/Button'; import sharedStyles from './Styles'; import { showErrorAlert } from '../utils/info'; import isValidEmail from '../utils/isValidEmail'; import scrollPersistTaps from '../utils/scrollPersistTaps'; import I18n from '../i18n'; import { DARK_HEADER } from '../constants/headerOptions'; import RocketChat from '../lib/rocketchat'; /** @extends React.Component */ export default class ForgotPasswordView extends LoggedView { static options() { return { ...DARK_HEADER }; } static propTypes = { componentId: PropTypes.string } constructor(props) { super('ForgotPasswordView', props); this.state = { email: '', invalidEmail: true, isFetching: false }; } componentDidMount() { this.timeout = setTimeout(() => { this.emailInput.focus(); }, 600); } shouldComponentUpdate(nextProps, nextState) { const { email, invalidEmail, isFetching } = this.state; if (nextState.email !== email) { return true; } if (nextState.invalidEmail !== invalidEmail) { return true; } if (nextState.isFetching !== isFetching) { return true; } return false; } componentWillUnmount() { if (this.timeout) { clearTimeout(this.timeout); } } validate = (email) => { if (!isValidEmail(email)) { this.setState({ invalidEmail: true }); return; } this.setState({ email, invalidEmail: false }); } resetPassword = async() => { const { email, invalidEmail } = this.state; if (invalidEmail || !email) { return; } try { this.setState({ isFetching: true }); const result = await RocketChat.forgotPassword(email); if (result.success) { const { componentId } = this.props; Navigation.pop(componentId); showErrorAlert(I18n.t('Forgot_password_If_this_email_is_registered'), I18n.t('Alert')); } } catch (e) { const msg = (e.data && e.data.error) || I18n.t('There_was_an_error_while_action', I18n.t('resetting_password')); showErrorAlert(msg, I18n.t('Alert')); } this.setState({ isFetching: false }); } render() { const { invalidEmail, isFetching } = this.state; return ( {I18n.t('Forgot_password')} { this.emailInput = e; }} 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} />