mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Chore: Bumps prettier version for new typescript syntax support * Ran new version of prettier against the codebase
100 lines
3.0 KiB
TypeScript
100 lines
3.0 KiB
TypeScript
//// Libraries
|
|
import _ from 'lodash';
|
|
import React, { PureComponent } from 'react';
|
|
|
|
// Types
|
|
import { PanelEditorProps, FieldConfig } from '@grafana/data';
|
|
import {
|
|
Switch,
|
|
LegendOptions,
|
|
GraphTooltipOptions,
|
|
PanelOptionsGrid,
|
|
PanelOptionsGroup,
|
|
FieldPropertiesEditor,
|
|
Select,
|
|
} from '@grafana/ui';
|
|
import { Options, GraphOptions } from './types';
|
|
import { GraphLegendEditor } from './GraphLegendEditor';
|
|
|
|
export class GraphPanelEditor extends PureComponent<PanelEditorProps<Options>> {
|
|
onGraphOptionsChange = (options: Partial<GraphOptions>) => {
|
|
this.props.onOptionsChange({
|
|
...this.props.options,
|
|
graph: {
|
|
...this.props.options.graph,
|
|
...options,
|
|
},
|
|
});
|
|
};
|
|
|
|
onLegendOptionsChange = (options: LegendOptions) => {
|
|
this.props.onOptionsChange({ ...this.props.options, legend: options });
|
|
};
|
|
|
|
onTooltipOptionsChange = (options: GraphTooltipOptions) => {
|
|
this.props.onOptionsChange({ ...this.props.options, tooltipOptions: options });
|
|
};
|
|
|
|
onToggleLines = () => {
|
|
this.onGraphOptionsChange({ showLines: !this.props.options.graph.showLines });
|
|
};
|
|
|
|
onToggleBars = () => {
|
|
this.onGraphOptionsChange({ showBars: !this.props.options.graph.showBars });
|
|
};
|
|
|
|
onTogglePoints = () => {
|
|
this.onGraphOptionsChange({ showPoints: !this.props.options.graph.showPoints });
|
|
};
|
|
|
|
onDefaultsChange = (field: FieldConfig) => {
|
|
this.props.onOptionsChange({
|
|
...this.props.options,
|
|
fieldOptions: {
|
|
...this.props.options.fieldOptions,
|
|
defaults: field,
|
|
},
|
|
});
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
graph: { showBars, showPoints, showLines },
|
|
tooltipOptions: { mode },
|
|
} = this.props.options;
|
|
|
|
return (
|
|
<>
|
|
<div className="section gf-form-group">
|
|
<h5 className="section-heading">Draw Modes</h5>
|
|
<Switch label="Lines" labelClass="width-5" checked={showLines} onChange={this.onToggleLines} />
|
|
<Switch label="Bars" labelClass="width-5" checked={showBars} onChange={this.onToggleBars} />
|
|
<Switch label="Points" labelClass="width-5" checked={showPoints} onChange={this.onTogglePoints} />
|
|
</div>
|
|
<PanelOptionsGrid>
|
|
<PanelOptionsGroup title="Field">
|
|
<FieldPropertiesEditor
|
|
showMinMax={false}
|
|
onChange={this.onDefaultsChange}
|
|
value={this.props.options.fieldOptions.defaults}
|
|
/>
|
|
</PanelOptionsGroup>
|
|
<PanelOptionsGroup title="Tooltip">
|
|
<Select
|
|
value={{ value: mode, label: mode === 'single' ? 'Single' : 'All series' }}
|
|
onChange={value => {
|
|
this.onTooltipOptionsChange({ mode: value.value as any });
|
|
}}
|
|
options={[
|
|
{ label: 'All series', value: 'multi' },
|
|
{ label: 'Single', value: 'single' },
|
|
]}
|
|
/>
|
|
</PanelOptionsGroup>
|
|
<GraphLegendEditor options={this.props.options.legend} onChange={this.onLegendOptionsChange} />
|
|
</PanelOptionsGrid>
|
|
</>
|
|
);
|
|
}
|
|
}
|