Created
March 2, 2020 20:48
-
-
Save DDavis1025/9a1fbbc557c21fcd78dd69f2a9f567c2 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
// src/index.js | |
import React from "react"; | |
import ReactDOM from "react-dom"; | |
import App from "./App"; | |
import * as serviceWorker from "./serviceWorker"; | |
import { Auth0Provider } from "./react-auth0-spa"; | |
import config from "./auth_config.json"; | |
import history from "./utils/history"; | |
// A function that routes the user to the right place | |
// after login | |
const onRedirectCallback = appState => { | |
history.push( | |
appState && appState.targetUrl | |
? appState.targetUrl | |
: window.location.pathname | |
); | |
}; | |
ReactDOM.render( | |
<Auth0Provider | |
domain={config.domain} | |
client_id={config.clientId} | |
redirect_uri={window.location.origin} | |
onRedirectCallback={onRedirectCallback} | |
> | |
<App /> | |
</Auth0Provider>, | |
document.getElementById("root") | |
); | |
serviceWorker.unregister(); |
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
// src/react-auth0-spa.js | |
import React, { useState, useEffect, useContext } from "react"; | |
import createAuth0Client from "@auth0/auth0-spa-js"; | |
const DEFAULT_REDIRECT_CALLBACK = () => | |
window.history.replaceState({}, document.title, window.location.pathname); | |
export const Auth0Context = React.createContext(); | |
export const useAuth0 = () => useContext(Auth0Context); | |
export const Auth0Provider = ({ | |
children, | |
onRedirectCallback = DEFAULT_REDIRECT_CALLBACK, | |
...initOptions | |
}) => { | |
const [isAuthenticated, setIsAuthenticated] = useState(); | |
const [user, setUser] = useState(); | |
const [auth0Client, setAuth0] = useState(); | |
const [loading, setLoading] = useState(true); | |
const [popupOpen, setPopupOpen] = useState(false); | |
useEffect(() => { | |
const initAuth0 = async () => { | |
const auth0FromHook = await createAuth0Client(initOptions); | |
setAuth0(auth0FromHook); | |
if (window.location.search.includes("code=") && | |
window.location.search.includes("state=")) { | |
const { appState } = await auth0FromHook.handleRedirectCallback(); | |
onRedirectCallback(appState); | |
} | |
const isAuthenticated = await auth0FromHook.isAuthenticated(); | |
setIsAuthenticated(isAuthenticated); | |
if (isAuthenticated) { | |
const user = await auth0FromHook.getUser(); | |
setUser(user); | |
} | |
setLoading(false); | |
}; | |
initAuth0(); | |
// eslint-disable-next-line | |
}, []); | |
const loginWithPopup = async (params = {}) => { | |
setPopupOpen(true); | |
try { | |
await auth0Client.loginWithPopup(params); | |
} catch (error) { | |
console.error(error); | |
} finally { | |
setPopupOpen(false); | |
} | |
const user = await auth0Client.getUser(); | |
setUser(user); | |
setIsAuthenticated(true); | |
}; | |
const handleRedirectCallback = async () => { | |
setLoading(true); | |
await auth0Client.handleRedirectCallback(); | |
const user = await auth0Client.getUser(); | |
setLoading(false); | |
setIsAuthenticated(true); | |
setUser(user); | |
}; | |
return ( | |
<Auth0Context.Provider | |
value={{ | |
isAuthenticated, | |
user, | |
loading, | |
popupOpen, | |
loginWithPopup, | |
handleRedirectCallback, | |
getIdTokenClaims: (...p) => auth0Client.getIdTokenClaims(...p), | |
loginWithRedirect: (...p) => auth0Client.loginWithRedirect(...p), | |
getTokenSilently: (...p) => auth0Client.getTokenSilently(...p), | |
getTokenWithPopup: (...p) => auth0Client.getTokenWithPopup(...p), | |
logout: (...p) => auth0Client.logout(...p) | |
}} | |
> | |
{children} | |
</Auth0Context.Provider> | |
); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment