Last active
September 21, 2021 12:06
-
-
Save OmkarK45/9ef6f83659ffb2be29fbec6310da2c05 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createContext, useContext, useEffect, useState } from 'react' | |
import { getUser, logout } from 'services/axios' | |
/** | |
* getUser() -> Helper function to fetch user information. (basically an axios call) | |
* logout() -> Helper function to logout users | |
*/ | |
const AuthContext = createContext() | |
/** | |
* @param {React.ReactNode} - children - React child | |
*/ | |
export function AuthProvider({ children }) { | |
const [authState, setAuthState] = useState({ | |
user: null, | |
isAuthenticated: false, | |
}) | |
useEffect(() => { | |
const getUserInfo = async () => { | |
const response = await getUser() | |
if(response.ok){ | |
setAuthState({ | |
user, | |
isAuthenticated: true, | |
}) | |
} | |
if(response.status === 'INTERNAL_ERROR'){ | |
setAuthState({ | |
user: null, | |
isAuthenticated: false, | |
}) | |
} | |
} | |
getUserInfo() | |
}, []) | |
// a setter function for setting authInfo | |
function setAuthInfo({ user }) { | |
setAuthState({ | |
user, | |
isAuthenticated: user && user.id ? true : false, | |
}) | |
} | |
async function logoutUser() { | |
const response = await logout() | |
setAuthState({ | |
user: null, | |
isAuthenticated: false, | |
}) | |
} | |
return ( | |
<AuthContext.Provider | |
value={{ | |
user: authState.user, | |
isAuthenticated: authState.isAuthenticated, | |
setAuthState: (authInfo) => setAuthInfo(authInfo), | |
logoutUser, | |
}} | |
> | |
{children} | |
</AuthContext.Provider> | |
) | |
} | |
export function useAuth() { | |
// usage : const {user, isAuthenticated} = useAuth(); | |
return useContext(AuthContext) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment