React Context driven role-access for conditional rendering of components.
npm install react-accessnpm i react-access or yarn add react-access``js
import RequireForAccess, {ReactAccessProvider} from 'react-access';
import {MyApp, AdminMenuBar} from './my-app';
// you can hydrate these to your app however you'd like on initial page load
// or in your bundle, etc
const userPermissions = ['APPUSER', 'CREATE', 'EDIT', 'ETC'];
React.render(
invalidAccessComponent={You do not have admin access!}
>
{/ This will not render for our userPermissions we've provided /}
`
permissions,
but users are only given CAN_VIEW and CAN_CREATE. Your menu may render
an option for deleting, but only for someone with the right permission set.$3
This library utilizes the React context API. This can add a few
considerations for use in your project:
1. React folks like to say you shouldn't use context because it can/will
change and is experimental. If it breaks, updating your app to newer
versions may have more things to fix than you expected.
1. Sometimes context is not the ideal solution, you're adding in extra
which is _not_ just a function call and may cause performance
issues in really large / high performing apps. It might be easier to do
something more like:
`js
const Component = (props) => {
return
{hasAccess(props.userPermissions) && }
;
};
`This library is more concerned with solving how you pass
hasAccess and
userPermissions all the way down your application tree to leaf nodes.API
The components used in tandem to accomplish what we're aiming for are:
1. , which is a context provider designed to be
the single point of entry for your user data for all (or a section) of
your application.
1. , which is a component that leverages that context
and determines if the contents should render.
1. , which is a context consumer that provides
authorizeAccess in a render callback, like so:
`
{authorizeAccess => {
// you can invoke authorizeAccess here and use the result of the
// parent call however you'd like
}}
1. useAccess context hook.
`js
const Component = (props) => {
const hasAccess = useAccess();
return
{hasAccess(props.userPermissions) && }
;
};
`$3
| Name | Required | Description |
|------|-------------|----------|
|children | Yes | Any valid-to-render React Children (usually your app, or a section of it) |
|permissions | Yes | An array of permission strings the current user has (usually from session/server data) |
|validator | No | You may override the default validation with your own by passing a function which will be invoked with the signature validator(userPermissions, requiredPermissions, requireAll) |$3
| Name | Required | Description |
|------|-------------|----------|
|children | Yes | Any valid-to-render React Children you wish to be rendered if access is granted |
|permissions | Yes | An array of permission strings this component requires in order to grant access |
|invalidAccessComponent | No | Any valid-to-render React Children you wish to be rendered if access is not granted |
| requireAll | No | A boolean value passed to validator` that indicates all permissions passed in are required to update component |(removed briefly as the display was broken and needs fixed)
This project (mostly) follows the all-contributors
specification. Contributions of any kind are welcome!