Authorized.tsx 1.39 KB
Newer Older
1
import Authorized from '@/utils/Authorized';
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
2
import { Route } from '@/models/connect';
何乐's avatar
何乐 committed
3
import { ConnectProps, ConnectState, UserModelState } from '@/models/connect';
4 5 6 7 8
import { connect } from 'dva';
import pathToRegexp from 'path-to-regexp';
import React from 'react';
import Redirect from 'umi/redirect';

何乐's avatar
何乐 committed
9
interface AuthComponentProps extends ConnectProps {
10 11 12
  user: UserModelState;
}

13
const getRouteAuthority = (path: string, routeData: Route[]) => {
何乐's avatar
何乐 committed
14 15 16 17 18 19 20 21 22 23 24 25 26 27
  let authorities: string[] | string | undefined = void 0;
  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;
};

ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
28 29 30 31 32 33 34 35
const AuthComponent: React.FC<AuthComponentProps> = ({
  children,
  route = {
    routes: [],
  },
  location,
  user,
}) => {
36
  const { currentUser } = user;
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
37
  const { routes = [] } = route;
38 39 40
  const isLogin = currentUser && currentUser.name;
  return (
    <Authorized
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
41
      authority={getRouteAuthority(location!.pathname, routes)!}
42 43 44 45 46 47 48
      noMatch={isLogin ? <Redirect to="/exception/403" /> : <Redirect to="/user/login" />}
    >
      {children}
    </Authorized>
  );
};

ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
49
export default connect(({ user }: ConnectState) => ({
50 51
  user,
}))(AuthComponent);