2018-02-07 18:06:07 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
2020-04-19 20:45:09 +00:00
|
|
|
|
2016-11-16 18:12:36 +00:00
|
|
|
import { domOnlyProps } from '../../../utils/reduxFormUtils';
|
2020-04-19 20:45:09 +00:00
|
|
|
import Button from '../../../common/Button';
|
2016-06-23 22:29:55 +00:00
|
|
|
|
2016-06-27 17:54:50 +00:00
|
|
|
function SignupForm(props) {
|
2018-05-05 00:22:39 +00:00
|
|
|
const {
|
|
|
|
fields: {
|
|
|
|
username, email, password, confirmPassword
|
|
|
|
}, handleSubmit, submitting, invalid, pristine
|
|
|
|
} = props;
|
2016-06-27 17:54:50 +00:00
|
|
|
return (
|
2016-12-19 21:49:37 +00:00
|
|
|
<form className="form" onSubmit={handleSubmit(props.signUpUser.bind(this, props.previousPath))}>
|
2016-12-15 23:43:58 +00:00
|
|
|
<p className="form__field">
|
|
|
|
<label htmlFor="username" className="form__label">User Name</label>
|
2016-06-27 17:54:50 +00:00
|
|
|
<input
|
2016-12-15 23:43:58 +00:00
|
|
|
className="form__input"
|
2016-08-01 01:38:46 +00:00
|
|
|
aria-label="username"
|
2016-06-27 17:54:50 +00:00
|
|
|
type="text"
|
2016-12-15 23:43:58 +00:00
|
|
|
id="username"
|
2016-11-16 18:12:36 +00:00
|
|
|
{...domOnlyProps(username)}
|
2016-06-27 17:54:50 +00:00
|
|
|
/>
|
2016-09-02 17:05:42 +00:00
|
|
|
{username.touched && username.error && <span className="form-error">{username.error}</span>}
|
2016-06-27 17:54:50 +00:00
|
|
|
</p>
|
2016-12-15 23:43:58 +00:00
|
|
|
<p className="form__field">
|
|
|
|
<label htmlFor="email" className="form__label">Email</label>
|
2016-06-27 17:54:50 +00:00
|
|
|
<input
|
2016-12-15 23:43:58 +00:00
|
|
|
className="form__input"
|
2016-08-01 01:38:46 +00:00
|
|
|
aria-label="email"
|
2016-06-27 17:54:50 +00:00
|
|
|
type="text"
|
2016-12-15 23:43:58 +00:00
|
|
|
id="email"
|
2016-11-16 18:12:36 +00:00
|
|
|
{...domOnlyProps(email)}
|
2016-06-27 17:54:50 +00:00
|
|
|
/>
|
2016-09-02 17:05:42 +00:00
|
|
|
{email.touched && email.error && <span className="form-error">{email.error}</span>}
|
2016-06-27 17:54:50 +00:00
|
|
|
</p>
|
2016-12-15 23:43:58 +00:00
|
|
|
<p className="form__field">
|
|
|
|
<label htmlFor="password" className="form__label">Password</label>
|
2016-06-27 17:54:50 +00:00
|
|
|
<input
|
2016-12-15 23:43:58 +00:00
|
|
|
className="form__input"
|
2016-08-01 01:38:46 +00:00
|
|
|
aria-label="password"
|
2016-06-27 17:54:50 +00:00
|
|
|
type="password"
|
2016-12-15 23:43:58 +00:00
|
|
|
id="password"
|
2016-11-16 18:12:36 +00:00
|
|
|
{...domOnlyProps(password)}
|
2016-06-27 17:54:50 +00:00
|
|
|
/>
|
2016-09-02 17:05:42 +00:00
|
|
|
{password.touched && password.error && <span className="form-error">{password.error}</span>}
|
2016-06-27 17:54:50 +00:00
|
|
|
</p>
|
2016-12-15 23:43:58 +00:00
|
|
|
<p className="form__field">
|
|
|
|
<label htmlFor="confirm password" className="form__label">Confirm Password</label>
|
2016-06-27 17:54:50 +00:00
|
|
|
<input
|
2016-12-15 23:43:58 +00:00
|
|
|
className="form__input"
|
2016-06-27 17:54:50 +00:00
|
|
|
type="password"
|
2016-08-01 01:38:46 +00:00
|
|
|
aria-label="confirm password"
|
2016-12-15 23:43:58 +00:00
|
|
|
id="confirm password"
|
2016-11-16 18:12:36 +00:00
|
|
|
{...domOnlyProps(confirmPassword)}
|
2016-06-27 17:54:50 +00:00
|
|
|
/>
|
2017-06-06 02:33:32 +00:00
|
|
|
{
|
|
|
|
confirmPassword.touched &&
|
|
|
|
confirmPassword.error &&
|
|
|
|
<span className="form-error">{confirmPassword.error}</span>
|
|
|
|
}
|
2016-06-27 17:54:50 +00:00
|
|
|
</p>
|
2020-04-19 20:45:09 +00:00
|
|
|
<Button
|
|
|
|
type="submit"
|
|
|
|
disabled={submitting || invalid || pristine}
|
|
|
|
>Sign Up
|
|
|
|
</Button>
|
2016-06-27 17:54:50 +00:00
|
|
|
</form>
|
|
|
|
);
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
|
|
|
|
2016-06-27 17:54:50 +00:00
|
|
|
SignupForm.propTypes = {
|
|
|
|
fields: PropTypes.shape({
|
2016-08-30 03:26:45 +00:00
|
|
|
username: PropTypes.object.isRequired,
|
|
|
|
email: PropTypes.object.isRequired,
|
|
|
|
password: PropTypes.object.isRequired,
|
|
|
|
confirmPassword: PropTypes.object.isRequired
|
2016-06-27 17:54:50 +00:00
|
|
|
}).isRequired,
|
|
|
|
handleSubmit: PropTypes.func.isRequired,
|
2016-09-02 18:51:30 +00:00
|
|
|
signUpUser: PropTypes.func.isRequired,
|
|
|
|
submitting: PropTypes.bool,
|
|
|
|
invalid: PropTypes.bool,
|
2016-11-10 21:13:00 +00:00
|
|
|
pristine: PropTypes.bool,
|
|
|
|
previousPath: PropTypes.string.isRequired
|
2016-06-27 17:54:50 +00:00
|
|
|
};
|
|
|
|
|
2017-02-22 19:29:35 +00:00
|
|
|
SignupForm.defaultProps = {
|
|
|
|
submitting: false,
|
|
|
|
pristine: true,
|
|
|
|
invalid: false
|
|
|
|
};
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
export default SignupForm;
|