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-auth-simple

v1.1.1

Published

React authentication Component with React Hooks

Downloads

6

Readme

react-auth-simple

React authentication Component with React Hooks

See this demo APP: https://codesandbox.io/s/react-auth-simple-demo-0y89v

Install

npm i react-auth-simple

Usage

react-auth-simple provides a simple way to manage user login state for SPA(Single Page Application).

In SPA, we usually use a client side router, such as react-router. And we may have many client-side-rendered pages, some of them need user authentication, and some don't require.

So, when users navigate between our pages, these two cases are common:

  • User is navigating to page B from page A, where A can be viewed without login in, whereas B requires user authentication. In this case, we need to show our LoginModal, or redirect to the LoginPage
  • After user has logged in, all the pages can share this global authentication state

react-auth-simple encourages developer to use LoginModal to show the login page, rather than a LoginPage.

Demo Code

You're talking too much, just show me code

import AuthRoot, { useAuthContext, useLoginContext, withLoginGuard} from "react-auth-simple";

interface User {
    name: string;
}

// Home page can be visited without login
function Home() {
    return (
        <div>Home page</div>
    );
}

// AccountCenter requires user login
function AccountCenter() {
    const authManager = useAuthContext<User>();
    return (
        <div>
            <h2>User Center</h2>
            <div>current user name: {authManager.user.name}</div>
        </div>
    );
}
// Usually checking current user login state is an async operation
// So we should render some temporary view when we don't get login state yet
function renderLoginChecking() {
    return (
        <span>Loading...</span>
    );
}
// use HOC to protect our AccountCenter
const AccountCenterWithGuard = withLoginGuard(AccountCenter, { renderLoginChecking });

// LoginModal is where user input username and password, set global user after login success
function LoginModal() {
    const authManager = useAuthContext();
    const loginManager = useLoginContext();
    // validate username and password
    function doLogin() {
        // mimic async API
        setTimeout(function() {
            if (success) {
                authManager.setUser({
                    userId: 12345,
                    name: "Jesse",
                    age: 33
                });
                loginManager.hideLogin();
            } else {
                alert('login fail');
            }     
        }, 500);
    }

    return (
        <div>
            <div>some inputs for username and password</div>
            <button onClick={doLogin}>Submit</button>
        </div>
    );
}

function renderLoginModal(visible: boolean) {
    if (!visible) {
        return null;
    }
    return ( <LoginModal /> );
}

// initUser is called to check use login state when page load
// You may call an API, or read localStorage
function initUser() {
    return new Promise<User | null>(function(resolve, reject) {
        resolve({
            name: 'Jesse',
        });
    });
}

import { BrowserRouter as Router, Switch, Route, Link } from "react-router-dom";

// Finally our App, we're using react-router for simplicity
function App() {
    return (
        <AuthRoot initUser={initUser} renderLoginComponent={renderLoginModal}>
            <Router>
                <nav>
                    <ul>
                        <li>
                            <Link to="/">Home</Link>
                        </li>
                        <li>
                            <Link to="/account">Account Center</Link>
                        </li>
                    </ul>
                </nav>
                <Switch>
                    <Route path="/account">
                        <AccountCenterWithGuard />
                    </Route>
                    <Route path="/">
                        <Home />
                    </Route>
                </Switch>
            </Router>
        </AuthRoot>
    );
}