Skip to content

Commit a8667da

Browse files
committed
refactor
1 parent 390e3da commit a8667da

File tree

3 files changed

+57
-38
lines changed

3 files changed

+57
-38
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

index.js

+49-32
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,66 @@
1-
import { Reducer } from 'react-native-router-flux'
2-
3-
/*
4-
* This class provides functionality to hook onto `react-native-router-flux`'s
5-
* FOCUS action, thereby making it possible to update a component's state when
6-
* it is navigated to. This is currently necessary react-native-router-flux
7-
* only renders a component the first time it is navigated to, or if the props
8-
* to a Scene is changed, but neither of these can be achieved with the back
9-
* button.
10-
*
11-
* See README.md for usage example
12-
*/
13-
export default class NavigationStateHandler {
14-
constructor() {
15-
this._focusHooks = []
16-
}
1+
import { Reducer, ActionConst } from 'react-native-router-flux';
2+
import _ from 'lodash';
3+
4+
const keyEvents = [
5+
ActionConst.REFRESH,
6+
ActionConst.FOCUS,
7+
];
8+
9+
const attachHandlers = (baseClass) => {
10+
_.forEach(keyEvents, keyEvent => {
11+
const actionName = _.camelCase(_.findKey(ActionConst, keyEvent));
12+
const registerHookName = `register${actionName}Hook`;
13+
const unregisterHookName = `unregister${actionName}Hook`;
14+
15+
baseClass.prototype[registerHookName] = component => {
16+
const handlerName = `handleNavigationScene${actionName}`;
17+
if (component[handlerName] === undefined) {
18+
throw `Provided component does not define ${handlerName}`;
19+
}
1720

18-
registerFocusHook(component) {
19-
const sceneKey = component.props.sceneKey
20-
// make sure to bind the component to have `this` set to itself so that `setState` etc are available
21-
if (component.handleNavigationSceneFocus === undefined) {
22-
throw "Provided component does not define `handleNavigationSceneFocus`"
21+
const boundedHandler = component.[handlerName].bind(component);
22+
const { sceneKey } = component.props;
23+
const hook = { };
24+
hook[keyEvent] = boundedHandler;
25+
this._addHook(hook, sceneKey);
26+
};
27+
28+
baseClass.prototype[unregisterHookName] = component => {
29+
const { sceneKey } = component.props;
30+
this._removeHook(keyEvent, sceneKey);
2331
}
32+
});
33+
};
2434

25-
const func = component.handleNavigationSceneFocus.bind(component);
26-
this._focusHooks.push({ sceneKey: sceneKey, func: func})
35+
class NavigationStateHandler {
36+
constructor() {
37+
this._hooks = { };
2738
}
2839

29-
unregisterFocusHook(component) {
30-
const sceneKey = component.props.sceneKey
31-
this._focusHooks = this._focusHooks.filter((h) => h.sceneKey != sceneKey)
40+
_addHook(hook, sceneKey) {
41+
this._hooks[sceneKey] = this._hooks[sceneKey] || {};
42+
this._hooks[sceneKey] = { ...this._hooks[sceneKey], ...hook };
43+
}
44+
45+
_removeHook(hookName, sceneKey) {
46+
this._hooks[sceneKey] = _.omit(this.hooks[sceneKey], hookName);
3247
}
3348

3449
getReducer(params) {
3550
const defaultReducer = Reducer(params);
51+
const isKeyEvent = (type) => _.includes(keyEvents, type);
3652

3753
return (state, action) => {
38-
if (action.scene && action.type == "REACT_NATIVE_ROUTER_FLUX_FOCUS") {
39-
this._focusHooks.forEach((hook) => {
40-
if (hook.sceneKey == action.scene.sceneKey) {
41-
hook.func()
42-
}
43-
})
54+
if (action.scene && isKeyEvent(action.type)) {
55+
const sceneHandler = this._hooks[action.scene.sceneKey];
56+
if (sceneHandler) {
57+
sceneHandler[action.type]();
58+
}
4459
}
4560

4661
return defaultReducer(state, action);
4762
}
4863
}
4964
}
65+
66+
export default attachHandlers(NavigationStateHandler);

package.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "react-native-router-flux-focus-hook",
2+
"name": "react-native-router-flux-hooks",
33
"version": "0.0.1",
44
"description": "Allow for updating component state on navigation",
55
"main": "index.js",
@@ -8,15 +8,16 @@
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/leifdenby/react-native-router-flux-focus-hook.git"
11+
"url": "git+https://github.com/codeNgamer/react-native-router-flux-hooks.git"
1212
},
13-
"author": "Leif Denby",
14-
"license": "ISC",
13+
"author": "codeNgamer",
14+
"license": "MIT",
1515
"bugs": {
16-
"url": "https://github.com/leifdenby/react-native-router-flux-focus-hook/issues"
16+
"url": "https://github.com/codeNgamer/react-native-router-flux-hooks/issues"
1717
},
18-
"homepage": "https://github.com/leifdenby/react-native-router-flux-focus-hook#readme",
18+
"homepage": "https://github.com/codeNgamer/react-native-router-flux-hooks#readme",
1919
"dependencies": {
20+
"lodash": "^4.17.4",
2021
"react-native-router-flux": "^3.37.0"
2122
}
2223
}

0 commit comments

Comments
 (0)