Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gapi-oauth-react-hooks

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gapi-oauth-react-hooks

Some hooks for SSO using Google sign in

  • 3.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-40%
Maintainers
1
Weekly downloads
 
Created
Source

gapi-oauth-react-hooks

Open in Visual Studio Code Code quality Coverage Github workflow Last commit

:zap: Purpose

I needed SSO for google users and wasn't quite satisfied with what I found in the react eco system. Perhaps this will be useful for someone else, so here we go :rocket:

The package exposes its own declaration files; you won't need to install any @types/* if you use typescript.

:zap: Requirements

  • react >= 16.8

:zap: Installation

To install, use either yarn or npm:

yarn add gapi-oauth-react-hooks
npm i gapi-oauth-react-hooks

:zap: Typical use

It's best to setup the config early, perhaps in the index or app file:

import { GapiConfig } from "gapi-oauth-react-hooks";

// pulling from .env here
GapiConfig.setup(
  process.env.GOOGLE_AUTH_CLIENTID,
  process.env.GOOGLE_AUTH_SCOPE,
  process.env.GOOGLE_AUTH_REDIRECTURI
);

ReactDOM.render(<Login />, document.getElementById("root"));

Now, let's use the main hook in our Login component:

import { useGoogleAuth, UserProfile } from "gapi-oauth-react-hooks";

export const Login = () => {
  const auth = useGoogleAuth();

  const display = {
    Errored: <>Oh no!</>,
    Loading: <>Loading ...</>,
    NotSignedIn: <button onClick={auth.onSignIn} >Login</button>,
    SignedIn: <SignedIn {...auth} />
  };

  return <>{display[auth.state]}</>;
};

interface SignedInProps {
  onSignOut: () => Promise<void>;
  signedUser?: UserProfile;
  authResponse?: gapi.auth2.AuthResponse;
}

const SignedIn: React.FC<SignedInProps> = ({ onSignOut, signedUser, authResponse }) => (
  <>
    <div>user {JSON.stringify(signedUser)}</div>
    <div>auth response {JSON.stringify(authResponse)}</div>
    <button onClick={onSignOut} >Logout</button>
  </>
);

:zap: Api

This package exposes two functions as well as two types:

:diamonds: Types

:black_circle: A type defining the states Gapi can be at

This type can have the following values:

  • 'Loading' : gapi is not ready yet.
  • 'Errored' : an error occured while loading gapi.
  • 'SignedIn' : gapi is ready and a user is signed in.
  • 'NotSignedIn' : gapi is ready and no user is signed in.
:black_circle: An interface defining user data
  • id : the id of the user.
  • email : the user email.
  • familyName : the user family name.
  • givenName : the user given name.
  • name : the user name.
  • imageUrl: the user avatar.

:diamonds: Functions

:black_circle: A static class to hold gapi configuration

This class contains a config function that takes three parameters:

  • clientId.
  • scope.
  • redirectUri.
import { GapiConfig } from 'gapi-oauth-react-hooks';

GapiConfig.setup(clientId, scope, redirectUri);
:black_circle: A react hook to handle signin and signout using gapi auth2

This hook returns an object containing:

  • state : the state of gapi.
  • signedUser : the user signed in, if any.
  • authResponse : the google auth response.
  • onSignIn : The signin function.
  • onSignOut : The signout function.
import { useGoogleAuth } from 'gapi-oauth-react-hooks';

const { state, signedUser, authResponse, onSignIn, onSignOut } =
  useGoogleAuth();

FAQs

Package last updated on 24 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc