Add password reset flow components

This commit is contained in:
dominik-zeglen 2019-09-02 17:56:59 +02:00
parent 70b8524239
commit b582a7f51a
7 changed files with 189 additions and 1 deletions

View file

@ -0,0 +1,9 @@
import { storiesOf } from "@storybook/react";
import React from "react";
import Decorator from "@saleor/storybook//Decorator";
import NewPasswordPage from "./NewPasswordPage";
storiesOf("Views / Authentication / Set up a new password", module)
.addDecorator(Decorator)
.add("default", () => <NewPasswordPage onSubmit={() => undefined} />);

View file

@ -0,0 +1,114 @@
import Button from "@material-ui/core/Button";
import TextField from "@material-ui/core/TextField";
import Typography from "@material-ui/core/Typography";
import { makeStyles } from "@material-ui/styles";
import React from "react";
import { FormattedMessage, useIntl } from "react-intl";
import Form from "@saleor/components/Form";
import FormSpacer from "@saleor/components/FormSpacer";
import Layout from "../Layout";
const useStyles = makeStyles(
{
submit: {
width: "100%"
}
},
{
name: "NewPasswordPage"
}
);
export interface NewPasswordPageFormData {
password: string;
confirmPassword: string;
}
export interface NewPasswordPageProps {
onSubmit: (data: NewPasswordPageFormData) => void;
}
const initialForm: NewPasswordPageFormData = {
confirmPassword: "",
password: ""
};
const NewPasswordPage: React.FC<NewPasswordPageProps> = props => {
const { onSubmit } = props;
const classes = useStyles(props);
const intl = useIntl();
return (
<Form initial={initialForm} onSubmit={onSubmit}>
{({ change: handleChange, data, submit: handleSubmit }) => {
const passwordError =
data.password !== data.confirmPassword && data.password.length > 0;
return (
<Layout>
<Typography>
<FormattedMessage defaultMessage="Please set up a new password." />
</Typography>
<FormSpacer />
<TextField
autoFocus
fullWidth
autoComplete="none"
label={intl.formatMessage({
defaultMessage: "New Password"
})}
name="password"
onChange={handleChange}
type="password"
value={data.password}
inputProps={{
"data-tc": "password"
}}
/>
<FormSpacer />
<TextField
autoFocus
fullWidth
error={passwordError}
autoComplete="none"
label={intl.formatMessage({
defaultMessage: "Confirm Password"
})}
name="confirmPassword"
onChange={handleChange}
type="password"
value={data.confirmPassword}
helperText={
passwordError &&
intl.formatMessage({
defaultMessage: "Passwords do not match"
})
}
inputProps={{
"data-tc": "confirm-password"
}}
/>
<FormSpacer />
<Button
className={classes.submit}
color="primary"
disabled={passwordError && data.password.length > 0}
variant="contained"
onClick={handleSubmit}
type="submit"
>
<FormattedMessage
defaultMessage="Set new password"
description="button"
/>
</Button>
</Layout>
);
}}
</Form>
);
};
NewPasswordPage.displayName = "NewPasswordPage";
export default NewPasswordPage;

View file

@ -1,5 +1,4 @@
import Button from "@material-ui/core/Button";
import { Theme } from "@material-ui/core/styles";
import TextField from "@material-ui/core/TextField";
import Typography from "@material-ui/core/Typography";
import { makeStyles } from "@material-ui/styles";

View file

@ -0,0 +1,11 @@
import { storiesOf } from "@storybook/react";
import React from "react";
import Decorator from "@saleor/storybook/Decorator";
import ResetPasswordSuccessPage from "./ResetPasswordSuccessPage";
storiesOf("Views / Authentication / Reset password success", module)
.addDecorator(Decorator)
.add("default", () => (
<ResetPasswordSuccessPage onSubmit={() => undefined} />
));

View file

@ -0,0 +1,55 @@
import Button from "@material-ui/core/Button";
import Typography from "@material-ui/core/Typography";
import { makeStyles } from "@material-ui/styles";
import React from "react";
import { FormattedMessage } from "react-intl";
import FormSpacer from "@saleor/components/FormSpacer";
import Layout from "../Layout";
const useStyles = makeStyles(
{
submit: {
width: "100%"
}
},
{
name: "ResetPasswordSuccessPage"
}
);
export interface ResetPasswordSuccessPageFormData {
email: string;
}
export interface ResetPasswordSuccessPageProps {
onBack: () => void;
}
const ResetPasswordSuccessPage: React.FC<
ResetPasswordSuccessPageProps
> = props => {
const { onBack } = props;
const classes = useStyles(props);
return (
<Layout>
<Typography>
<FormattedMessage defaultMessage="Success! If we have your e-mail, youll receive a message with instructions on how to reset your password." />
</Typography>
<FormSpacer />
<Button
className={classes.submit}
color="primary"
variant="contained"
onClick={onBack}
type="submit"
>
<FormattedMessage defaultMessage="Back to login" description="button" />
</Button>
</Layout>
);
};
ResetPasswordSuccessPage.displayName = "ResetPasswordSuccessPage";
export default ResetPasswordSuccessPage;