import React from 'react'; import { Text } from 'react-native'; import PropTypes from 'prop-types'; 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 I18n from '../i18n'; import RocketChat from '../lib/rocketchat'; import { withTheme } from '../theme'; import { themes } from '../constants/colors'; import { themedHeader } from '../utils/navigation'; import FormContainer, { FormContainerInner } from '../containers/FormContainer'; class ForgotPasswordView extends React.Component { static navigationOptions = ({ navigation, screenProps }) => { const title = navigation.getParam('title', 'Rocket.Chat'); return { title, ...themedHeader(screenProps.theme) }; } static propTypes = { navigation: PropTypes.object, theme: PropTypes.string } state = { email: '', invalidEmail: true, isFetching: false } shouldComponentUpdate(nextProps, nextState) { const { email, invalidEmail, isFetching } = this.state; const { theme } = this.props; if (nextProps.theme !== theme) { return true; } if (nextState.email !== email) { return true; } if (nextState.invalidEmail !== invalidEmail) { return true; } if (nextState.isFetching !== isFetching) { return true; } return false; } 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 { navigation } = this.props; navigation.pop(); 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', { action: I18n.t('resetting_password') }); showErrorAlert(msg, I18n.t('Alert')); } this.setState({ isFetching: false }); } render() { const { invalidEmail, isFetching } = this.state; const { theme } = this.props; return ( {I18n.t('Forgot_password')} this.validate(email)} onSubmitEditing={this.resetPassword} testID='forgot-password-view-email' containerStyle={sharedStyles.inputLastChild} theme={theme} />