npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-access-control

v1.0.1

Published

Role based access control for conditional rendering of React components and routes.

Downloads

473

Readme

react-access-control

Role based access control for conditional rendering of React components and routes.

NPM JavaScript Style Guide

Install

npm install --save react-access-control

Usage

import React from "react"
import { AccessProvider, useAccess, Show } from "react-access-control"
import LoadingIndicator from "../LoadingIndicator"

const Example = () => {
	const { isLoaded, hasPermission, define } = useAccess()

	React.useEffect(() => {
		define({
			permissions: {
				"todos:read": true,
				"todos:write": false
			}
		})
	}, [])

	const userCanWrite = hasPermission("todos:read")

	if (!isLoaded) return <LoadingIndicator />

	return (
		<div>
			{userCanWrite && <RenderSomething />}

			<Show when="todos:read" resource={1} fallback={<div>oops no access</div>}>
				<RenderSomething />
			</Show>
		</div>
	)
}

render(
	<AccessProvider>
		<Example />
	</AccessProvider>,
	document.getElementById("root")
)

API Reference

This lib relies on React's Context API, so a Provider is required. Use it like any other Provider..

The onDeny prop is called anytime access is not permitted. Typically used for redirects and alerts.

<AccessProvider onDeny={() => <Redirect to={ERROR_ROUTE} />}>
	<App />
</AccessProvider>

A compontent that can be used to conditionally render components. If the user doesn't have necessary permissions passed into the when prop then the fallback, or nothing, is rendered.

Has 3 available props:

when: string|array (required) The permission(s) we want to check against. Also accepts an array of permissions.

resource: string|integer (optional) Passing a resource will check the resources object to ensure the user has access to a specific resource. This allows for more granular control over access.

fallback: ReactNode (optional) What to render when the user doesn't have access

<Show when="stores:read" resource={1} fallback={<div>I render when the user doesn't have access</div>}>
	<MyComponent />
</Show>

useAccess

A hook for hooking into the AccessContext context.

isLoaded

isLoaded will be false if define has never been called. Once define is called we assume isLoaded is true. This flag can be used to prevent loading the app until permissions have been fetched and loaded.

define

This function defines the user's permissions and resources that they have access to. Typically, this would be called as soon as possible (in your top level component).

define({
	permissions: { "stores:read": true, "stores:write": false },
	resources: {
		stores: {
			"6": true
		}
	}
})

hasPermission

hasPermission(permissions, options)

hasPermission: (permissions: { [permission: string]: boolean }, options: { [resource: string ]: string|integer }) => boolean

Fist argument accepts a string or array of permissions to check. When passing an array, the user must have access to all permissions for hasPermission to be true.

Second argument is an object. Currently only supports resource which is a resource's ID.

withAccess

Restrict access to routes and components with the withAccess hoc. Provides access to the wrapped component's props for checking against a resource ID. Can also, optionally provide an onDeny function to handle a user that has no access.

withAccess(props => ({ permissions: ["stores:read"], resource: props.storeId, onDeny: () => <Redirect to={SOME_ROUTE} /> })(ExampleComponent)

License

MIT © schester44