@alitajs/utils
Version:
41 lines (31 loc) • 910 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = resetMainPath;
function resetMainPath(routes, mainPath) {
let newPath = mainPath; // 把用户输入/abc/ 转成 /abc
if (newPath !== '/' && newPath.slice(-1) === '/') {
newPath = newPath.slice(0, -1);
} // 把用户输入abc 转成 /abc
if (newPath !== '/' && newPath.slice(0, 1) !== '/') {
newPath = `/${newPath}`;
}
return routes.map(element => {
if (element.isResetMainEdit) {
return element;
}
if (element.path === '/' && !element.routes) {
element.path = '/index';
element.isResetMainEdit = true;
}
if (element.path === newPath) {
element.path = '/';
element.isResetMainEdit = true;
}
if (Array.isArray(element.routes)) {
element.routes = resetMainPath(element.routes, mainPath);
}
return element;
});
}