Skip to content

Commit fd42d37

Browse files
committed
fix reducer error, bump version
1 parent 045331c commit fd42d37

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-router-flux",
3-
"version": "4.0.4",
3+
"version": "4.0.5",
44
"description": "React Native Router using Flux architecture",
55
"repository": {
66
"type": "git",

src/Reducer.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ import { NavigationActions, StackActions } from 'react-navigation';
33
import * as ActionConst from './ActionConst';
44
import { getActiveState, popPrevious } from './State';
55

6-
export default function createReducer(navigationStore) {
6+
export default function createReducer() {
77
return (state, action) => {
8-
if (!navigationStore) {
9-
navigationStore = require('./navigationStore').default;
10-
}
8+
const navigationStore = require('./navigationStore').default;
119
const { type, routeName } = action;
1210
if (type === ActionConst.POP_TO) {
1311
let nextScene = '';

src/navigationStore.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ class NavigationStore {
520520

521521
setCustomReducer = (Navigator) => {
522522
this.getStateForAction = Navigator.router.getStateForAction;
523-
const reducer = createReducer(this);
523+
const reducer = createReducer();
524524
Navigator.router.getStateForAction = (cmd, state) => (this.reducer ? this.reducer(state, cmd) : reducer(state, cmd));
525525
};
526526

0 commit comments

Comments
 (0)