import React, { ReactNode, useEffect } from "react"; import { Page } from "@patternfly/react-core"; import { HashRouter as Router, Route, Switch, useParams, } from "react-router-dom"; import { ErrorBoundary } from "react-error-boundary"; import { Header } from "./PageHeader"; import { PageNav } from "./PageNav"; import { Help } from "./components/help-enabler/HelpHeader"; import { ServerInfoProvider } from "./context/server-info/ServerInfoProvider"; import { AlertProvider } from "./components/alert/Alerts"; import { AccessContextProvider, useAccess } from "./context/access/Access"; import { routes, RouteDef } from "./route-config"; import { PageBreadCrumbs } from "./components/bread-crumb/PageBreadCrumbs"; import { ForbiddenSection } from "./ForbiddenSection"; import { SubGroups } from "./groups/SubGroupsContext"; import { useRealm } from "./context/realm-context/RealmContext"; import { ErrorRenderer } from "./components/error/ErrorRenderer"; export const mainPageContentId = "kc-main-content-page-container"; const AppContexts = ({ children }: { children: ReactNode }) => ( {children} ); // set the realm form the path const RealmPathSelector = ({ children }: { children: ReactNode }) => { const { setRealm } = useRealm(); const { realm } = useParams<{ realm: string }>(); useEffect(() => { if (realm) setRealm(realm); }, []); return <>{children}; }; // If someone tries to go directly to a route they don't // have access to, show forbidden page. type SecuredRouteProps = { route: RouteDef }; const SecuredRoute = ({ route }: SecuredRouteProps) => { const { hasAccess } = useAccess(); if (hasAccess(route.access)) return ; return ; }; export const App = () => { return ( } isManagedSidebar sidebar={} breadcrumb={} mainContainerId={mainPageContentId} > window.location.reload()} > {routes(() => {}).map((route, i) => ( ( )} /> ))} ); };