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/grafana-testdata-datasource/components/StreamingClientEditor.tsx

70 lines
2.3 KiB

import React, { ChangeEvent } from 'react';
import { SelectableValue } from '@grafana/data';
import { InlineField, InlineFieldRow, Input, Select } from '@grafana/ui';
import { EditorProps } from '../QueryEditor';
const streamingClientFields = [
{ label: 'Speed (ms)', id: 'speed', placeholder: 'value', min: 10, step: 10 },
{ label: 'Spread', id: 'spread', placeholder: 'value', min: 0.5, step: 0.1 },
{ label: 'Noise', id: 'noise', placeholder: 'value', min: 0, step: 0.1 },
{ label: 'Bands', id: 'bands', placeholder: 'bands', min: 0, step: 1 },
] as const;
const types = [
{ value: 'signal', label: 'Signal' },
{ value: 'logs', label: 'Logs' },
{ value: 'fetch', label: 'Fetch' },
];
export const StreamingClientEditor = ({ onChange, query }: EditorProps) => {
const onSelectChange = ({ value }: SelectableValue) => {
onChange({ target: { name: 'type', value } });
};
// Convert values to numbers before saving
const onInputChange = (e: ChangeEvent<HTMLInputElement>) => {
const { name, value } = e.target;
onChange({ target: { name, value: Number(value) } });
};
return (
<InlineFieldRow>
<InlineField label="Type" labelWidth={14}>
<Select width={32} onChange={onSelectChange} defaultValue={types[0]} options={types} />
</InlineField>
{query?.stream?.type === 'signal' &&
streamingClientFields.map(({ label, id, min, step, placeholder }) => {
return (
<InlineField label={label} labelWidth={14} key={id}>
<Input
width={32}
type="number"
id={`stream.${id}-${query.refId}`}
name={id}
min={min}
step={step}
value={query.stream?.[id]}
placeholder={placeholder}
onChange={onInputChange}
/>
</InlineField>
);
})}
{query?.stream?.type === 'fetch' && (
<InlineField label="URL" labelWidth={14} grow>
<Input
type="text"
name="url"
id={`stream.url-${query.refId}`}
value={query?.stream?.url}
placeholder="Fetch URL"
onChange={onChange}
/>
</InlineField>
)}
</InlineFieldRow>
);
};