| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- // Libraries
- import React, { PureComponent, ChangeEvent } from 'react';
- // Components
- import {
- FormField,
- FormLabel,
- PanelOptionsGroup,
- StatsPicker,
- UnitPicker,
- ReducerID,
- SelectOptionItem,
- } from '@grafana/ui';
- // Types
- import { SingleStatValueOptions } from './shared';
- const labelWidth = 6;
- export interface Props {
- value: SingleStatValueOptions;
- onChange: (valueOptions: SingleStatValueOptions) => void;
- }
- export class SingleStatValueEditor extends PureComponent<Props> {
- // @ts-ignore
- onUnitChange = (unit: SelectOptionItem<string>) => this.props.onChange({ ...this.props.value, unit: unit.value });
- onStatsChange = (stats: string[]) => {
- const stat = stats[0] || ReducerID.mean;
- this.props.onChange({ ...this.props.value, stat });
- };
- onDecimalChange = (event: ChangeEvent<HTMLInputElement>) => {
- if (!isNaN(parseInt(event.target.value, 10))) {
- this.props.onChange({
- ...this.props.value,
- decimals: parseInt(event.target.value, 10),
- });
- } else {
- this.props.onChange({
- ...this.props.value,
- decimals: null,
- });
- }
- };
- onPrefixChange = (event: ChangeEvent<HTMLInputElement>) =>
- this.props.onChange({ ...this.props.value, prefix: event.target.value });
- onSuffixChange = (event: ChangeEvent<HTMLInputElement>) =>
- this.props.onChange({ ...this.props.value, suffix: event.target.value });
- render() {
- const { stat, unit, decimals, prefix, suffix } = this.props.value;
- let decimalsString = '';
- if (decimals !== null && decimals !== undefined && Number.isFinite(decimals as number)) {
- decimalsString = decimals.toString();
- }
- return (
- <PanelOptionsGroup title="Value">
- <div className="gf-form">
- <FormLabel width={labelWidth}>Show</FormLabel>
- <StatsPicker
- width={12}
- placeholder="Choose Stat"
- defaultStat={ReducerID.mean}
- allowMultiple={false}
- stats={[stat]}
- onChange={this.onStatsChange}
- />
- </div>
- <div className="gf-form">
- <FormLabel width={labelWidth}>Unit</FormLabel>
- <UnitPicker defaultValue={unit} onChange={this.onUnitChange} />
- </div>
- <FormField
- label="Decimals"
- labelWidth={labelWidth}
- placeholder="auto"
- onChange={this.onDecimalChange}
- value={decimalsString}
- type="number"
- />
- <FormField label="Prefix" labelWidth={labelWidth} onChange={this.onPrefixChange} value={prefix || ''} />
- <FormField label="Suffix" labelWidth={labelWidth} onChange={this.onSuffixChange} value={suffix || ''} />
- </PanelOptionsGroup>
- );
- }
- }
|