Secured.js 1.87 KB
Newer Older
ddcat1115's avatar
ddcat1115 committed
1 2 3 4 5 6 7
import React from 'react';
import Exception from '../Exception/index';
import CheckPermissions from './CheckPermissions';
/**
 * 默认不能访问任何页面
 * default is "NULL"
 */
jim's avatar
jim committed
8
const Exception403 = () => <Exception type="403" style={{ minHeight: 500, height: '80%' }} />;
ddcat1115's avatar
ddcat1115 committed
9

jim's avatar
jim committed
10 11 12 13
// Determine whether the incoming component has been instantiated
// AuthorizedRoute is already instantiated
// Authorized  render is already instantiated, children is no instantiated
// Secured is not instantiated
jim's avatar
jim committed
14
const checkIsInstantiation = target => {
jim's avatar
jim committed
15 16 17 18 19 20
  if (!React.isValidElement(target)) {
    return target;
  }
  return () => target;
};

ddcat1115's avatar
ddcat1115 committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
/**
 * 用于判断是否拥有权限访问此view权限
 * authority 支持传入  string ,funtion:()=>boolean|Promise
 * e.g. 'user' 只有user用户能访问
 * e.g. 'user,admin' user和 admin 都能访问
 * e.g. ()=>boolean 返回true能访问,返回false不能访问
 * e.g. Promise  then 能访问   catch不能访问
 * e.g. authority support incoming string, funtion: () => boolean | Promise
 * e.g. 'user' only user user can access
 * e.g. 'user, admin' user and admin can access
 * e.g. () => boolean true to be able to visit, return false can not be accessed
 * e.g. Promise then can not access the visit to catch
 * @param {string | function | Promise} authority
 * @param {ReactNode} error 非必需参数
 */
const authorize = (authority, error) => {
  /**
   * conversion into a class
   * 防止传入字符串时找不到staticContext造成报错
   * String parameters can cause staticContext not found error
   */
  let classError = false;
  if (error) {
    classError = () => error;
  }
  if (!authority) {
    throw new Error('authority is required');
  }
EthanWan's avatar
EthanWan committed
49 50
  return function decideAuthority(target) {
    const component = CheckPermissions(authority, target, classError || Exception403);
jim's avatar
jim committed
51
    return checkIsInstantiation(component);
ddcat1115's avatar
ddcat1115 committed
52 53 54 55
  };
};

export default authorize;