PromucFlow_constructor/app/client/src/pages/UserAuth/ResetPassword.tsx

240 lines
7.1 KiB
TypeScript
Raw Normal View History

2019-12-16 08:49:10 +00:00
import React, { useLayoutEffect } from "react";
import { AppState } from "reducers";
import { withRouter, RouteComponentProps } from "react-router-dom";
2019-12-16 08:49:10 +00:00
import { connect } from "react-redux";
import { InjectedFormProps, reduxForm, Field } from "redux-form";
import { RESET_PASSWORD_FORM_NAME } from "constants/forms";
import { ReduxActionTypes } from "constants/ReduxActionConstants";
import { getIsTokenValid, getIsValidatingToken } from "selectors/authSelectors";
import { Icon } from "@blueprintjs/core";
import FormGroup from "components/ads/formFields/FormGroup";
import FormTextField from "components/ads/formFields/TextField";
import FormMessage, {
2019-12-16 08:49:10 +00:00
MessageAction,
FormMessageProps,
} from "components/ads/formFields/FormMessage";
2019-12-16 08:49:10 +00:00
import Spinner from "components/editorComponents/Spinner";
import Button, { Size } from "components/ads/Button";
2019-12-16 08:49:10 +00:00
import StyledForm from "components/editorComponents/Form";
import { isEmptyString, isStrongPassword } from "utils/formhelpers";
import { ResetPasswordFormValues, resetPasswordSubmitHandler } from "./helpers";
import {
AuthCardHeader,
AuthCardNavLink,
FormActions,
} from "./StyledComponents";
import { AUTH_LOGIN_URL, FORGOT_PASSWORD_URL } from "constants/routes";
import { withTheme } from "styled-components";
import { Theme } from "constants/DefaultTheme";
2019-12-16 08:49:10 +00:00
import {
RESET_PASSWORD_PAGE_PASSWORD_INPUT_LABEL,
RESET_PASSWORD_PAGE_PASSWORD_INPUT_PLACEHOLDER,
RESET_PASSWORD_LOGIN_LINK_TEXT,
RESET_PASSWORD_SUBMIT_BUTTON_TEXT,
RESET_PASSWORD_PAGE_TITLE,
FORM_VALIDATION_INVALID_PASSWORD,
FORM_VALIDATION_EMPTY_PASSWORD,
RESET_PASSWORD_EXPIRED_TOKEN,
RESET_PASSWORD_FORGOT_PASSWORD_LINK,
RESET_PASSWORD_INVALID_TOKEN,
RESET_PASSWORD_RESET_SUCCESS,
RESET_PASSWORD_RESET_SUCCESS_LOGIN_LINK,
createMessage,
2019-12-16 08:49:10 +00:00
} from "constants/messages";
const validate = (values: ResetPasswordFormValues) => {
const errors: ResetPasswordFormValues = {};
if (!values.password || isEmptyString(values.password)) {
errors.password = createMessage(FORM_VALIDATION_EMPTY_PASSWORD);
2019-12-16 08:49:10 +00:00
} else if (!isStrongPassword(values.password)) {
errors.password = createMessage(FORM_VALIDATION_INVALID_PASSWORD);
2019-12-16 08:49:10 +00:00
}
return errors;
};
type ResetPasswordProps = InjectedFormProps<
ResetPasswordFormValues,
{
verifyToken: (token: string, email: string) => void;
isTokenValid: boolean;
validatingToken: boolean;
}
> & {
verifyToken: (token: string, email: string) => void;
isTokenValid: boolean;
validatingToken: boolean;
theme: Theme;
2019-12-16 08:49:10 +00:00
} & RouteComponentProps<{ email: string; token: string }>;
export const ResetPassword = (props: ResetPasswordProps) => {
const {
error,
handleSubmit,
pristine,
submitting,
submitSucceeded,
submitFailed,
initialValues,
isTokenValid,
validatingToken,
verifyToken,
} = props;
useLayoutEffect(() => {
if (initialValues.token && initialValues.email)
verifyToken(initialValues.token, initialValues.email);
}, [initialValues.token, initialValues.email, verifyToken]);
const showInvalidMessage = !initialValues.token || !initialValues.email;
const showExpiredMessage = !isTokenValid && !validatingToken;
const showSuccessMessage = submitSucceeded && !pristine;
const showFailureMessage = submitFailed && !!error;
let message = "";
let messageActions: MessageAction[] | undefined = undefined;
if (showExpiredMessage || showInvalidMessage) {
messageActions = [
{
url: FORGOT_PASSWORD_URL,
text: createMessage(RESET_PASSWORD_FORGOT_PASSWORD_LINK),
2020-02-25 11:33:07 +00:00
intent: "primary",
2019-12-16 08:49:10 +00:00
},
];
}
if (showExpiredMessage) {
message = createMessage(RESET_PASSWORD_EXPIRED_TOKEN);
2019-12-16 08:49:10 +00:00
}
if (showInvalidMessage) {
message = createMessage(RESET_PASSWORD_INVALID_TOKEN);
2019-12-16 08:49:10 +00:00
}
if (showSuccessMessage) {
message = createMessage(RESET_PASSWORD_RESET_SUCCESS);
2019-12-16 08:49:10 +00:00
messageActions = [
{
url: AUTH_LOGIN_URL,
text: createMessage(RESET_PASSWORD_RESET_SUCCESS_LOGIN_LINK),
2019-12-16 08:49:10 +00:00
intent: "success",
},
];
}
if (showFailureMessage) {
message = error;
if (
message
.toLowerCase()
.includes(
createMessage(RESET_PASSWORD_FORGOT_PASSWORD_LINK).toLowerCase(),
)
) {
messageActions = [
{
url: FORGOT_PASSWORD_URL,
text: createMessage(RESET_PASSWORD_FORGOT_PASSWORD_LINK),
intent: "primary",
},
];
}
2019-12-16 08:49:10 +00:00
}
const messageTagProps: FormMessageProps = {
2019-12-16 08:49:10 +00:00
intent:
showInvalidMessage || showExpiredMessage || showFailureMessage
? "danger"
: "success",
message,
actions: messageActions,
};
if (showInvalidMessage || showExpiredMessage) {
return <FormMessage {...messageTagProps} />;
2019-12-16 08:49:10 +00:00
}
if (!isTokenValid && validatingToken) {
return <Spinner />;
}
return (
<>
2019-12-16 08:49:10 +00:00
<AuthCardHeader>
<h1>{createMessage(RESET_PASSWORD_PAGE_TITLE)}</h1>
2019-12-16 08:49:10 +00:00
</AuthCardHeader>
<div style={{ display: "flex", justifyContent: "center" }}>
<AuthCardNavLink to={AUTH_LOGIN_URL}>
<Icon
icon="arrow-left"
style={{ marginRight: props.theme.spaces[3] }}
/>
{createMessage(RESET_PASSWORD_LOGIN_LINK_TEXT)}
</AuthCardNavLink>
</div>
{(showSuccessMessage || showFailureMessage) && (
<FormMessage {...messageTagProps} />
)}
<StyledForm onSubmit={handleSubmit(resetPasswordSubmitHandler)}>
<FormGroup
intent={error ? "danger" : "none"}
label={createMessage(RESET_PASSWORD_PAGE_PASSWORD_INPUT_LABEL)}
>
<FormTextField
name="password"
type="password"
placeholder={createMessage(
RESET_PASSWORD_PAGE_PASSWORD_INPUT_PLACEHOLDER,
)}
disabled={submitSucceeded}
/>
</FormGroup>
<Field type="hidden" name="email" component="input" />
<Field type="hidden" name="token" component="input" />
<FormActions>
<Button
tag="button"
fill
size={Size.large}
type="submit"
text={createMessage(RESET_PASSWORD_SUBMIT_BUTTON_TEXT)}
disabled={pristine || submitSucceeded}
isLoading={submitting}
/>
</FormActions>
</StyledForm>
</>
2019-12-16 08:49:10 +00:00
);
};
export default connect(
(state: AppState, props: ResetPasswordProps) => {
const queryParams = new URLSearchParams(props.location.search);
return {
initialValues: {
email: queryParams.get("email") || undefined,
token: queryParams.get("token") || undefined,
},
isTokenValid: getIsTokenValid(state),
validatingToken: getIsValidatingToken(state),
};
},
(dispatch: any) => ({
verifyToken: (token: string, email: string) =>
dispatch({
type: ReduxActionTypes.RESET_PASSWORD_VERIFY_TOKEN_INIT,
payload: { token, email },
}),
}),
)(
reduxForm<
ResetPasswordFormValues,
{
verifyToken: (token: string, email: string) => void;
validatingToken: boolean;
isTokenValid: boolean;
}
>({
validate,
form: RESET_PASSWORD_FORM_NAME,
touchOnBlur: true,
})(withRouter(withTheme(ResetPassword))),
2019-12-16 08:49:10 +00:00
);