mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* PanelEditor: Adds panel instance state and a way to share this between panel & option editors * Refactoring to use PanelContext
94 lines
2.6 KiB
TypeScript
94 lines
2.6 KiB
TypeScript
import React from 'react';
|
|
import { GrafanaTheme } from '@grafana/data';
|
|
import { useStyles } from '@grafana/ui';
|
|
import { css } from '@emotion/css';
|
|
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';
|
|
import { OptionPaneRenderProps } from './types';
|
|
|
|
export const OptionsPane: React.FC<OptionPaneRenderProps> = ({
|
|
plugin,
|
|
panel,
|
|
onFieldConfigsChange,
|
|
onPanelOptionsChanged,
|
|
onPanelConfigChange,
|
|
dashboard,
|
|
instanceState,
|
|
}) => {
|
|
const styles = useStyles(getStyles);
|
|
const isVizPickerOpen = useSelector((state: StoreState) => state.panelEditor.isVizPickerOpen);
|
|
const { data } = usePanelLatestData(panel, { withTransforms: true, withFieldConfig: false }, true);
|
|
|
|
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}
|
|
instanceState={instanceState}
|
|
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: 0;
|
|
`,
|
|
optionsWrapper: css`
|
|
flex-grow: 1;
|
|
min-height: 0;
|
|
`,
|
|
vizButtonWrapper: css`
|
|
padding: 0 ${theme.spacing.md} ${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;
|
|
}
|
|
}
|
|
`,
|
|
};
|
|
};
|