import "./App.css"; import logo from "./logo.svg"; import myimg from "./myimg.png"; import { createOidcClientProvider, useOidcClient } from "./oidc"; import { addFooToQueryParams, addBarToQueryParams } from "../keycloak-theme/login/valuesTransferredOverUrl"; import jwt_decode from "jwt-decode"; //On older Keycloak version you need the /auth (e.g: http://localhost:8080/auth) //On newer version you must remove it (e.g: http://localhost:8080 ) const keycloakUrl = "https://auth.code.gouv.fr/auth"; const keycloakRealm = "keycloakify"; const { OidcClientProvider } = createOidcClientProvider({ url: keycloakUrl, realm: keycloakRealm, clientId: "myclient", //This function will be called just before redirecting, //it should return the current langue. //kcContext.locale.currentLanguageTag will be what this function returned just before redirecting. getUiLocales: () => "en", transformUrlBeforeRedirect: url => [url] //Instead of foo and bar you could have isDark for example or any other state that you wish to //transfer from the main app to the login pages. .map(url => addFooToQueryParams({ url, value: { foo: 42 } })) .map(url => addBarToQueryParams({ url, value: "value of bar transferred to login page" })) [0], log: console.log }); export default function App() { return ( ); } function ContextualizedApp() { const { oidcClient } = useOidcClient(); return (
{ oidcClient.isUserLoggedIn ? <>

You are authenticated !

{/* On older Keycloak version its /auth/realms instead of /realms */} Link to your Keycloak account
{JSON.stringify(jwt_decode(oidcClient.getAccessToken()), null, 2)}
: <> } logo test_image

Hello world

Check out all keycloak pages in the Storybook!

); }