5 changed files with 32 additions and 30 deletions
@ -0,0 +1,24 @@ |
|||
/* 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); |
|||
Loading…
Reference in new issue