static-cms/src/backends/netlify-auth/AuthenticationPage.js
2017-09-05 16:48:51 -07:00

108 lines
3.0 KiB
JavaScript

import React from "react";
import Input from "react-toolbox/lib/input";
import Button from "react-toolbox/lib/button";
import { Card, Icon } from "../../components/UI";
import logo from "./netlify_logo.svg";
import styles from "./AuthenticationPage.css";
export default class AuthenticationPage extends React.Component {
constructor(props) {
super(props);
this.identity = window.identity;
this.state = {user: this.identity && this.identity.gotrue && this.identity.gotrue.currentUser()};
}
componentDidMount() {
if (this.identity && !this.state.user) {
this.identity.on('login', (user) => {
this.props.onLogin(user);
this.identity.close();
});
this.identity.on('signup', (user) => {
this.props.onLogin(user);
this.identity.close();
});
this.identity.open();
}
}
static propTypes = {
onLogin: React.PropTypes.func.isRequired,
};
state = { email: "", password: "", errors: {} };
handleChange = (name, value) => {
this.setState({ ...this.state, [name]: value });
};
handleLogin = (e) => {
e.preventDefault();
const { email, password } = this.state;
const errors = {};
if (!email) {
errors.email = 'Make sure to enter your user name';
}
if (!password) {
errors.password = 'Please enter your password';
}
if (Object.keys(errors).length > 0) {
this.setState({ errors });
return;
}
AuthenticationPage.authClient.login(this.state.email, this.state.password, true)
.then((user) => {
this.props.onLogin(user);
})
.catch((error) => {
this.setState({ errors: { server: error.description || error.msg || error }, loggingIn: false });
});
};
render() {
const { errors } = this.state;
const { error } = this.props;
return (
<section className={styles.root}>
<Card className={styles.card}>
<form onSubmit={this.handleLogin}>
<img src={logo} width={100} role="presentation" />
{error && <p>
<span className={styles.errorMsg}>{error}</span>
</p>}
{errors.server && <p>
<span className={styles.errorMsg}>{errors.server}</span>
</p>}
<Input
type="text"
label="Email"
name="email"
value={this.state.email}
error={errors.email}
onChange={this.handleChange.bind(this, "email")} // eslint-disable-line
/>
<Input
type="password"
label="Password"
name="password"
value={this.state.password}
error={errors.password}
onChange={this.handleChange.bind(this, "password")} // eslint-disable-line
/>
<Button
className={styles.button}
raised
>
<Icon type="login" /> Login
</Button>
</form>
</Card>
</section>
);
}
}