100 lines
3 KiB
JavaScript
100 lines
3 KiB
JavaScript
import React from 'react';
|
|
import { bindActionCreators } from 'redux';
|
|
import * as UserActions from '../../User/actions';
|
|
import { reduxForm } from 'redux-form';
|
|
import SignupForm from '../components/SignupForm';
|
|
import axios from 'axios';
|
|
import { Link } from 'react-router';
|
|
|
|
class SignupView extends React.Component {
|
|
componentDidMount() {
|
|
this.refs.signup.focus();
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<div className="signup" ref="signup" tabIndex="0">
|
|
<h1>Sign Up</h1>
|
|
<SignupForm {...this.props} />
|
|
<p className="form__navigation-options">
|
|
Already have an account?
|
|
<Link className="form__login-button" to="/login">Login</Link>
|
|
</p>
|
|
<Link className="form__cancel-button" to="/">Cancel</Link>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
function mapStateToProps(state, ownProps) {
|
|
return {
|
|
user: state.user,
|
|
previousPath: ownProps.previousPath
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return bindActionCreators(UserActions, dispatch);
|
|
}
|
|
|
|
function asyncValidate(formProps, dispatch, props) {
|
|
const fieldToValidate = props.form._active;
|
|
if (fieldToValidate) {
|
|
const queryParams = {};
|
|
queryParams[fieldToValidate] = formProps[fieldToValidate];
|
|
queryParams.check_type = fieldToValidate;
|
|
return axios.get('/api/signup/duplicate_check', { params: queryParams })
|
|
.then(response => {
|
|
if (response.data.exists) {
|
|
const error = {};
|
|
error[fieldToValidate] = response.data.message;
|
|
throw error;
|
|
}
|
|
});
|
|
}
|
|
return Promise.resolve(true).then(() => {});
|
|
}
|
|
|
|
function validate(formProps) {
|
|
const errors = {};
|
|
|
|
if (!formProps.username) {
|
|
errors.username = 'Please enter a username.';
|
|
} else if (!formProps.username.match(/^.{1,20}$/)) {
|
|
errors.username = 'Username must be less than 20 characters.';
|
|
} else if (!formProps.username.match(/^[a-zA-Z0-9._-]{1,20}$/)) {
|
|
errors.username = 'Username must only consist of numbers, letters, periods, dashes, and underscores.';
|
|
}
|
|
|
|
if (!formProps.email) {
|
|
errors.email = 'Please enter an email.';
|
|
} else if (!formProps.email.match(/^[-a-z0-9~!$%^&*_=+}{'?]+(\.[-a-z0-9~!$%^&*_=+}{'?]+)*@([a-z0-9_][-a-z0-9_]*(\.[-a-z0-9_]+)*\.(aero|arpa|biz|com|coop|edu|gov|info|int|mil|museum|name|net|org|pro|travel|mobi|[a-z][a-z])|([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}))(:[0-9]{1,5})?$/i)) {
|
|
errors.email = 'Please enter a valid email address.';
|
|
}
|
|
|
|
if (!formProps.password) {
|
|
errors.password = 'Please enter a password';
|
|
}
|
|
if (!formProps.confirmPassword) {
|
|
errors.confirmPassword = 'Please enter a password confirmation';
|
|
}
|
|
|
|
if (formProps.password !== formProps.confirmPassword) {
|
|
errors.password = 'Passwords must match';
|
|
}
|
|
|
|
return errors;
|
|
}
|
|
|
|
function onSubmitFail(errors) {
|
|
console.log(errors);
|
|
}
|
|
|
|
export default reduxForm({
|
|
form: 'signup',
|
|
fields: ['username', 'email', 'password', 'confirmPassword'],
|
|
onSubmitFail,
|
|
validate,
|
|
asyncValidate,
|
|
asyncBlurFields: ['username', 'email']
|
|
}, mapStateToProps, mapDispatchToProps)(SignupView);
|