-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore.js
30 lines (24 loc) · 820 Bytes
/
store.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
import { createStore, applyMiddleware } from 'redux';
import { persistStore, persistReducer } from 'redux-persist';
import reducer from './reducers/index';
import { AsyncStorage } from 'react-native';
import { createReactNavigationReduxMiddleware } from 'react-navigation-redux-helpers';
// const store = createStore(reducer, {
// suggestionList: [],
// categoryList: [],
// })
const persistConfig = {
key: 'root',
storage: AsyncStorage,
blacklist: ['navigation', 'selectedMovie'],
};
const persistedReducer = persistReducer(persistConfig, reducer);
const navigationMiddleware = createReactNavigationReduxMiddleware(
(state) => state.navigation,
);
const store = createStore(
persistedReducer,
applyMiddleware(navigationMiddleware),
);
const persistor = persistStore(store);
export { store, persistor };