import Authorized from '@/utils/Authorized'; import { ConnectProps, ConnectState, UserModelState, Route } from '@/models/connect'; import { connect } from 'dva'; import pathToRegexp from 'path-to-regexp'; import React from 'react'; import Redirect from 'umi/redirect'; interface AuthComponentProps extends ConnectProps { user: UserModelState; } const getRouteAuthority = (path: string, routeData: Route[]) => { let authorities: string[] | string | undefined = undefined; 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; }; const AuthComponent: React.FC = ({ children, route = { routes: [], }, location, user, }) => { const { currentUser } = user; const { routes = [] } = route; const isLogin = currentUser && currentUser.name; return ( : } > {children} ); }; export default connect(({ user }: ConnectState) => ({ user, }))(AuthComponent);