The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/plugins/datasource/graphite/components/GraphiteVariableEditor.tsx

65 lines
1.8 KiB

import React, { useState } from 'react';
import { InlineField, Input, Select } from '@grafana/ui';
import { GraphiteQuery, GraphiteQueryType } from '../types';
import { convertToGraphiteQueryObject } from './helpers';
interface Props {
query: GraphiteQuery | string;
onChange: (query: GraphiteQuery, definition: string) => void;
}
const GRAPHITE_QUERY_VARIABLE_TYPE_OPTIONS = [
{ label: 'Default Query', value: GraphiteQueryType.Default },
{ label: 'Value Query', value: GraphiteQueryType.Value },
{ label: 'Metric Name Query', value: GraphiteQueryType.MetricName },
];
export const GraphiteVariableEditor = (props: Props) => {
const { query, onChange } = props;
const [value, setValue] = useState(convertToGraphiteQueryObject(query));
return (
<>
<InlineField label="Select query type" labelWidth={20}>
<Select
aria-label="select query type"
options={GRAPHITE_QUERY_VARIABLE_TYPE_OPTIONS}
width={25}
value={value.queryType ?? GraphiteQueryType.Default}
onChange={(selectableValue) => {
setValue({
...value,
queryType: selectableValue.value,
});
if (value.target) {
onChange(
{
...value,
queryType: selectableValue.value,
},
value.target ?? ''
);
}
}}
/>
</InlineField>
<InlineField label="Query" labelWidth={20} grow>
<Input
aria-label="Variable editor query input"
value={value.target}
onBlur={() => onChange(value, value.target ?? '')}
onChange={(e) => {
setValue({
...value,
target: e.currentTarget.value,
});
}}
/>
</InlineField>
</>
);
};