mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
60 lines
1.7 KiB
TypeScript
60 lines
1.7 KiB
TypeScript
// Libraries
|
|
import React, { PureComponent } from 'react';
|
|
|
|
// Services & Utils
|
|
import { processSingleStatPanelData } from '@grafana/ui';
|
|
import { config } from 'app/core/config';
|
|
|
|
// Components
|
|
import { Gauge, VizRepeater } from '@grafana/ui';
|
|
|
|
// Types
|
|
import { GaugeOptions } from './types';
|
|
import { PanelProps, VizOrientation, SingleStatValueInfo } from '@grafana/ui/src/types';
|
|
|
|
interface Props extends PanelProps<GaugeOptions> {}
|
|
|
|
export class GaugePanel extends PureComponent<Props> {
|
|
renderGauge(value: SingleStatValueInfo, width, height) {
|
|
const { replaceVariables, options } = this.props;
|
|
const { valueOptions } = options;
|
|
|
|
const prefix = replaceVariables(valueOptions.prefix);
|
|
const suffix = replaceVariables(valueOptions.suffix);
|
|
|
|
return (
|
|
<Gauge
|
|
value={value.value as number | null}
|
|
width={width}
|
|
height={height}
|
|
prefix={prefix}
|
|
suffix={suffix}
|
|
unit={valueOptions.unit}
|
|
decimals={valueOptions.decimals}
|
|
thresholds={options.thresholds}
|
|
valueMappings={options.valueMappings}
|
|
showThresholdLabels={options.showThresholdLabels}
|
|
showThresholdMarkers={options.showThresholdMarkers}
|
|
minValue={options.minValue}
|
|
maxValue={options.maxValue}
|
|
theme={config.theme}
|
|
/>
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { panelData, options, height, width } = this.props;
|
|
|
|
const values = processSingleStatPanelData({
|
|
panelData: panelData,
|
|
stat: options.valueOptions.stat,
|
|
});
|
|
|
|
return (
|
|
<VizRepeater height={height} width={width} values={values} orientation={VizOrientation.Auto}>
|
|
{({ vizHeight, vizWidth, value }) => this.renderGauge(value, vizWidth, vizHeight)}
|
|
</VizRepeater>
|
|
);
|
|
}
|
|
}
|