-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathuser.js
49 lines (49 loc) · 826 Bytes
/
user.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
export const initialState = {
user: {
address: {
city: '',
geo: {
lat: '',
lng: '',
},
street: '',
suite: '',
zipcode: '',
},
company: {
bs: '',
catchPhrase: '',
name: '',
},
email: '',
id: 0,
name: '',
phone: '',
username: '',
website: '',
},
userList: [],
status: {
isFetchedUserList: false,
},
};
export default (state = initialState, action) => {
switch (action.type) {
case 'FETCH_USER':
return {
...state,
user: action.payload,
};
case 'FETCH_USERS':
return {
...state,
userList: action.payload,
status: {
...state.status,
isFetchedUserList: true,
},
};
default:
return state;
}
};