@fle-ui/pro-router
Version:
64 lines (45 loc) • 3.79 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.loopRouter = void 0;
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
var loopRouter = function loopRouter(routerList) {
var isChild = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
var parent = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
var componentLoader = arguments.length > 3 ? arguments[3] : undefined;
var dynamicImport = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {};
return routerList === null || routerList === void 0 ? void 0 : routerList.map(function (item) {
var routerConfig = _objectSpread({}, item);
var breadcrumb = (parent === null || parent === void 0 ? void 0 : parent.breadcrumb) || [];
if (parent.path && item.path) {
routerConfig.path = "".concat(parent.path).concat(item.path);
}
if (item.path && item.title && item.component) {
routerConfig.breadcrumb = [].concat(_toConsumableArray(breadcrumb), [{
title: item.title,
path: routerConfig.path
}]);
}
if (!isChild && item.layout) {
routerConfig.layout = componentLoader(item.layout, dynamicImport);
}
if (item.component) {
routerConfig.component = componentLoader(item.component, dynamicImport);
}
if (item.routers) {
// @ts-ignore
routerConfig.routers = loopRouter(item.routers, true, routerConfig, componentLoader, dynamicImport);
}
return routerConfig;
});
};
exports.loopRouter = loopRouter;