| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- // Libraries
- import React, { PureComponent } from 'react';
- import {
- PanelEditorProps,
- ThresholdsEditor,
- PanelOptionsGrid,
- ValueMappingsEditor,
- FieldDisplayOptions,
- FieldDisplayEditor,
- FieldPropertiesEditor,
- Switch,
- PanelOptionsGroup,
- DataLinksEditor,
- } from '@grafana/ui';
- import { Threshold, ValueMapping, FieldConfig, DataLink } from '@grafana/data';
- import { GaugeOptions } from './types';
- import {
- getCalculationValueDataLinksVariableSuggestions,
- getDataLinksVariableSuggestions,
- } from 'app/features/panel/panellinks/link_srv';
- export class GaugePanelEditor extends PureComponent<PanelEditorProps<GaugeOptions>> {
- labelWidth = 6;
- onToggleThresholdLabels = () =>
- this.props.onOptionsChange({ ...this.props.options, showThresholdLabels: !this.props.options.showThresholdLabels });
- onToggleThresholdMarkers = () =>
- this.props.onOptionsChange({
- ...this.props.options,
- showThresholdMarkers: !this.props.options.showThresholdMarkers,
- });
- onThresholdsChanged = (thresholds: Threshold[]) => {
- const current = this.props.options.fieldOptions.defaults;
- this.onDefaultsChange({
- ...current,
- thresholds,
- });
- };
- onValueMappingsChanged = (mappings: ValueMapping[]) => {
- const current = this.props.options.fieldOptions.defaults;
- this.onDefaultsChange({
- ...current,
- mappings,
- });
- };
- onDisplayOptionsChanged = (fieldOptions: FieldDisplayOptions) =>
- this.props.onOptionsChange({
- ...this.props.options,
- fieldOptions,
- });
- onDefaultsChange = (field: FieldConfig) => {
- this.onDisplayOptionsChanged({
- ...this.props.options.fieldOptions,
- defaults: field,
- });
- };
- onDataLinksChanged = (links: DataLink[]) => {
- this.onDefaultsChange({
- ...this.props.options.fieldOptions.defaults,
- links,
- });
- };
- render() {
- const { options } = this.props;
- const { fieldOptions, showThresholdLabels, showThresholdMarkers } = options;
- const { defaults } = fieldOptions;
- const suggestions = fieldOptions.values
- ? getDataLinksVariableSuggestions()
- : getCalculationValueDataLinksVariableSuggestions();
- return (
- <>
- <PanelOptionsGrid>
- <PanelOptionsGroup title="Display">
- <FieldDisplayEditor
- onChange={this.onDisplayOptionsChanged}
- value={fieldOptions}
- labelWidth={this.labelWidth}
- />
- <Switch
- label="Labels"
- labelClass={`width-${this.labelWidth}`}
- checked={showThresholdLabels}
- onChange={this.onToggleThresholdLabels}
- />
- <Switch
- label="Markers"
- labelClass={`width-${this.labelWidth}`}
- checked={showThresholdMarkers}
- onChange={this.onToggleThresholdMarkers}
- />
- </PanelOptionsGroup>
- <PanelOptionsGroup title="Field">
- <FieldPropertiesEditor showMinMax={true} onChange={this.onDefaultsChange} value={defaults} />
- </PanelOptionsGroup>
- <ThresholdsEditor onChange={this.onThresholdsChanged} thresholds={defaults.thresholds} />
- </PanelOptionsGrid>
- <ValueMappingsEditor onChange={this.onValueMappingsChanged} valueMappings={defaults.mappings} />
- <PanelOptionsGroup title="Data links">
- <DataLinksEditor
- value={defaults.links}
- onChange={this.onDataLinksChanged}
- suggestions={suggestions}
- maxLinks={10}
- />
- </PanelOptionsGroup>
- </>
- );
- }
- }
|