import React, { Component } from "react";
import axios from "axios";
import { Redirect, withRouter } from "react-router-dom";
import InputComponent from "../common";
class SignIn extends Component {
componentDidMount() {
const token = localStorage.getItem("token");
if (token) {
this.setState({ token });
}
}
state = {
singIn: {
email: {
value: "",
config: {
type: "email",
name: "email",
placeholder: "Enter your email"
},
valid: false,
touch: false,
validation: {
required: true
}
},
password: {
value: "",
config: {
type: "password",
name: "password",
placeholder: "Enter your password"
},
valid: false,
touch: false,
validation: {
required: true,
minLength: 5
}
}
},
isValid: false,
token: null
};
submit = e => {
e.preventDefault();
const { singIn } = this.state;
// https://test-app-a-level.herokuapp.com
const values = Object.keys(singIn).reduce((prev, elem) => ({ ...prev, [elem]: singIn[elem].value }), {});
console.log("values", values);
axios({
url: "https://test-app-a-level.herokuapp.com/auth/login",
method: "POST",
headers: {
"Content-Type": "application/json"
},
data: values
})
.then(res => {
this.setState({ token: res.data.token });
localStorage.setItem("token", res.data.token);
})
.catch(err => console.log(err.response));
};
validator = (value, rules) => {
let isValid = true;
if (rules.required) {
isValid = value.trim() !== "" && isValid;
}
if (rules.minLength) {
isValid = value.length >= rules.minLength && isValid;
}
return isValid;
};
change = e => {
const { name, value } = e.target;
this.setState(prevState => {
const valid = this.validator(value, prevState.singIn[name].validation);
const otherValid = Object.keys(prevState.singIn).some(el => !prevState.singIn[el].valid);
return {
singIn: {
...prevState.singIn,
[name]: {
...prevState.singIn[name],
value,
touch: true,
valid
}
},
isValid: otherValid && valid
};
});
};
render() {
const { singIn, isValid, token } = this.state;
if (token) {
return