0.2.0 • Published 4 years ago

cfs-expo-auth0 v0.2.0

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

cfs-expo-auth0

This package includes the shareable Expo Auth0 library used by Create Full Stack. Please refer to its documentation:

Usage in Create Full Stack Projects

The easiest way to use this is with Create Full Stack, which includes it by default.

You don’t need to configure it separately in Create Full Stack projects.

Usage Outside of Create Full Stack

Installation

Using yarn

yarn add cfs-expo-auth0

Using npm

npm install cfs-expo-auth0

Getting Started

Configure the SDK by wrapping your application in Auth0Provider:

// App.js
import { Auth0Provider } from "cfs-expo-auth0";
import React, { ReactElement } from "react";

import { Content } from "./Content";

export default function App() {
  return (
    <Auth0Provider
      clientId="YOUR_AUTH0_CLIENT_ID"
      audience="YOUR_AUTH0_API_AUDIENCE"
      domain="YOUR_AUTH0_DOMAIN"
      onLogin={() => {
        // Replace with your navigation code
      }}
      onTokenRequestFailure={() => {
        // Replace with your navigation code
      }}
    >
      <Content />
    </Auth0Provider>
  );
}

Use the useAuth0 hook in your components to access authentication state (user, accessToken, request and result) and authentication methods (login):

import { useAuth0 } from "cfs-expo-auth0";
import React from "react";

export default function HelloLogin() {
  const { user, result, login } = useAuth0();

  if (user) {
    return <div>Hello {user.name}</div>;
  }
  if (result?.type === "error") {
    return <div>Oops... an error occurred</div>;
  }

  return <button onClick={login}>Log in</button>;
}
0.2.0

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago