/usr/share/grafana/public/app/plugins/datasource/graphite/components
import { 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> </> ); };
.
Edit
..
Edit
AddGraphiteFunction.tsx
Edit
AnnotationsEditor.tsx
Edit
FunctionEditor.test.tsx
Edit
FunctionEditor.tsx
Edit
FunctionEditorControls.tsx
Edit
FunctionParamEditor.tsx
Edit
FunctionsSection.tsx
Edit
GraphiteFunctionEditor.tsx
Edit
GraphiteQueryEditor.tsx
Edit
GraphiteTextEditor.tsx
Edit
GraphiteVariableEditor.tsx
Edit
MetricSegment.tsx
Edit
MetricTankMetaInspector.tsx
Edit
MetricsSection.tsx
Edit
PlayButton.tsx
Edit
SeriesSection.tsx
Edit
TagEditor.tsx
Edit
TagsSection.tsx
Edit
helpers.test.ts
Edit
helpers.ts
Edit