File size: 2,254 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
// @flow
import * as React from "react";
import { FormCard, FormTextInput, StandaloneFormPage } from "../../../";
import withTouchedErrors from "../../../helpers/withTouchedErrors.react";
import defaultStrings from "./LoginPage.strings";
import type { stringTypes } from "./LoginPage.strings";
import type { FormEvents, FocusEvents } from "../../../";
type fieldTypes = {|
email?: string,
password?: string,
|};
type touchedTypes = {|
email?: boolean,
password?: boolean,
|};
type Props = {|
...FormEvents,
...FocusEvents,
+strings?: stringTypes,
+action?: string,
+method?: string,
+values?: fieldTypes,
+errors?: fieldTypes,
+touched?: touchedTypes,
|};
/**
* A login page
* Can be easily wrapped with form libraries like formik and redux-form
*/
function LoginPage(props: Props): React.Node {
const {
action,
method,
onSubmit,
onChange,
onBlur,
values,
strings = {},
errors,
imageURL,
} = props;
return (
<StandaloneFormPage imageURL={imageURL}>
<FormCard
buttonText={strings.buttonText || defaultStrings.buttonText}
title={strings.title || defaultStrings.title}
onSubmit={onSubmit}
action={action}
method={method}
>
<FormTextInput
name="email"
label={strings.emailLabel || defaultStrings.emailLabel}
placeholder={
strings.emailPlaceholder || defaultStrings.emailPlaceholder
}
onChange={onChange}
onBlur={onBlur}
value={values && values.email}
error={errors && errors.email}
/>
<FormTextInput
name="password"
type="password"
label={strings.passwordLabel || defaultStrings.passwordLabel}
placeholder={
strings.passwordPlaceholder || defaultStrings.passwordPlaceholder
}
onChange={onChange}
onBlur={onBlur}
value={values && values.password}
error={errors && errors.password}
/>
</FormCard>
</StandaloneFormPage>
);
}
const LoginPageWithTouchedErrors: React.ComponentType<Props> = withTouchedErrors(
["email", "password"]
)(LoginPage);
export default LoginPageWithTouchedErrors;
|