obabichev / react-token-auth

84 stars 22 forks source link

How to store user's info in redux? #34

Open alexndr-n opened 1 year ago

alexndr-n commented 1 year ago

So I'm working on a project using the library! And the only thing I'm missing is how to get the user's name, email etc. stored into redux for usage across the app. My approach was to decode the JWT token and store it inside the onHydration hook. My code looks like this:

import { createAuthProvider } from 'react-token-auth';
import jwt_decode from 'jwt-decode'
import { useDispatch } from 'react-redux'
import { setName } from '../store/userSlice';

const dispatch = useDispatch()

export const { useAuth, authFetch, login, logout } =
    createAuthProvider({
        getAccessToken: session => session.access_token,
        storage: localStorage,
        onHydratation: (session) => {
            const decoded = jwt_decode(session.access_token)
            console.log('decoded', decoded)
            dispatch(setName('decoded'))
        },
        onUpdateToken: (token) => fetch('/api/refresh', {
            method: 'POST',
            body: token.access_token
        })
            .then(r => {
                r.json().then(a => {
                    if (!a.error) {
                        return a
                    }
                    else
                        logout()
                })
            })
    });

But I am not able to dispatch outside of a react component. What would be the correct approach?

Thanks!