mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
cfd06775c0
* Add landmark markup * Make panel titles h2 * Descibe panel landmarks * Add nav elements and heading 1 * Reset line height and remove margin * Make focus styles visible * Change nav to section * Add desc * Fix focus styles cutoff
126 lines
4.0 KiB
TypeScript
126 lines
4.0 KiB
TypeScript
import React, { ComponentType } from 'react';
|
|
import { Router, Route, Redirect, Switch } from 'react-router-dom';
|
|
import { config, locationService, navigationLogger } from '@grafana/runtime';
|
|
import { Provider } from 'react-redux';
|
|
import { store } from 'app/store/store';
|
|
import { ErrorBoundaryAlert, GlobalStyles, ModalRoot, ModalsProvider } from '@grafana/ui';
|
|
import { GrafanaApp } from './app';
|
|
import { getAppRoutes } from 'app/routes/routes';
|
|
import { ConfigContext, ThemeProvider } from './core/utils/ConfigProvider';
|
|
import { RouteDescriptor } from './core/navigation/types';
|
|
import { contextSrv } from './core/services/context_srv';
|
|
import { SideMenu } from './core/components/sidemenu/SideMenu';
|
|
import { GrafanaRoute } from './core/navigation/GrafanaRoute';
|
|
import { AppNotificationList } from './core/components/AppNotifications/AppNotificationList';
|
|
import { SearchWrapper } from 'app/features/search';
|
|
import { LiveConnectionWarning } from './features/live/LiveConnectionWarning';
|
|
|
|
interface AppWrapperProps {
|
|
app: GrafanaApp;
|
|
}
|
|
|
|
interface AppWrapperState {
|
|
ngInjector: any;
|
|
}
|
|
|
|
/** Used by enterprise */
|
|
let bodyRenderHooks: ComponentType[] = [];
|
|
|
|
export function addBodyRenderHook(fn: ComponentType) {
|
|
bodyRenderHooks.push(fn);
|
|
}
|
|
|
|
export class AppWrapper extends React.Component<AppWrapperProps, AppWrapperState> {
|
|
container = React.createRef<HTMLDivElement>();
|
|
|
|
constructor(props: AppWrapperProps) {
|
|
super(props);
|
|
|
|
this.state = {
|
|
ngInjector: null,
|
|
};
|
|
}
|
|
|
|
componentDidMount() {
|
|
if (this.container) {
|
|
this.bootstrapNgApp();
|
|
} else {
|
|
throw new Error('Failed to boot angular app, no container to attach to');
|
|
}
|
|
}
|
|
|
|
bootstrapNgApp() {
|
|
const injector = this.props.app.angularApp.bootstrap();
|
|
this.setState({ ngInjector: injector });
|
|
}
|
|
|
|
renderRoute = (route: RouteDescriptor) => {
|
|
const roles = route.roles ? route.roles() : [];
|
|
|
|
return (
|
|
<Route
|
|
exact={route.exact === undefined ? true : route.exact}
|
|
path={route.path}
|
|
key={route.path}
|
|
render={(props) => {
|
|
navigationLogger('AppWrapper', false, 'Rendering route', route, 'with match', props.location);
|
|
// TODO[Router]: test this logic
|
|
if (roles?.length) {
|
|
if (!roles.some((r: string) => contextSrv.hasRole(r))) {
|
|
return <Redirect to="/" />;
|
|
}
|
|
}
|
|
|
|
return <GrafanaRoute {...props} route={route} />;
|
|
}}
|
|
/>
|
|
);
|
|
};
|
|
|
|
renderRoutes() {
|
|
return <Switch>{getAppRoutes().map((r) => this.renderRoute(r))}</Switch>;
|
|
}
|
|
|
|
render() {
|
|
navigationLogger('AppWrapper', false, 'rendering');
|
|
|
|
// @ts-ignore
|
|
const appSeed = `<grafana-app ng-cloak></app-notifications-list><div id="ngRoot"></div></grafana-app>`;
|
|
|
|
return (
|
|
<Provider store={store}>
|
|
<ErrorBoundaryAlert style="page">
|
|
<ConfigContext.Provider value={config}>
|
|
<ThemeProvider>
|
|
<ModalsProvider>
|
|
<GlobalStyles />
|
|
<div className="grafana-app">
|
|
<Router history={locationService.getHistory()}>
|
|
<SideMenu />
|
|
<main className="main-view">
|
|
<div
|
|
ref={this.container}
|
|
dangerouslySetInnerHTML={{
|
|
__html: appSeed,
|
|
}}
|
|
/>
|
|
<AppNotificationList />
|
|
<SearchWrapper />
|
|
{this.state.ngInjector && this.container && this.renderRoutes()}
|
|
{bodyRenderHooks.map((Hook, index) => (
|
|
<Hook key={index.toString()} />
|
|
))}
|
|
</main>
|
|
</Router>
|
|
</div>
|
|
<LiveConnectionWarning />
|
|
<ModalRoot />
|
|
</ModalsProvider>
|
|
</ThemeProvider>
|
|
</ConfigContext.Provider>
|
|
</ErrorBoundaryAlert>
|
|
</Provider>
|
|
);
|
|
}
|
|
}
|