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/NodeGraphEditor.tsx

44 lines
1.3 KiB

import React from 'react';
import { Input, InlineFieldRow, InlineField, Select } from '@grafana/ui';
import { NodesQuery, TestData } from '../dataquery.gen';
export interface Props {
onChange: (value: NodesQuery) => void;
query: TestData;
}
export function NodeGraphEditor({ query, onChange }: Props) {
const type = query.nodes?.type || 'random';
return (
<InlineFieldRow>
<InlineField label="Data type" labelWidth={14}>
<Select<NodesQuery['type']>
options={options.map((o) => ({
label: o,
value: o,
}))}
value={options.find((item) => item === type)}
onChange={(value) => onChange({ ...query.nodes, type: value.value! })}
width={32}
/>
</InlineField>
{(type === 'random' || type === 'random edges') && (
<InlineField label="Count" labelWidth={14}>
<Input
type="number"
name="count"
value={query.nodes?.count}
width={32}
onChange={(e) =>
onChange({ ...query.nodes, count: e.currentTarget.value ? parseInt(e.currentTarget.value, 10) : 0 })
}
placeholder="10"
/>
</InlineField>
)}
</InlineFieldRow>
);
}
const options: Array<NodesQuery['type']> = ['random', 'response', 'random edges'];