2016-06-23 22:29:55 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { bindActionCreators } from 'redux';
|
|
|
|
import { reduxForm } from 'redux-form';
|
|
|
|
import * as UserActions from '../actions';
|
|
|
|
import LoginForm from '../components/LoginForm';
|
|
|
|
|
2016-06-24 22:18:22 +00:00
|
|
|
function LoginView(props) {
|
|
|
|
return (
|
|
|
|
<div className="login">
|
|
|
|
<h1>Login</h1>
|
|
|
|
<LoginForm {...props} />
|
|
|
|
</div>
|
|
|
|
);
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function mapStateToProps(state) {
|
|
|
|
return {
|
|
|
|
user: state.user
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
|
|
return bindActionCreators(UserActions, dispatch);
|
|
|
|
}
|
|
|
|
|
|
|
|
function validate(formProps) {
|
|
|
|
const errors = {};
|
2016-06-24 18:22:32 +00:00
|
|
|
if (!formProps.email) {
|
|
|
|
errors.email = 'Please enter a email';
|
|
|
|
}
|
|
|
|
if (!formProps.password) {
|
|
|
|
errors.password = 'Please enter a password';
|
|
|
|
}
|
2016-06-23 22:29:55 +00:00
|
|
|
return errors;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default reduxForm({
|
|
|
|
form: 'login',
|
|
|
|
fields: ['email', 'password'],
|
|
|
|
validate
|
|
|
|
}, mapStateToProps, mapDispatchToProps)(LoginView);
|