mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
a91466f84a
Summary: There is a NavigationState type within this module so the name cannot be shared Reviewed By: hedgerwang Differential Revision: D2938311 fb-gh-sync-id: c5208755c9dfa5bf0e67666957c01e203ddd4218 shipit-source-id: c5208755c9dfa5bf0e67666957c01e203ddd4218
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule NavigationFindReducer
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
/*
|
|
* NavigationFindReducer takes an array of reducers, and returns a reducer that
|
|
* iterates through all of the reducers and the result of the first reducer
|
|
* that modifies the input
|
|
*/
|
|
|
|
import type {
|
|
NavigationState,
|
|
NavigationReducer
|
|
} from 'NavigationStateUtils';
|
|
|
|
function NavigationFindReducer(reducers: Array<NavigationReducer>): NavigationReducer {
|
|
return function(lastState: ?NavigationState, action: ?any): ?NavigationState {
|
|
for (let i = 0; i < reducers.length; i++) {
|
|
let reducer = reducers[i];
|
|
let newState = reducer(lastState, action);
|
|
if (newState !== lastState) {
|
|
return newState;
|
|
}
|
|
}
|
|
return lastState;
|
|
};
|
|
}
|
|
|
|
module.exports = NavigationFindReducer;
|