@react-navigation/core
Version:
Core utilities for building navigators
27 lines (26 loc) • 1.17 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = validatePathConfig;
const formatToList = items => items.map(key => `- ${key}`).join('\n');
function validatePathConfig(config) {
let root = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
const validKeys = ['initialRouteName', 'screens'];
if (!root) {
validKeys.push('path', 'exact', 'stringify', 'parse');
}
const invalidKeys = Object.keys(config).filter(key => !validKeys.includes(key));
if (invalidKeys.length) {
throw new Error(`Found invalid properties in the configuration:\n${formatToList(invalidKeys)}\n\nDid you forget to specify them under a 'screens' property?\n\nYou can only specify the following properties:\n${formatToList(validKeys)}\n\nSee https://reactnavigation.org/docs/configuring-links for more details on how to specify a linking configuration.`);
}
if (config.screens) {
Object.entries(config.screens).forEach(_ref => {
let [_, value] = _ref;
if (typeof value !== 'string') {
validatePathConfig(value, false);
}
});
}
}
//# sourceMappingURL=validatePathConfig.js.map
;