The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/alerting/unified/components/rule-viewer/RuleViewerLayout.tsx

60 lines
1.7 KiB

import { css } from '@emotion/css';
import React from 'react';
import { GrafanaTheme2, NavModelItem } from '@grafana/data';
import { useStyles2 } from '@grafana/ui';
import { Page } from 'app/core/components/Page/Page';
type Props = {
children: React.ReactNode | React.ReactNode[];
title: string;
wrapInContent?: boolean;
};
const defaultPageNav: Partial<NavModelItem> = {
icon: 'bell',
id: 'alert-rule-view',
breadcrumbs: [{ title: 'Alert rules', url: 'alerting/list' }],
};
export function RuleViewerLayout(props: Props): JSX.Element | null {
const { wrapInContent = true, children, title } = props;
const styles = useStyles2(getPageStyles);
return (
<Page pageNav={{ ...defaultPageNav, text: title }} navId="alert-list">
<Page.Contents>
<div className={styles.content}>{wrapInContent ? <RuleViewerLayoutContent {...props} /> : children}</div>
</Page.Contents>
</Page>
);
}
type ContentProps = {
children: React.ReactNode | React.ReactNode[];
padding?: number;
};
export function RuleViewerLayoutContent({ children, padding = 2 }: ContentProps): JSX.Element | null {
const styles = useStyles2(getContentStyles(padding));
return <div className={styles.wrapper}>{children}</div>;
}
const getPageStyles = (theme: GrafanaTheme2) => {
return {
content: css`
max-width: ${theme.breakpoints.values.xxl}px;
`,
};
};
const getContentStyles = (padding: number) => (theme: GrafanaTheme2) => {
return {
wrapper: css`
background: ${theme.colors.background.primary};
border: 1px solid ${theme.colors.border.weak};
border-radius: ${theme.shape.borderRadius()};
padding: ${theme.spacing(padding)};
`,
};
};