mirror of https://github.com/grafana/grafana.git
38 lines
2.1 KiB
TypeScript
38 lines
2.1 KiB
TypeScript
import React from 'react';
|
|
import { Route, Switch } from 'react-router-dom';
|
|
|
|
import { withErrorBoundary } from '@grafana/ui';
|
|
const ContactPointsV2 = SafeDynamicImport(() => import('./components/contact-points/ContactPoints'));
|
|
const EditContactPoint = SafeDynamicImport(() => import('./components/contact-points/EditContactPoint'));
|
|
const NewContactPoint = SafeDynamicImport(() => import('./components/contact-points/NewContactPoint'));
|
|
const EditMessageTemplate = SafeDynamicImport(() => import('./components/contact-points/EditMessageTemplate'));
|
|
const NewMessageTemplate = SafeDynamicImport(() => import('./components/contact-points/NewMessageTemplate'));
|
|
const GlobalConfig = SafeDynamicImport(() => import('./components/contact-points/components/GlobalConfig'));
|
|
const DuplicateMessageTemplate = SafeDynamicImport(
|
|
() => import('./components/contact-points/DuplicateMessageTemplate')
|
|
);
|
|
import { SafeDynamicImport } from 'app/core/components/DynamicImports/SafeDynamicImport';
|
|
import { GrafanaRouteComponentProps } from 'app/core/navigation/types';
|
|
|
|
import { AlertmanagerPageWrapper } from './components/AlertingPageWrapper';
|
|
|
|
const ContactPoints = (_props: GrafanaRouteComponentProps): JSX.Element => (
|
|
<AlertmanagerPageWrapper navId="receivers" accessType="notification">
|
|
<Switch>
|
|
<Route exact={true} path="/alerting/notifications" component={ContactPointsV2} />
|
|
<Route exact={true} path="/alerting/notifications/receivers/new" component={NewContactPoint} />
|
|
<Route exact={true} path="/alerting/notifications/receivers/:name/edit" component={EditContactPoint} />
|
|
<Route exact={true} path="/alerting/notifications/templates/:name/edit" component={EditMessageTemplate} />
|
|
<Route exact={true} path="/alerting/notifications/templates/new" component={NewMessageTemplate} />
|
|
<Route
|
|
exact={true}
|
|
path="/alerting/notifications/templates/:name/duplicate"
|
|
component={DuplicateMessageTemplate}
|
|
/>
|
|
<Route exact={true} path="/alerting/notifications/global-config" component={GlobalConfig} />
|
|
</Switch>
|
|
</AlertmanagerPageWrapper>
|
|
);
|
|
|
|
export default withErrorBoundary(ContactPoints, { style: 'page' });
|