Skip to content

Commit 0921889

Browse files
ericvicentibrentvatne
authored andcommitted
Avoid crash when calling isFocused on old route (#4634)
1 parent 1951a3a commit 0921889

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

src/getChildNavigation.js

+11-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ function getChildNavigation(navigation, childKey, getCurrentParentNavigation) {
1919

2020
const childRoute = navigation.state.routes.find(r => r.key === childKey);
2121

22+
if (!childRoute) {
23+
return null;
24+
}
25+
2226
if (children[childKey] && children[childKey].state === childRoute) {
2327
return children[childKey];
2428
}
@@ -79,12 +83,16 @@ function getChildNavigation(navigation, childKey, getCurrentParentNavigation) {
7983
getParam: createParamGetter(childRoute),
8084

8185
getChildNavigation: grandChildKey =>
82-
getChildNavigation(children[childKey], grandChildKey, () =>
83-
getCurrentParentNavigation().getChildNavigation(childKey)
84-
),
86+
getChildNavigation(children[childKey], grandChildKey, () => {
87+
const nav = getCurrentParentNavigation();
88+
return nav && nav.getChildNavigation(childKey);
89+
}),
8590

8691
isFocused: () => {
8792
const currentNavigation = getCurrentParentNavigation();
93+
if (!currentNavigation) {
94+
return false;
95+
}
8896
const { routes, index } = currentNavigation.state;
8997
if (!currentNavigation.isFocused()) {
9098
return false;

0 commit comments

Comments
 (0)