Socket
Book a DemoInstallSign in
Socket

@vtfk/react-msal

Package Overview
Dependencies
Maintainers
7
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vtfk/react-msal

MSAL/Azure React authentication hook

latest
Source
npmnpm
Version
2.0.3
Version published
Maintainers
7
Created
Source

NPM JavaScript Style Guide

@vtfk/react-msal

MSAL (Azure auth) React hook

Install

npm install --save @vtfk/react-msal

Usage

config.js

export const config = {
  auth: {
    clientId: '<client-id>',
    authority: 'https://login.microsoftonline.com/<tenant-id>',
    redirectUri: '<https://app-hostname.com>',
    postLogoutRedirectUri: '<https://direct-url.com'
  },
  cache: {
    cacheLocation: 'sessionStorage',
    storeAuthStateInCookie: false
  }
}

// See valid values here: https://azuread.github.io/microsoft-authentication-library-for-js/ref/msal-browser/modules/_src_request_redirectrequest_.html
export const loginRequest = {
  scopes: ['openid', 'profile', 'User.Read']
}

index.js

import React from 'react'
import ReactDOM from 'react-dom'
import App from './App'
import { MsalProvider } from '@vtfk/react-msal'
import { config, loginRequest } from './config'

ReactDOM.render(
  <React.StrictMode>
    <MsalProvider config={config} scopes={loginRequest}>
      <App />
    </MsalProvider>
  </React.StrictMode>,
  document.getElementById('root')
)

App.js

const App = () => {
  const { isAuthenticated, login, authStatus } = useSession()

  if (['pending'].includes(authStatus)) {
    return <div>Loading...</div>
  }

  if (!isAuthenticated) {
    console.log('app-!isAuth')
    login(loginRequest)
    return <></>
  }

  if (isAuthenticated && authStatus === 'finished') {
    return <div>Hello authenticated user!</div>
  }
}

useSession()

The useSession() hook has these methods and objects available:

  • isAuthenticated (bool)
  • authStatus (string) - values are: pending, finished, rejected, unknown
  • user (object) - user object from MS Graph - example
  • token (string) - access_token from MS Graph
  • idToken (string) - id_token from MS Graph
  • popupOpen (bool) - true if login popup is open
  • loginError (object) - login error object
  • login (function) - trigger login
    Parameters
    • options (object) - loginRequest (required)
    • method (string): loginRedirect or loginPopup
  • logout (function) - trigger logout (clears session storage and redirects to azure)
  • getToken (function) - gathers and returns the users access token
    Parameters
  • apiGet (function) - gets data from provided URL using the users id_token
    Parameters
    • url (string) (required)
    • returnFullResponse (bool) (optional) default = false
  • apiPost (function) - posts the provided data to the URL using the users id_token
    Parameters
    • url (string) (required)
    • data (required)
    • returnFullResponse (bool) (optional) default = false
  • apiPut (function) - updates/put the provided data to the URL using the users id_token
    Parameters
    • url (string) (required)
    • data (required)
    • returnFullResponse (bool) (optional) default = false
  • apiDelete (function) - deletes data from provided URL using the users id_token
    Parameters
    • url (string) (required)
    • returnFullResponse (bool) (optional) default = false

User object

{
  displayName: 'Trine Testesen',
  givenName: 'Trine',
  name: 'Trine Testesen',
  onPremisesSamAccountName: 'tri0308',
  surname: 'Testesen',
  tenantId: '08f3813c-9f29-482f-9aec-16ef7cbf477a',
  userPrincipalName: 'trine.testesen@vtfk.no',
  username: 'trine.testesen@vtfk.no'
}

License

MIT © Vestfold og Telemark fylkeskommune

FAQs

Package last updated on 24 Mar 2022

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