react-native-router-flux
Version:
React Native Router using Flux architecture
40 lines (34 loc) • 1.14 kB
JavaScript
// searches for the deepest explicitly set value for a key
// in a navigationState tree.
export function deepestExplicitValueForKey(navigationState, key) {
let current;
let selected = navigationState;
while ({}.hasOwnProperty.call(selected, 'children')) {
if (!selected.tabs) {
// for pushed children, iterate through each, recording key value,
// until reaching the selected child
for (let i = 0; i < selected.index; i += 1) {
if (typeof selected.children[i][key] !== 'undefined') {
current = selected.children[i][key];
}
}
}
// set the new selected child and check for a key value
selected = selected.children[selected.index];
if (typeof selected[key] !== 'undefined') {
current = selected[key];
}
}
// fallback to the root key value
if (typeof current === 'undefined') {
current = navigationState[key];
}
return current;
}
export function assert(expr, failDescription) {
if (!expr) {
throw new Error(`[react-native-router-flux] ${failDescription}`);
}
}
export const OnEnter = 'onEnter';
export const OnExit = 'onExit';