forked from wix/react-native-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyStore.js
40 lines (34 loc) · 743 Bytes
/
MyStore.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
const redux = require('redux');
const merge = require('lodash/merge');
const get = require('lodash/get');
const initialState = {
person: {
name: 'no name'
}
};
const reducer = (state = initialState, action) => {
switch (action.type) {
case 'redux.MyStore.setName': {
return merge({}, state, { person: { name: action.name } });
}
case 'redux.MyStore.setAge': {
return merge({}, state, { person: { age: action.age } });
}
default: {
return state;
}
}
};
const selectors = {
getName(state) {
return get(state, 'person.name');
},
getAge(state) {
return state.person.age;
}
};
const reduxStore = redux.createStore(reducer);
module.exports = {
reduxStore,
selectors
};