-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
37 lines (33 loc) · 784 Bytes
/
index.js
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
import { AUTH_SIGN, AUTH_SIGNOUT, GET_DATA, Auth_ERR } from "../actions/types";
const intialState = {
auth: false,
content: "",
err: ""
};
const reducer = (state = intialState, action) => {
switch (action.type) {
case AUTH_SIGN:
return {
...state,
auth: true // once users signs in we change auth to true
};
case AUTH_SIGNOUT:
return {
...state,
auth: false // once users signsout we change auth to false
};
case GET_DATA:
return {
...state,
content: action.content
};
case Auth_ERR:
return {
...state,
err: action.err // if error occured we pass error to our react component
};
default:
return state;
}
};
export default reducer;