|
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 | + } |
17 | 20 |
|
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); |
23 | 31 | }
|
| 32 | + }); |
| 33 | +}; |
24 | 34 |
|
25 |
| - const func = component.handleNavigationSceneFocus.bind(component); |
26 |
| - this._focusHooks.push({ sceneKey: sceneKey, func: func}) |
| 35 | +class NavigationStateHandler { |
| 36 | + constructor() { |
| 37 | + this._hooks = { }; |
27 | 38 | }
|
28 | 39 |
|
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); |
32 | 47 | }
|
33 | 48 |
|
34 | 49 | getReducer(params) {
|
35 | 50 | const defaultReducer = Reducer(params);
|
| 51 | + const isKeyEvent = (type) => _.includes(keyEvents, type); |
36 | 52 |
|
37 | 53 | 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 | + } |
44 | 59 | }
|
45 | 60 |
|
46 | 61 | return defaultReducer(state, action);
|
47 | 62 | }
|
48 | 63 | }
|
49 | 64 | }
|
| 65 | + |
| 66 | +export default attachHandlers(NavigationStateHandler); |
0 commit comments