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/packages/grafana-ui/src/components/Layout/Layout.tsx

159 lines
4.3 KiB

import React, { HTMLProps } from 'react';
import { css, cx } from 'emotion';
import { GrafanaTheme } from '@grafana/data';
import { stylesFactory, useTheme } from '../../themes';
enum Orientation {
Horizontal,
Vertical,
}
type Spacing = 'none' | 'xs' | 'sm' | 'md' | 'lg';
type Justify = 'flex-start' | 'flex-end' | 'space-between' | 'center';
type Align = 'normal' | 'flex-start' | 'flex-end' | 'center';
export interface LayoutProps extends Omit<HTMLProps<HTMLDivElement>, 'align' | 'children' | 'wrap'> {
children: React.ReactNode[] | React.ReactNode;
orientation?: Orientation;
spacing?: Spacing;
justify?: Justify;
align?: Align;
width?: string;
wrap?: boolean;
}
export interface ContainerProps {
padding?: Spacing;
margin?: Spacing;
grow?: number;
shrink?: number;
}
export const Layout: React.FC<LayoutProps> = ({
children,
orientation = Orientation.Horizontal,
spacing = 'sm',
justify = 'flex-start',
align = 'normal',
wrap = false,
width = '100%',
...rest
}) => {
const theme = useTheme();
const styles = getStyles(theme, orientation, spacing, justify, align, wrap);
return (
<div className={styles.layout} style={{ width }} {...rest}>
{React.Children.toArray(children)
.filter(Boolean)
.map((child, index) => {
return (
<div className={styles.childWrapper} key={index}>
{child}
</div>
);
})}
</div>
);
};
export const HorizontalGroup: React.FC<Omit<LayoutProps, 'orientation'>> = ({
children,
spacing,
justify,
align = 'center',
wrap,
width,
}) => (
<Layout
spacing={spacing}
justify={justify}
orientation={Orientation.Horizontal}
align={align}
width={width}
wrap={wrap}
>
{children}
</Layout>
);
export const VerticalGroup: React.FC<Omit<LayoutProps, 'orientation' | 'wrap'>> = ({
children,
spacing,
justify,
align,
width,
}) => (
<Layout spacing={spacing} justify={justify} orientation={Orientation.Vertical} align={align} width={width}>
{children}
</Layout>
);
export const Container: React.FC<ContainerProps> = ({ children, padding, margin, grow, shrink }) => {
const theme = useTheme();
const styles = getContainerStyles(theme, padding, margin);
return (
<div
className={cx(
styles.wrapper,
grow !== undefined &&
css`
flex-grow: ${grow};
`,
shrink !== undefined &&
css`
flex-shrink: ${shrink};
`
)}
>
{children}
</div>
);
};
const getStyles = stylesFactory(
(theme: GrafanaTheme, orientation: Orientation, spacing: Spacing, justify: Justify, align, wrap) => {
const finalSpacing = spacing !== 'none' ? theme.spacing[spacing] : 0;
// compensate for last row margin when wrapped, horizontal layout
const marginCompensation =
(orientation === Orientation.Horizontal && !wrap) || orientation === Orientation.Vertical
? 0
: `-${finalSpacing}`;
const label = orientation === Orientation.Vertical ? 'vertical-group' : 'horizontal-group';
return {
layout: css`
label: ${label};
display: flex;
flex-direction: ${orientation === Orientation.Vertical ? 'column' : 'row'};
flex-wrap: ${wrap ? 'wrap' : 'nowrap'};
justify-content: ${justify};
align-items: ${align};
height: 100%;
max-width: 100%;
// compensate for last row margin when wrapped, horizontal layout
margin-bottom: ${marginCompensation};
`,
childWrapper: css`
margin-bottom: ${orientation === Orientation.Horizontal && !wrap ? 0 : finalSpacing};
margin-right: ${orientation === Orientation.Horizontal ? finalSpacing : 0};
display: flex;
align-items: ${align};
&:last-child {
margin-bottom: ${orientation === Orientation.Vertical && 0};
margin-right: ${orientation === Orientation.Horizontal && 0};
}
`,
};
}
);
const getContainerStyles = stylesFactory((theme: GrafanaTheme, padding?: Spacing, margin?: Spacing) => {
const paddingSize = (padding && padding !== 'none' && theme.spacing[padding]) || 0;
const marginSize = (margin && margin !== 'none' && theme.spacing[margin]) || 0;
return {
wrapper: css`
margin: ${marginSize};
padding: ${paddingSize};
`,
};
});