user.js
1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import axios from 'axios';
const USER_REGISTER = 'user/REGISTER';
const USER_LOGIN = 'user/LOGIN';
const USER_LOGOUT = 'user/LOGOUT';
export function register (dataToSubmit) {
const req = axios.post('http://localhost:4000/api/register', dataToSubmit)
.then(res => res.data);
return {
type: USER_REGISTER,
payload: req,
}
};
export function login(dataToSubmit) {
const req = axios.post('http://localhost:4000/api/login', dataToSubmit)
.then(res => res.data);
return {
type: USER_LOGIN,
payload: req,
}
};
export function logout(dataToSubmit) {
const req = axios.post('http://localhost:4000/api/logout', dataToSubmit)
.then(res => res.data);
return {
type: USER_LOGOUT,
}
}
export default function (state = {}, action) {
switch (action.type) {
case USER_REGISTER:
return { ...state, registerSuccess: action.payload };
break;
case USER_LOGIN:
return { ...state, loginData: action.payload };
break;
case USER_LOGOUT:
return { ...state, loginData: action.payload };
break;
default:
return state;
}
}