import { Children, ReactElement, ComponentType, createElement } from 'react'; import { Location } from 'react-router-dom'; import warning from '../util/warning'; import { useAuthenticated } from './useAuthenticated'; import usePermissions from './usePermissions'; export interface WithPermissionsChildrenParams { permissions: any; } type WithPermissionsChildren = ( params: WithPermissionsChildrenParams ) => ReactElement; export interface WithPermissionsProps { authParams?: object; children?: WithPermissionsChildren; component?: ComponentType; location?: Location; render?: WithPermissionsChildren; staticContext?: object; [key: string]: any; } const isEmptyChildren = children => Children.count(children) === 0; /** * After checking that the user is authenticated, * retrieves the user's permissions for a specific context. * * Useful for Route components ; used internally by Resource. * Use it to decorate your custom page components to require * a custom role. It will pass the permissions as a prop to your * component. * * You can set additional `authParams` at will if your authProvider * requires it. * * @example * import { Admin, CustomRoutes, WithPermissions } from 'mv-tmp'; * * const Foo = ({ permissions }) => ( * {permissions === 'admin' ?

Sensitive data

: null} *

Not sensitive data

* ); * * const customRoutes = [ * } * /> * } /> * ]; * const App = () => ( * * {customRoutes} * * ); */ const WithPermissions = (props: WithPermissionsProps) => { const { authParams, children, render, component, staticContext, ...rest } = props; warning( (render && children && !isEmptyChildren(children)) || (render && component) || (component && children && !isEmptyChildren(children)), 'You should only use one of the `component`, `render` and `children` props in ' ); useAuthenticated(authParams); const { permissions } = usePermissions(authParams); // render even though the usePermissions() call isn't finished (optimistic rendering) if (component) { return createElement(component, { permissions, ...rest }); } // @deprecated if (render) { return render({ permissions, ...rest }); } // @deprecated if (children) { return children({ permissions, ...rest }); } }; export default WithPermissions as ComponentType;