Commit a9efb31b authored by kennylbj's avatar kennylbj Committed by ι™ˆε°θͺ

Fix authoriy inherit issue (#3679)

parent 8235142e
......@@ -6,28 +6,20 @@ import Authorized from '@/utils/Authorized';
function AuthComponent({ children, location, routerData, status }) {
const isLogin = status === 'ok';
const getRouteAuthority = (path, routeData) => {
let authorities;
routeData.forEach(route => {
// match prefix
if (pathToRegexp(`${route.path}(.*)`).test(path)) {
authorities = route.authority || authorities;
const getRouteAuthority = (pathname, routeData) => {
const routes = routeData.slice(); // clone
const getAuthority = (routeDatas, path) => {
let authorities;
routeDatas.forEach(route => {
// check partial route
if (pathToRegexp(`${route.path}(.*)`).test(path)) {
if (route.authority) {
authorities = route.authority;
}
// is exact route?
if (!pathToRegexp(route.path).test(path) && route.routes) {
authorities = getAuthority(route.routes, path);
}
// get children authority recursively
if (route.routes) {
authorities = getRouteAuthority(path, route.routes) || authorities;
}
});
return authorities;
};
return getAuthority(routes, pathname);
}
});
return authorities;
};
return (
<Authorized
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment