forked from kuy/redux-saga-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreducers.js
68 lines (62 loc) · 1.55 KB
/
reducers.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { combineReducers } from 'redux';
import {
SET_USERNAME,
REQUEST_SIGN_IN, SUCCESS_SIGN_IN, FAILURE_SIGN_IN,
SUCCESS_GET_USER,
SYNC_ADDED_POST, SYNC_REMOVED_POST
} from './actions';
const initial = {
app: {
status: 'init',
user: '',
},
users: {},
posts: {},
};
function app(state = initial.app, { type, payload }) {
switch (type) {
case REQUEST_SIGN_IN:
return { ...state, status: 'signin' };
case SUCCESS_SIGN_IN:
return { ...state, status: 'username', user: payload.user.uid };
case FAILURE_SIGN_IN:
return { ...state, status: 'init' };
case SET_USERNAME:
return { ...state, status: 'ready' };
}
return state;
}
function userEntity(state, { type, payload }) {
switch (type) {
case SET_USERNAME:
return { ...state, username: payload.username };
case SUCCESS_GET_USER:
return { ...state, username: payload.data.username };
}
return state;
}
function users(state = initial.users, action) {
switch (action.type) {
case SET_USERNAME:
case SUCCESS_GET_USER:
return {
...state,
[action.payload.id]: userEntity(state[action.payload.id], action)
};
}
return state;
}
function posts(state = initial.posts, { type, payload }) {
switch (type) {
case SYNC_ADDED_POST:
return { ...state, [payload.data.key]: payload.data.val() };
case SYNC_REMOVED_POST:
const newState = { ...state };
delete newState[payload.data.key];
return newState;
}
return state;
}
export default combineReducers(
{ app, users, posts }
);