mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 09:33:34 -06:00
* Select: Don't portal by default * Select: Portal all the Selects * Fix indendentation in this comment * Select: Remove @example docs until formatting is correct * Docs: Add some documentation for the Select changes * Update docs/sources/whatsnew/whats-new-in-v8-1.md Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update docs/sources/whatsnew/whats-new-in-v8-1.md Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update packages/grafana-ui/src/components/Select/types.ts Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update public/app/core/components/TransformersUI/configFromQuery/ConfigFromQueryTransformerEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update public/app/core/components/TransformersUI/configFromQuery/ConfigFromQueryTransformerEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update public/app/core/components/TransformersUI/configFromQuery/ConfigFromQueryTransformerEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Update public/app/core/components/TransformersUI/prepareTimeSeries/PrepareTimeSeriesEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> * Docs: Variants instead of varients * Update public/app/core/components/TransformersUI/configFromQuery/ConfigFromQueryTransformerEditor.tsx Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com> Co-authored-by: Ursula Kallio <73951760+osg-grafana@users.noreply.github.com>
61 lines
2.1 KiB
TypeScript
61 lines
2.1 KiB
TypeScript
import React, { PureComponent } from 'react';
|
|
import { SelectableValue, QueryEditorProps } from '@grafana/data';
|
|
import { InlineField, Select } from '@grafana/ui';
|
|
import { ExpressionDatasourceApi } from './ExpressionDatasource';
|
|
import { Resample } from './components/Resample';
|
|
import { Reduce } from './components/Reduce';
|
|
import { Math } from './components/Math';
|
|
import { ClassicConditions } from './components/ClassicConditions';
|
|
import { getDefaults } from './utils/expressionTypes';
|
|
import { ExpressionQuery, ExpressionQueryType, gelTypes } from './types';
|
|
|
|
type Props = QueryEditorProps<ExpressionDatasourceApi, ExpressionQuery>;
|
|
|
|
const labelWidth = 14;
|
|
export class ExpressionQueryEditor extends PureComponent<Props> {
|
|
onSelectExpressionType = (item: SelectableValue<ExpressionQueryType>) => {
|
|
const { query, onChange } = this.props;
|
|
|
|
onChange(getDefaults({ ...query, type: item.value! }));
|
|
};
|
|
|
|
renderExpressionType() {
|
|
const { onChange, query, queries } = this.props;
|
|
const refIds = queries!.filter((q) => query.refId !== q.refId).map((q) => ({ value: q.refId, label: q.refId }));
|
|
|
|
switch (query.type) {
|
|
case ExpressionQueryType.math:
|
|
return <Math onChange={onChange} query={query} labelWidth={labelWidth} />;
|
|
|
|
case ExpressionQueryType.reduce:
|
|
return <Reduce refIds={refIds} onChange={onChange} labelWidth={labelWidth} query={query} />;
|
|
|
|
case ExpressionQueryType.resample:
|
|
return <Resample query={query} labelWidth={labelWidth} onChange={onChange} refIds={refIds} />;
|
|
|
|
case ExpressionQueryType.classic:
|
|
return <ClassicConditions onChange={onChange} query={query} refIds={refIds} />;
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const { query } = this.props;
|
|
const selected = gelTypes.find((o) => o.value === query.type);
|
|
|
|
return (
|
|
<div>
|
|
<InlineField label="Operation" labelWidth={labelWidth}>
|
|
<Select
|
|
menuShouldPortal
|
|
options={gelTypes}
|
|
value={selected}
|
|
onChange={this.onSelectExpressionType}
|
|
width={25}
|
|
/>
|
|
</InlineField>
|
|
{this.renderExpressionType()}
|
|
</div>
|
|
);
|
|
}
|
|
}
|