Files
grafana/public/app/core/navigation/GrafanaRoute.tsx
Josh Hunt ca63c8015d FS: Frontend redirect to /login (#108225)
* Add frontend redirect to login

* Make Login topnav link do a page transition to login page

* Force AppChromeState update when route changes to get new isChromeless state

* Add base url to SignInLink, and add tests

* wrap login page in <Page />

* comment, test

* fix loginPage test

* rejigger signin check, remove chrome from deps
2025-07-21 10:48:53 +00:00

112 lines
3.5 KiB
TypeScript

import { Suspense, useEffect, useLayoutEffect } from 'react';
import { Navigate, useLocation } from 'react-router-dom-v5-compat';
import { config, locationSearchToObject, navigationLogger, reportPageview } from '@grafana/runtime';
import { ErrorBoundary } from '@grafana/ui';
import { useGrafana } from '../context/GrafanaContext';
import { contextSrv } from '../services/context_srv';
import { GrafanaRouteError } from './GrafanaRouteError';
import { GrafanaRouteLoading } from './GrafanaRouteLoading';
import { GrafanaRouteComponentProps, RouteDescriptor } from './types';
export interface Props extends Pick<GrafanaRouteComponentProps, 'route' | 'location'> {}
export function GrafanaRoute(props: Props) {
const { chrome, keybindings } = useGrafana();
chrome.setMatchedRoute(props.route);
useLayoutEffect(() => {
keybindings.clearAndInitGlobalBindings(props.route);
}, [keybindings, props.route]);
useEffect(() => {
updateBodyClassNames(props.route);
cleanupDOM();
navigationLogger('GrafanaRoute', false, 'Mounted', props.route);
return () => {
navigationLogger('GrafanaRoute', false, 'Unmounted', props.route);
updateBodyClassNames(props.route, true);
};
// props.match instance change even though only query params changed so to make this effect only trigger on route mount we have to disable exhaustive-deps
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
useEffect(() => {
cleanupDOM();
reportPageview();
navigationLogger('GrafanaRoute', false, 'Updated', props);
});
navigationLogger('GrafanaRoute', false, 'Rendered', props.route);
return (
<ErrorBoundary dependencies={[props.route]}>
{({ error, errorInfo }) => {
if (error) {
return <GrafanaRouteError error={error} errorInfo={errorInfo} />;
}
return (
<Suspense fallback={<GrafanaRouteLoading />}>
<props.route.component {...props} queryParams={locationSearchToObject(props.location.search)} />
</Suspense>
);
}}
</ErrorBoundary>
);
}
export function GrafanaRouteWrapper({ route }: Pick<Props, 'route'>) {
const location = useLocation();
// Perform login check in the frontend now
if (config.featureToggles.multiTenantFrontend) {
const routeRequiresSignin = !route.allowAnonymous && !config.anonymousEnabled;
if (routeRequiresSignin && !contextSrv.isSignedIn) {
contextSrv.setRedirectToUrl();
return <Navigate replace to="/login" />;
}
}
const roles = route.roles ? route.roles() : [];
if (roles?.length) {
if (!roles.some((r: string) => contextSrv.hasRole(r))) {
return <Navigate replace to="/" />;
}
}
return <GrafanaRoute route={route} location={location} />;
}
function getPageClasses(route: RouteDescriptor) {
return route.pageClass ? route.pageClass.split(' ') : [];
}
function updateBodyClassNames(route: RouteDescriptor, clear = false) {
for (const cls of getPageClasses(route)) {
if (clear) {
document.body.classList.remove(cls);
} else {
document.body.classList.add(cls);
}
}
}
function cleanupDOM() {
document.body.classList.remove('sidemenu-open--xs');
// cleanup tooltips
const tooltipById = document.getElementById('tooltip');
tooltipById?.parentElement?.removeChild(tooltipById);
const tooltipsByClass = document.querySelectorAll('.tooltip');
for (let i = 0; i < tooltipsByClass.length; i++) {
const tooltip = tooltipsByClass[i];
tooltip.parentElement?.removeChild(tooltip);
}
}