WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

swiftcarrot/react-auth

Repository files navigation

@swiftcarrot/react-auth

npm npm Build Status codecov styled with prettier

Authentication in React and React Native

Installation

yarn add @swiftcarrot/react-auth

Usage

import React from 'react';
import { AuthProvider, AuthProtected, useAuth } from '@swiftcarrot/react-auth';

const getCurrentUser = () => fetch('/user');

const App = () => {
  return (
    <AuthProvider getCurrentUser={getCurrentUser}>
      <AuthProtected renderLoading={Loading} renderLogin={LoginPage}>
        <Dashboard />
      </AuthProtected>
    </AuthProvider>
  );
};

const Dashboard = () => {
  const { currentUser } = useAuth();
  return <div>{currentUser.name}</div>;
};

API

AuthProvider

  • getCurrentUser
  • beforeLoginUser
  • afterLoginUser
  • beforeLogoutUser
  • afterLogoutUser
  • renderLoading

AuthProtected

  • renderLoading
  • renderLogin

AuthContext

useAuth

Methods

  • loading
  • setLoading
  • currentUser
  • setCurrentUser
  • loginUser
  • logoutUser

License

MIT

About

Authentication in React and React Native

Resources

Stars

Watchers

Forks

Packages