<IfCanAccess>
This component, part of the ra-rbac module, relies on the authProvider
to render its child only if the user has the right permissions. It accepts the following props:
action
(string, required): the action to check, e.g. ‘read’, ‘list’, ‘export’, ‘delete’, etc.resource
(string, optional): the resource to check, e.g. ‘users’, ‘comments’, ‘posts’, etc. Defaults to the current resource.record
(object, optional): the record to check. If passed, the child only renders if the user has permissions for that record, e.g.{ id: 123, firstName: "John", lastName: "Doe" }
Additional props are passed down to the child element.
import { IfCanAccess } from '@react-admin/ra-rbac';
import { Toolbar, DeleteButton, EditButton, ShowButton } from 'react-admin';
const RecordToolbar = () => (
<Toolbar>
<IfCanAccess action="edit">
<EditButton />
</IfCanAccess>
<IfCanAccess action="show">
<ShowButton />
</IfCanAccess>
<IfCanAccess action="delete">
<DeleteButton />
</IfCanAccess>
</Toolbar>
);