Skip to content
This repository has been archived by the owner on Apr 29, 2019. It is now read-only.

joerex/react-redux-accounts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React + Redux Accounts

Components and state management for functionality related to app accounts: login, logout, register, reset password.

Components

import {
  Login,
  Logout,
  Register,
  ForgotPassword,
  ResetPassword
} from 'react-redux-accounts/dist/components';

Reducer

import {authReducer} from 'react-redux-accounts/dist/reducer';

Actions

import {
  loginPending,
  loginSuccess,
  loginFailed,
  logoutPending,
  logoutSuccess,
  logoutFailed,
  registerPending,
  registerSuccess,
  registerFailed,
  resetPasswordSuccess,
  resetPasswordFailed,
  updatePasswordSuccess,
  updatePasswordFailed,
} from 'react-redux-accounts/dist/actions';

Selectors

import {
  getAuthLoading,
  getAuthenticated,
  getAuthFailedAttempts,
  getAuthError,
  getRole,
  getAuthUpdatePasswordSuccess,
  getAuthResetPasswordSuccess,
  getAuthRegisterSuccess,
  getUser
} from 'react-redux-accounts/dist/reducer';

About

React + Redux components and state management for the common app.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published