mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Updated package json but not updated source files * Update eslint plugin * updated files
83 lines
2.3 KiB
TypeScript
83 lines
2.3 KiB
TypeScript
import React, { SyntheticEvent } from 'react';
|
|
import { InlineFormLabel, LegacyForms } from '@grafana/ui';
|
|
const { Select, Input } = LegacyForms;
|
|
import { DataSourceSettings, SelectableValue } from '@grafana/data';
|
|
import { OpenTsdbOptions } from '../types';
|
|
|
|
const tsdbVersions = [
|
|
{ label: '<=2.1', value: 1 },
|
|
{ label: '==2.2', value: 2 },
|
|
{ label: '==2.3', value: 3 },
|
|
];
|
|
|
|
const tsdbResolutions = [
|
|
{ label: 'second', value: 1 },
|
|
{ label: 'millisecond', value: 2 },
|
|
];
|
|
|
|
interface Props {
|
|
value: DataSourceSettings<OpenTsdbOptions>;
|
|
onChange: (value: DataSourceSettings<OpenTsdbOptions>) => void;
|
|
}
|
|
|
|
export const OpenTsdbDetails = (props: Props) => {
|
|
const { onChange, value } = props;
|
|
|
|
return (
|
|
<>
|
|
<h5>OpenTSDB settings</h5>
|
|
<div className="gf-form">
|
|
<InlineFormLabel width={7}>Version</InlineFormLabel>
|
|
<Select
|
|
options={tsdbVersions}
|
|
value={tsdbVersions.find((version) => version.value === value.jsonData.tsdbVersion) ?? tsdbVersions[0]}
|
|
onChange={onSelectChangeHandler('tsdbVersion', value, onChange)}
|
|
/>
|
|
</div>
|
|
<div className="gf-form">
|
|
<InlineFormLabel width={7}>Resolution</InlineFormLabel>
|
|
<Select
|
|
options={tsdbResolutions}
|
|
value={
|
|
tsdbResolutions.find((resolution) => resolution.value === value.jsonData.tsdbResolution) ??
|
|
tsdbResolutions[0]
|
|
}
|
|
onChange={onSelectChangeHandler('tsdbResolution', value, onChange)}
|
|
/>
|
|
</div>
|
|
<div className="gf-form">
|
|
<InlineFormLabel width={7}>Lookup Limit</InlineFormLabel>
|
|
<Input
|
|
type="number"
|
|
value={value.jsonData.lookupLimit ?? 1000}
|
|
onChange={onInputChangeHandler('lookupLimit', value, onChange)}
|
|
/>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const onSelectChangeHandler = (key: keyof OpenTsdbOptions, value: Props['value'], onChange: Props['onChange']) => (
|
|
newValue: SelectableValue
|
|
) => {
|
|
onChange({
|
|
...value,
|
|
jsonData: {
|
|
...value.jsonData,
|
|
[key]: newValue.value,
|
|
},
|
|
});
|
|
};
|
|
|
|
const onInputChangeHandler = (key: keyof OpenTsdbOptions, value: Props['value'], onChange: Props['onChange']) => (
|
|
event: SyntheticEvent<HTMLInputElement>
|
|
) => {
|
|
onChange({
|
|
...value,
|
|
jsonData: {
|
|
...value.jsonData,
|
|
[key]: event.currentTarget.value,
|
|
},
|
|
});
|
|
};
|