import React from "react"; import { useHistory, useRouteMatch } from "react-router-dom"; import { useTranslation } from "react-i18next"; import { Nav, NavItem, NavGroup, NavList, PageSidebar, Divider, } from "@patternfly/react-core"; import { RealmSelector } from "./components/realm-selector/RealmSelector"; import { useRealm } from "./context/realm-context/RealmContext"; import { useAccess } from "./context/access/Access"; import { routes } from "./route-config"; import { AddRealmRoute } from "./realm/routes/AddRealm"; export const PageNav: React.FunctionComponent = () => { const { t } = useTranslation("common"); const { hasAccess, hasSomeAccess } = useAccess(); const { realm } = useRealm(); const history = useHistory(); type SelectedItem = { groupId: number | string; itemId: number | string; to: string; event: React.FormEvent; }; const onSelect = (item: SelectedItem) => { history.push(item.to); item.event.preventDefault(); }; type LeftNavProps = { title: string; path: string }; const LeftNav = ({ title, path }: LeftNavProps) => { const route = routes.find( (route) => route.path.replace(/\/:.+?(\?|(?:(?!\/).)*|$)/g, "") === path ); const accessAllowed = route && (route.access instanceof Array ? hasAccess(...route.access) : hasAccess(route.access)); if (!accessAllowed) { return null; } //remove "/realm-name" from the start of the path const activeItem = history.location.pathname.substr(realm.length + 1); return ( {t(title)} ); }; const showManage = hasSomeAccess( "view-realm", "query-groups", "query-users", "query-clients", "view-events" ); const showConfigure = hasSomeAccess( "view-realm", "query-clients", "view-identity-providers" ); const isOnAddRealm = !!useRouteMatch(AddRealmRoute.path); return ( {showManage && !isOnAddRealm && ( )} {showConfigure && !isOnAddRealm && ( )} } /> ); };