import React from 'react'; import { Text } from 'react-native'; import Button from '../containers/Button'; import FormContainer, { FormContainerInner } from '../containers/FormContainer'; import FormTextInput from '../containers/TextInput/FormTextInput'; import I18n from '../i18n'; import { themes } from '../lib/constants'; import { Services } from '../lib/services'; import { OutsideParamList } from '../stacks/types'; import { withTheme } from '../theme'; import { showErrorAlert, isValidEmail } from '../lib/methods/helpers'; import { events, logEvent } from '../lib/methods/helpers/log'; import { IBaseScreen } from '../definitions'; import sharedStyles from './Styles'; interface IForgotPasswordViewState { email: string; invalidEmail: boolean; isFetching: boolean; } type IForgotPasswordViewProps = IBaseScreen; class ForgotPasswordView extends React.Component { static navigationOptions = ({ route }: IForgotPasswordViewProps) => ({ title: route.params?.title ?? 'Rocket.Chat' }); state = { email: '', invalidEmail: true, isFetching: false }; shouldComponentUpdate(nextProps: IForgotPasswordViewProps, nextState: IForgotPasswordViewState) { 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: string) => { if (!isValidEmail(email)) { this.setState({ invalidEmail: true }); return; } this.setState({ email, invalidEmail: false }); }; resetPassword = async () => { logEvent(events.FP_FORGOT_PASSWORD); const { email, invalidEmail } = this.state; if (invalidEmail || !email) { return; } try { this.setState({ isFetching: true }); const result = await Services.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: any) { logEvent(events.FP_FORGOT_PASSWORD_F); 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} />