redux-auth-wrapper icon indicating copy to clipboard operation
redux-auth-wrapper copied to clipboard

A React Higher Order Component (HOC) for handling Authentication and Authorization with Routing and Redux

Results 33 redux-auth-wrapper issues
Sort by recently updated
recently updated
newest added

Hello , i was trying to implement the exemple of nesting wrappers for auth & admin at the same time , but if user not admin it redirect and keep...

It helps to trigger redux action for invoking authentication validation.

Any reason not to replace UNSAFE_componentWillMount with componentDidMount?

All other dependencies that I have been using with Electron app that I have, only `redux-auth-wrapper` is throwing this error when being used inside the code : Usage : ```js...

``` connectedReduxRedirect({ //redirectPath: "/login",

PRs welcome

I've been looking at the following example (https://github.com/mjrussell/react-redux-jwt-auth-example/tree/react-router-redux) since it's the closest to my existing setup (react-boilerplate). For users who refresh the page or come back, I'm curious as to...

question

Here it is the demo: https://codesandbox.io/s/98642j3xjo I throw an exception on loginAction and my form is re-render. Why? I need to catch in my LoginForm (as it is doing when...

Hi, I'm trying to logout when expired token. ``` axios.interceptors.response.use( response => response, error => { const { config, status } = error.response; const originalRequest = config; const refreshToken =...

TypeScript is becoming more popular (angular 2 is written in TS and also some other "big boys" that I can't remember now too). In case you're interested to add a...

PRs welcome

Hello, I have a kind of master details page, something like: /user /user/m1 /user/m2 The authentication is defined to the main route user so every nested route must be authenticated,...