@govtechsg/redux-account-middleware
TypeScript icon, indicating that this package has built-in type declarations

0.0.12 • Public • Published

redux-account-middleware

This library helps with the helps with the management of authentication account lifecycle

Installation

npm i @govtechsg/redux-account-middleware --save

or

yarn add @govtechsg/redux-account-middleware

Usage

To run the middleware, we'll have to connect it to the Redux Store.

main.js

import {createStore, applyMiddleware, combineReducers} from 'redux'
import {
  accountReducer,
  createAccountMiddleware,
} from './middleware/account';

// create the account middleware
const accountMiddleware = createAccountMiddleware({
  fetchAccountRequest: fetch('getAccountRequest'),
  logoutRequest: fetch('logoutRequest'),
  refreshTokenRequest: fetch('refreshTokenRequest'),
});

import reducer from './reducers'

const sagaMiddleware = createSagaMiddleware()
// mount it on the Store
const store = createStore(
  // include the account reducer into the main reducer
  combineReducers({
    account: accountReducer,
    ...reducer,
  }),
  applyMiddleware(accountMiddleware)
)

// render the application

Refresh token

This redux middleware will try to refresh the token by calling refresh token api if there is any dispatched action to the redux (given that user is logged in and token expiring within refreshIntervalMinutes)

there are exceptions where the middleware is in the middle of requesting new token and getting account info, or user is logging out
which represented by status below

  • REFRESH_REQUESTED: When refresh is already requested and in progress. This is to prevent duplicates refresh request.
  • REFRESH_RECEIVED: This is the intermediate state where account api will be called in next action. This is to prevent duplicates refresh request.
  • ACCOUNT_REQUESTED: This is the intermediate state to get the latest token expiry from account api. This is to prevent duplicates refresh request.
  • LOGOUT_REQUESTED: When there is a logout request on-going, We should stop refreshing the token. This is so that the user session will not be re-populated with the fresh token and log the user back in

so when the state is either any one mentioned above, refresh token api will not be called

Readme

Keywords

none

Package Sidebar

Install

npm i @govtechsg/redux-account-middleware

Weekly Downloads

26

Version

0.0.12

License

MIT

Unpacked Size

285 kB

Total Files

50

Last publish

Collaborators

  • kenneth_leong_gt
  • govtechsg_a11y
  • younglim
  • gtrgchua
  • isomer.govtech
  • gyunikuchan
  • gds_ace_dlt
  • gdsbot
  • gylsky
  • ryanoolala
  • dyihoon90