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/dashboard/components/PanelEditor/OptionsPane.tsx

102 lines
2.9 KiB

import React from 'react';
import { FieldConfigSource, GrafanaTheme, PanelPlugin } from '@grafana/data';
import { DashboardModel, PanelModel } from '../../state';
import { useStyles } from '@grafana/ui';
import { css } from 'emotion';
import { selectors } from '@grafana/e2e-selectors';
import { VisualizationButton } from './VisualizationButton';
import { OptionsPaneOptions } from './OptionsPaneOptions';
import { useSelector } from 'react-redux';
import { StoreState } from 'app/types';
import { VisualizationSelectPane } from './VisualizationSelectPane';
import { usePanelLatestData } from './usePanelLatestData';
interface Props {
plugin: PanelPlugin;
panel: PanelModel;
width: number;
dashboard: DashboardModel;
onFieldConfigsChange: (config: FieldConfigSource) => void;
onPanelOptionsChanged: (options: any) => void;
onPanelConfigChange: (configKey: string, value: any) => void;
}
export const OptionsPane: React.FC<Props> = ({
plugin,
panel,
width,
onFieldConfigsChange,
onPanelOptionsChanged,
onPanelConfigChange,
dashboard,
}: Props) => {
const styles = useStyles(getStyles);
const isVizPickerOpen = useSelector((state: StoreState) => state.panelEditor.isVizPickerOpen);
const { data } = usePanelLatestData(panel, { withTransforms: true, withFieldConfig: false });
return (
<div className={styles.wrapper} aria-label={selectors.components.PanelEditor.OptionsPane.content}>
{!isVizPickerOpen && (
<>
<div className={styles.vizButtonWrapper}>
<VisualizationButton panel={panel} />
</div>
<div className={styles.optionsWrapper}>
<OptionsPaneOptions
panel={panel}
dashboard={dashboard}
plugin={plugin}
data={data}
onFieldConfigsChange={onFieldConfigsChange}
onPanelOptionsChanged={onPanelOptionsChanged}
onPanelConfigChange={onPanelConfigChange}
/>
</div>
</>
)}
{isVizPickerOpen && <VisualizationSelectPane panel={panel} />}
</div>
);
};
const getStyles = (theme: GrafanaTheme) => {
return {
wrapper: css`
height: 100%;
width: 100%;
display: flex;
flex: 1 1 0;
flex-direction: column;
padding: ${theme.spacing.md} ${theme.spacing.sm} 0 0;
`,
optionsWrapper: css`
flex-grow: 1;
min-height: 0;
`,
vizButtonWrapper: css`
padding: 0 0 ${theme.spacing.md} 0;
`,
legacyOptions: css`
label: legacy-options;
.panel-options-grid {
display: flex;
flex-direction: column;
}
.panel-options-group {
margin-bottom: 0;
}
.panel-options-group__body {
padding: ${theme.spacing.md} 0;
}
.section {
display: block;
margin: ${theme.spacing.md} 0;
&:first-child {
margin-top: 0;
}
}
`,
};
};