saleor-dashboard/src/auth/components/NewPasswordPage/NewPasswordPage.tsx
Jonatan Witoszek 1e38c14116
Use links instead of onClick navigate function (#1969)
Add links instead of navigate + onClick in:
* Lists - ex. product list (except Plugins, see below)
* SortableTables - ex. product variants
* Sidebar
* Buttons that open new page - ex. "Create product"
* Backlinks
* Menus - ex. "Account Settings"
* Links that actually used onClick - ex. warehouse shipping zone, reset password
2022-05-06 10:59:55 +02:00

126 lines
3.9 KiB
TypeScript

import { TextField, Typography } from "@material-ui/core";
import { Button } from "@saleor/components/Button";
import Form from "@saleor/components/Form";
import FormSpacer from "@saleor/components/FormSpacer";
import { SubmitPromise } from "@saleor/hooks/useForm";
import { SetPasswordData } from "@saleor/sdk";
import getAccountErrorMessage from "@saleor/utils/errors/account";
import React from "react";
import { FormattedMessage, useIntl } from "react-intl";
import useStyles from "../styles";
export interface NewPasswordPageFormData {
password: string;
confirmPassword: string;
}
export interface NewPasswordPageProps {
disabled: boolean;
errors: SetPasswordData["errors"];
onSubmit: (data: NewPasswordPageFormData) => SubmitPromise;
}
const initialForm: NewPasswordPageFormData = {
confirmPassword: "",
password: ""
};
const NewPasswordPage: React.FC<NewPasswordPageProps> = props => {
const { disabled, errors, onSubmit } = props;
const classes = useStyles(props);
const intl = useIntl();
const error = getAccountErrorMessage(
errors.find(err => err.field === "password"),
intl
);
return (
<Form initial={initialForm} onSubmit={onSubmit}>
{({ change: handleChange, data, submit: handleSubmit }) => {
const passwordError =
data.password !== data.confirmPassword && data.password.length > 0;
return (
<>
<Typography variant="h3" className={classes.header}>
<FormattedMessage
id="WhKGPA"
defaultMessage="Set up new password"
description="page title"
/>
</Typography>
{!!error && <div className={classes.panel}>{error}</div>}
<Typography variant="caption" color="textSecondary">
<FormattedMessage
id="m0Dz+2"
defaultMessage="Please set up a new password for your account. Repeat your new password to make sure you will be able to remember it."
/>
</Typography>
<FormSpacer />
<TextField
autoFocus
fullWidth
autoComplete="none"
disabled={disabled}
label={intl.formatMessage({
id: "Ev6SEF",
defaultMessage: "New Password"
})}
name="password"
onChange={handleChange}
type="password"
value={data.password}
inputProps={{
"data-test-id": "password"
}}
/>
<FormSpacer />
<TextField
fullWidth
error={passwordError}
autoComplete="none"
disabled={disabled}
label={intl.formatMessage({
id: "vfG+nh",
defaultMessage: "Confirm Password"
})}
name="confirmPassword"
onChange={handleChange}
type="password"
value={data.confirmPassword}
helperText={
passwordError &&
intl.formatMessage({
id: "7Chrsf",
defaultMessage: "Passwords do not match"
})
}
inputProps={{
"data-test-id": "confirm-password"
}}
/>
<FormSpacer />
<Button
data-test="button-bar-confirm"
className={classes.submit}
disabled={(passwordError && data.password.length > 0) || disabled}
variant="primary"
onClick={handleSubmit}
type="submit"
>
<FormattedMessage
id="S22jIs"
defaultMessage="Set new password"
description="button"
/>
</Button>
</>
);
}}
</Form>
);
};
NewPasswordPage.displayName = "NewPasswordPage";
export default NewPasswordPage;