TabRouter.js
10.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
var _invariant = require('../utils/invariant');
var _invariant2 = _interopRequireDefault(_invariant);
var _getScreenForRouteName = require('./getScreenForRouteName');
var _getScreenForRouteName2 = _interopRequireDefault(_getScreenForRouteName);
var _createConfigGetter = require('./createConfigGetter');
var _createConfigGetter2 = _interopRequireDefault(_createConfigGetter);
var _NavigationActions = require('../NavigationActions');
var _NavigationActions2 = _interopRequireDefault(_NavigationActions);
var _validateRouteConfigMap = require('./validateRouteConfigMap');
var _validateRouteConfigMap2 = _interopRequireDefault(_validateRouteConfigMap);
var _getScreenConfigDeprecated = require('./getScreenConfigDeprecated');
var _getScreenConfigDeprecated2 = _interopRequireDefault(_getScreenConfigDeprecated);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
exports.default = function (routeConfigs) {
var config = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
// Fail fast on invalid route definitions
(0, _validateRouteConfigMap2.default)(routeConfigs);
var order = config.order || Object.keys(routeConfigs);
var paths = config.paths || {};
var initialRouteName = config.initialRouteName || order[0];
var initialRouteIndex = order.indexOf(initialRouteName);
var backBehavior = config.backBehavior || 'initialRoute';
var shouldBackNavigateToInitialRoute = backBehavior === 'initialRoute';
var tabRouters = {};
order.forEach(function (routeName) {
var routeConfig = routeConfigs[routeName];
paths[routeName] = typeof routeConfig.path === 'string' ? routeConfig.path : routeName;
tabRouters[routeName] = null;
if (routeConfig.screen && routeConfig.screen.router) {
tabRouters[routeName] = routeConfig.screen.router;
}
});
if (initialRouteIndex === -1) {
throw new Error('Invalid initialRouteName \'' + initialRouteName + '\' for TabRouter. ' + ('Should be one of ' + order.map(function (n) {
return '"' + n + '"';
}).join(', ')));
}
return {
getStateForAction: function getStateForAction(action, inputState) {
// Establish a default state
var state = inputState;
if (!state) {
var _routes = order.map(function (routeName) {
var tabRouter = tabRouters[routeName];
if (tabRouter) {
var childAction = _NavigationActions2.default.init();
return _extends({}, tabRouter.getStateForAction(childAction), {
key: routeName,
routeName: routeName
});
}
return {
key: routeName,
routeName: routeName
};
});
state = {
routes: _routes,
index: initialRouteIndex
};
// console.log(`${order.join('-')}: Initial state`, {state});
}
if (action.type === _NavigationActions2.default.INIT) {
// Merge any params from the action into all the child routes
var params = action.params;
if (params) {
state.routes = state.routes.map(function (route) {
return _extends({}, route, {
params: _extends({}, route.params, params)
});
});
}
}
// Let the current tab handle it
var activeTabLastState = state.routes[state.index];
var activeTabRouter = tabRouters[order[state.index]];
if (activeTabRouter) {
var activeTabState = activeTabRouter.getStateForAction(action, activeTabLastState);
if (!activeTabState && inputState) {
return null;
}
if (activeTabState && activeTabState !== activeTabLastState) {
var _routes2 = [].concat(_toConsumableArray(state.routes));
_routes2[state.index] = activeTabState;
return _extends({}, state, {
routes: _routes2
});
}
}
// Handle tab changing. Do this after letting the current tab try to
// handle the action, to allow inner tabs to change first
var activeTabIndex = state.index;
var isBackEligible = action.key == null || action.key === activeTabLastState.key;
if (action.type === _NavigationActions2.default.BACK && isBackEligible && shouldBackNavigateToInitialRoute) {
activeTabIndex = initialRouteIndex;
}
var didNavigate = false;
if (action.type === _NavigationActions2.default.NAVIGATE) {
var navigateAction = action;
didNavigate = !!order.find(function (tabId, i) {
if (tabId === navigateAction.routeName) {
activeTabIndex = i;
return true;
}
return false;
});
if (didNavigate) {
var childState = state.routes[activeTabIndex];
var newChildState = void 0;
var tabRouter = tabRouters[action.routeName];
if (action.action) {
newChildState = tabRouter ? tabRouter.getStateForAction(action.action, childState) : null;
} else if (!tabRouter && action.params) {
newChildState = _extends({}, childState, {
params: _extends({}, childState.params || {}, action.params)
});
}
if (newChildState && newChildState !== childState) {
var _routes3 = [].concat(_toConsumableArray(state.routes));
_routes3[activeTabIndex] = newChildState;
return _extends({}, state, {
routes: _routes3,
index: activeTabIndex
});
}
}
}
if (action.type === _NavigationActions2.default.SET_PARAMS) {
var key = action.key;
var lastRoute = state.routes.find(function (route) {
return route.key === key;
});
if (lastRoute) {
var _params = _extends({}, lastRoute.params, action.params);
var _routes4 = [].concat(_toConsumableArray(state.routes));
_routes4[state.routes.indexOf(lastRoute)] = _extends({}, lastRoute, {
params: _params
});
return _extends({}, state, {
routes: _routes4
});
}
}
if (activeTabIndex !== state.index) {
return _extends({}, state, {
index: activeTabIndex
});
} else if (didNavigate && !inputState) {
return state;
} else if (didNavigate) {
return null;
}
// Let other tabs handle it and switch to the first tab that returns a new state
var index = state.index;
/* $FlowFixMe */
var routes = state.routes;
order.find(function (tabId, i) {
var tabRouter = tabRouters[tabId];
if (i === index) {
return false;
}
var tabState = routes[i];
if (tabRouter) {
// console.log(`${order.join('-')}: Processing child router:`, {action, tabState});
tabState = tabRouter.getStateForAction(action, tabState);
}
if (!tabState) {
index = i;
return true;
}
if (tabState !== routes[i]) {
routes = [].concat(_toConsumableArray(routes));
routes[i] = tabState;
index = i;
return true;
}
return false;
});
// console.log(`${order.join('-')}: Processed other tabs:`, {lastIndex: state.index, index});
// keep active tab index if action type is SET_PARAMS
index = action.type === _NavigationActions2.default.SET_PARAMS ? state.index : index;
if (index !== state.index || routes !== state.routes) {
return _extends({}, state, {
index: index,
routes: routes
});
}
return state;
},
getComponentForState: function getComponentForState(state) {
var routeName = order[state.index];
(0, _invariant2.default)(routeName, 'There is no route defined for index ' + state.index + '. Check that\n that you passed in a navigation state with a valid tab/screen index.');
var childRouter = tabRouters[routeName];
if (childRouter) {
return childRouter.getComponentForState(state.routes[state.index]);
}
return (0, _getScreenForRouteName2.default)(routeConfigs, routeName);
},
getComponentForRouteName: function getComponentForRouteName(routeName) {
return (0, _getScreenForRouteName2.default)(routeConfigs, routeName);
},
getPathAndParamsForState: function getPathAndParamsForState(state) {
var route = state.routes[state.index];
var routeName = order[state.index];
var subPath = paths[routeName];
var screen = (0, _getScreenForRouteName2.default)(routeConfigs, routeName);
var path = subPath;
var params = route.params;
if (screen && screen.router) {
// $FlowFixMe there's no way type the specific shape of the nav state
var stateRoute = route;
// If it has a router it's a navigator.
// If it doesn't have router it's an ordinary React component.
var child = screen.router.getPathAndParamsForState(stateRoute);
path = subPath ? subPath + '/' + child.path : child.path;
params = child.params ? _extends({}, params, child.params) : params;
}
return {
path: path,
params: params
};
},
/**
* Gets an optional action, based on a relative path and query params.
*
* This will return null if there is no action matched
*/
getActionForPathAndParams: function getActionForPathAndParams(path, params) {
return order.map(function (tabId) {
var parts = path.split('/');
var pathToTest = paths[tabId];
if (parts[0] === pathToTest) {
var tabRouter = tabRouters[tabId];
var action = _NavigationActions2.default.navigate({
routeName: tabId
});
if (tabRouter && tabRouter.getActionForPathAndParams) {
action.action = tabRouter.getActionForPathAndParams(parts.slice(1).join('/'), params);
} else if (params) {
action.params = params;
}
return action;
}
return null;
}).find(function (action) {
return !!action;
}) || order.map(function (tabId) {
var tabRouter = tabRouters[tabId];
return tabRouter && tabRouter.getActionForPathAndParams(path, params);
}).find(function (action) {
return !!action;
}) || null;
},
getScreenOptions: (0, _createConfigGetter2.default)(routeConfigs, config.navigationOptions),
getScreenConfig: _getScreenConfigDeprecated2.default
};
};