@8base-react/auth
TypeScript icon, indicating that this package has built-in type declarations

1.7.2 • Public • Published

8base Auth

The 8base React Auth package contains a provider with authentication state and auth helpers.

AuthProvider

Table of Contents

AuthProvider

Extends React.Component

Provides access to the authentication state.

Parameters

  • props AuthProviderProps

Properties

  • children React$Node Children of the provider.
  • authClient AuthClient Instance of the auth client.

Usage

import { AuthContext, AuthProvider, type AuthContextProps } from '@8base/react-auth';
import { WebAuth0AuthClient } form '@8base/web-auth0-auth-client';

  const authClient = new WebAuth0AuthClient({
    domain: 'domain',
    clientId: 'client-id',
    redirectUri: `${window.location.origin}/auth/callback`,
    logoutRedirectUri: `${window.location.origin}/auth`,
    workspaceId: 'workspace-id',
  });

  <AuthProvider authClient={ authClient }>
    ...
      <AuthContext.Consumer>
        {
          (auth: AuthContextProps) => (<div />)
        }
      </AuthContext.Consumer>
    ...  
  </AuthProvider>

Readme

Keywords

none

Package Sidebar

Install

npm i @8base-react/auth

Weekly Downloads

41

Version

1.7.2

License

MIT

Unpacked Size

19.1 kB

Total Files

23

Last publish

Collaborators

  • vorobeez
  • zouxuoz