You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
622 B
24 lines
622 B
/* eslint-disable import/no-mutable-exports */
|
|
let CURRENT = 'NULL';
|
|
/**
|
|
* use authority or getAuthority
|
|
* @param {string|()=>String} currentAuthority
|
|
*/
|
|
const renderAuthorize = Authorized => {
|
|
return currentAuthority => {
|
|
if (currentAuthority) {
|
|
if (currentAuthority.constructor.name === 'Function') {
|
|
CURRENT = currentAuthority();
|
|
}
|
|
if (currentAuthority.constructor.name === 'String') {
|
|
CURRENT = currentAuthority;
|
|
}
|
|
} else {
|
|
CURRENT = 'NULL';
|
|
}
|
|
return Authorized;
|
|
};
|
|
};
|
|
|
|
export { CURRENT };
|
|
export default Authorized => renderAuthorize(Authorized);
|
|
|