Skip to content
Snippets Groups Projects
Commit 7c29a008 authored by Ismail's avatar Ismail
Browse files

auth actions created, modified dispatch for login action

parent 6cf7b931
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ function App() {
return (
<BrowserRouter>
<div className="App">
<Dashboard />
<SignIn />
</div>
</BrowserRouter>
);
......
import React, { Component } from 'react';
import Logo from '../images/header-logo.png';
import { connect } from 'react-redux';
import { signIn } from '../../store/actions/authAction';
class Signin extends Component {
state = {
......@@ -15,6 +17,7 @@ class Signin extends Component {
handleSubmit = (e) => {
e.preventDefault();
this.props.signIn(this.state);
}
render(){
return(
......@@ -39,5 +42,10 @@ class Signin extends Component {
)
}
}
const mapDisToProps = (dispatch) => {
return {
signIn: (credentials) => dispatch(signIn(credentials))
}
}
export default Signin;
\ No newline at end of file
export default connect(null, mapDisToProps)(Signin);
\ No newline at end of file
export const signIn = (credentials) => {
return (dispatch, getState) => {
dispatch({ type: 'LOGIN', credentials})
}
}
\ No newline at end of file
const initialState = {}
const authRed = (state = initialState, action) => {
return state
const authReducer = (state = initialState, action) => {
switch (action.type) {
case 'LOGIN':
console.log('Login check', action.credentials);
default:
return state;
}
return state;
}
export default authRed;
\ No newline at end of file
export default authReducer
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment