import Authorized from '@/utils/Authorized'; import { connect } from 'dva'; import pathToRegexp from 'path-to-regexp'; import React from 'react'; import Redirect from 'umi/redirect'; import { UserModelState } from '../models/user'; interface AuthComponentProps { location: Location; routerData: any[]; user: UserModelState; } const AuthComponent: React.SFC = ({ children, location, routerData, user }) => { const { currentUser } = user; const isLogin = currentUser && currentUser.name; const getRouteAuthority = (path, routeData) => { let authorities; routeData.forEach(route => { // match prefix if (pathToRegexp(`${route.path}(.*)`).test(path)) { authorities = route.authority || authorities; // get children authority recursively if (route.routes) { authorities = getRouteAuthority(path, route.routes) || authorities; } } }); return authorities; }; return ( : } > {children} ); }; export default connect(({ menu: menuModel, user }) => ({ routerData: menuModel.routerData, user, }))(AuthComponent);