mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Initial commit * Progress * Update * Progress * updates * Minor fix * fixed ts issue * fixed e2e tests * More explorations * Making progress * Panel options and field options unified * With nested categories * Starting to find something * fix paddings * Progress * Breakthrough ux layout * Progress * Updates * New way of composing options with search * added regex search * Refactoring to react note tree * Show overrides * Adding overrides radio button support * Added popular view * Separate stat/gauge/bargauge options into value options and display options * Initial work on getting library panels into viz picker flow * Fixed issues switching to panel library panel * Move search input put of LibraryPanelsView * Changing design again to have content inside boxes * Style updates * Refactoring to fix scroll issue * Option category naming * Fixed FilterInput issue * Updated snapshots * Fix padding * Updated viz picker design * Unify library panel an viz picker card * Updated card with delete action * Major refactoring back to an object model instead of searching and filtering react node tree * More refactoring * Show option category in label when searching * Nice logic for categories rendering when searching or when only child * Make getSuggestions more lazy for DataLinksEditor * Add missing repeat options and handle conditional options * Prepping options category to be more flexibly and control state from outside * Added option count to search result * Minor style tweak * Added button to close viz picker * Rewrote overrides to enable searching overrides * New search engine and tests * Searching overrides works * Hide radio buttons while searching * Added angular options back * Added memoize for all options so they are not rebuilt for every search key stroke * Added back support for category counters * Started unit test work * Refactoring and base popular options list * Initial update to e2e test, more coming to add e2e test for search features * Minor fix * Review updates * Fixing category open states * Unit test progress * Do not show visualization list mode radio button if library panels is not enabled * Use boolean * More unit tests * Increase library panels per page count and give search focus when switching list mode * field config change test and search test * Feedback updates * Minor tweaks * Minor refactorings * More minimal override collapse state
103 lines
2.9 KiB
TypeScript
103 lines
2.9 KiB
TypeScript
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;
|
|
}
|
|
}
|
|
`,
|
|
};
|
|
};
|