2021-01-05 19:49:33 +00:00
|
|
|
import React, { ReactNode, useEffect } from "react";
|
2020-09-25 17:11:25 +00:00
|
|
|
import { Page } from "@patternfly/react-core";
|
2021-01-05 19:49:33 +00:00
|
|
|
import {
|
|
|
|
BrowserRouter as Router,
|
|
|
|
Route,
|
|
|
|
Switch,
|
|
|
|
useParams,
|
|
|
|
} from "react-router-dom";
|
2020-09-25 17:11:25 +00:00
|
|
|
|
2020-08-27 12:09:36 +00:00
|
|
|
import { Header } from "./PageHeader";
|
|
|
|
import { PageNav } from "./PageNav";
|
2020-09-02 07:51:42 +00:00
|
|
|
import { Help } from "./components/help-enabler/HelpHeader";
|
2020-09-25 17:11:25 +00:00
|
|
|
|
2020-10-08 11:38:25 +00:00
|
|
|
import { ServerInfoProvider } from "./context/server-info/ServerInfoProvider";
|
2020-10-06 19:25:05 +00:00
|
|
|
import { AlertProvider } from "./components/alert/Alerts";
|
2020-10-08 11:38:25 +00:00
|
|
|
|
2020-10-21 11:31:41 +00:00
|
|
|
import { AccessContextProvider, useAccess } from "./context/access/Access";
|
|
|
|
import { routes, RouteDef } from "./route-config";
|
2020-10-01 14:25:29 +00:00
|
|
|
import { PageBreadCrumbs } from "./components/bread-crumb/PageBreadCrumbs";
|
2020-10-21 11:31:41 +00:00
|
|
|
import { ForbiddenSection } from "./ForbiddenSection";
|
2021-01-05 19:49:33 +00:00
|
|
|
import { useRealm } from "./context/realm-context/RealmContext";
|
2021-01-11 18:56:19 +00:00
|
|
|
import { useAdminClient, asyncStateFetch } from "./context/auth/AdminClient";
|
2020-10-21 11:31:41 +00:00
|
|
|
|
2020-12-11 17:34:18 +00:00
|
|
|
// This must match the id given as scrollableSelector in scroll-form
|
|
|
|
const mainPageContentId = "kc-main-content-page-container";
|
|
|
|
|
2020-10-08 11:38:25 +00:00
|
|
|
const AppContexts = ({ children }: { children: ReactNode }) => (
|
2020-11-12 19:16:41 +00:00
|
|
|
<AccessContextProvider>
|
|
|
|
<Help>
|
|
|
|
<AlertProvider>
|
|
|
|
<ServerInfoProvider>{children}</ServerInfoProvider>
|
|
|
|
</AlertProvider>
|
|
|
|
</Help>
|
|
|
|
</AccessContextProvider>
|
2020-10-08 11:38:25 +00:00
|
|
|
);
|
2020-08-27 12:09:36 +00:00
|
|
|
|
2021-01-07 14:56:14 +00:00
|
|
|
// set the realm form the path if it's one of the know realms
|
|
|
|
const RealmPathSelector = ({ children }: { children: ReactNode }) => {
|
|
|
|
const { setRealm } = useRealm();
|
|
|
|
const { realm } = useParams<{ realm: string }>();
|
|
|
|
const adminClient = useAdminClient();
|
|
|
|
useEffect(
|
|
|
|
() =>
|
2021-01-11 18:56:19 +00:00
|
|
|
asyncStateFetch(
|
2021-01-07 14:56:14 +00:00
|
|
|
() => adminClient.realms.find(),
|
|
|
|
(realms) => {
|
|
|
|
if (realms.findIndex((r) => r.realm == realm) !== -1) {
|
|
|
|
setRealm(realm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
),
|
|
|
|
[]
|
|
|
|
);
|
|
|
|
|
|
|
|
return <>{children}</>;
|
|
|
|
};
|
|
|
|
|
2020-10-21 11:31:41 +00:00
|
|
|
// 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 <route.component />;
|
|
|
|
|
|
|
|
return <ForbiddenSection />;
|
|
|
|
};
|
|
|
|
|
2020-08-08 13:52:23 +00:00
|
|
|
export const App = () => {
|
2020-08-04 12:59:41 +00:00
|
|
|
return (
|
2020-10-08 11:38:25 +00:00
|
|
|
<AppContexts>
|
|
|
|
<Router>
|
|
|
|
<Page
|
|
|
|
header={<Header />}
|
|
|
|
isManagedSidebar
|
|
|
|
sidebar={<PageNav />}
|
|
|
|
breadcrumb={<PageBreadCrumbs />}
|
2020-12-11 17:34:18 +00:00
|
|
|
mainContainerId={mainPageContentId}
|
2020-10-08 11:38:25 +00:00
|
|
|
>
|
|
|
|
<Switch>
|
|
|
|
{routes(() => {}).map((route, i) => (
|
2020-10-21 11:31:41 +00:00
|
|
|
<Route
|
2020-10-23 05:52:51 +00:00
|
|
|
exact
|
2020-10-21 11:31:41 +00:00
|
|
|
key={i}
|
|
|
|
path={route.path}
|
2021-01-07 14:56:14 +00:00
|
|
|
component={() => (
|
|
|
|
<RealmPathSelector>
|
|
|
|
<SecuredRoute route={route} />
|
|
|
|
</RealmPathSelector>
|
|
|
|
)}
|
2020-10-21 11:31:41 +00:00
|
|
|
/>
|
2020-10-08 11:38:25 +00:00
|
|
|
))}
|
|
|
|
</Switch>
|
|
|
|
</Page>
|
|
|
|
</Router>
|
|
|
|
</AppContexts>
|
2020-08-04 12:59:41 +00:00
|
|
|
);
|
|
|
|
};
|