e87390adb9
* update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * fix some accessibility linting errors * fix a lot of linting errors * fix a billion more linting errors * hopefully fix all linting errors, still need to test * fix bugs that fixing linting had caused
90 lines
2.7 KiB
JavaScript
90 lines
2.7 KiB
JavaScript
import React, { PropTypes } from 'react';
|
|
import { Link, browserHistory } from 'react-router';
|
|
import classNames from 'classnames';
|
|
import InlineSVG from 'react-inlinesvg';
|
|
import { bindActionCreators } from 'redux';
|
|
import { reduxForm } from 'redux-form';
|
|
import * as UserActions from '../actions';
|
|
import ResetPasswordForm from '../components/ResetPasswordForm';
|
|
|
|
const exitUrl = require('../../../images/exit.svg');
|
|
const logoUrl = require('../../../images/p5js-logo.svg');
|
|
|
|
class ResetPasswordView extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.gotoHomePage = this.gotoHomePage.bind(this);
|
|
}
|
|
|
|
componentWillMount() {
|
|
this.props.resetPasswordReset();
|
|
}
|
|
|
|
gotoHomePage() {
|
|
browserHistory.push('/');
|
|
}
|
|
|
|
render() {
|
|
const resetPasswordClass = classNames({
|
|
'reset-password': true,
|
|
'reset-password--submitted': this.props.user.resetPasswordInitiate,
|
|
'form-container': true
|
|
});
|
|
return (
|
|
<div className={resetPasswordClass}>
|
|
<div className="form-container__header">
|
|
<button className="form-container__logo-button" onClick={this.gotoHomePage}>
|
|
<InlineSVG src={logoUrl} alt="p5js Logo" />
|
|
</button>
|
|
<button className="form-container__exit-button" onClick={this.gotoHomePage}>
|
|
<InlineSVG src={exitUrl} alt="Close ResetPassword Page" />
|
|
</button>
|
|
</div>
|
|
<div className="form-container__content">
|
|
<h2 className="form-container__title">Reset Your Password</h2>
|
|
<ResetPasswordForm {...this.props} />
|
|
<p className="reset-password__submitted">
|
|
Your password reset email should arrive shortly. If you don't see it, check
|
|
in your spam folder as sometimes it can end up there.
|
|
</p>
|
|
<p className="form__navigation-options">
|
|
<Link className="form__login-button" to="/login">Log In</Link>
|
|
or
|
|
<Link className="form__signup-button" to="/signup">Sign Up</Link>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
ResetPasswordView.propTypes = {
|
|
resetPasswordReset: PropTypes.func.isRequired,
|
|
user: PropTypes.shape({
|
|
resetPasswordInitiate: PropTypes.bool
|
|
}).isRequired,
|
|
};
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
user: state.user
|
|
};
|
|
}
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
return bindActionCreators(UserActions, dispatch);
|
|
}
|
|
|
|
function validate(formProps) {
|
|
const errors = {};
|
|
if (!formProps.email) {
|
|
errors.email = 'Please enter an email';
|
|
}
|
|
return errors;
|
|
}
|
|
|
|
export default reduxForm({
|
|
form: 'reset-password',
|
|
fields: ['email'],
|
|
validate
|
|
}, mapStateToProps, mapDispatchToProps)(ResetPasswordView);
|