Files
grafana/public/app/plugins/datasource/testdata/QueryEditor.tsx
Torkel Ödegaard 832b67db38 TestData: Query variable support (nested + glob queries) (#18413)
* TestData: added support for nested data source variable queries, and test dashboard

* Added drilldown dashboards

* Fixed typescript issue
2019-08-06 18:17:12 +02:00

68 lines
1.8 KiB
TypeScript

// Libraries
import React, { PureComponent } from 'react';
import _ from 'lodash';
// Services & Utils
import { getBackendSrv } from '@grafana/runtime';
// Components
import { FormLabel, Select } from '@grafana/ui';
import { SelectableValue } from '@grafana/data';
// Types
import { QueryEditorProps } from '@grafana/ui';
import { TestDataDataSource } from './datasource';
import { TestDataQuery, Scenario } from './types';
interface State {
scenarioList: Scenario[];
current: Scenario | null;
}
type Props = QueryEditorProps<TestDataDataSource, TestDataQuery>;
export class QueryEditor extends PureComponent<Props> {
backendSrv = getBackendSrv();
state: State = {
scenarioList: [],
current: null,
};
async componentDidMount() {
const { query, datasource } = this.props;
query.scenarioId = query.scenarioId || 'random_walk';
// const scenarioList = await this.backendSrv.get('/api/tsdb/testdata/scenarios');
const scenarioList = await datasource.getScenarios();
const current: any = _.find(scenarioList, { id: query.scenarioId });
this.setState({ scenarioList: scenarioList, current: current });
}
onScenarioChange = (item: SelectableValue<string>) => {
this.props.onChange({
...this.props.query,
scenarioId: item.value,
});
};
render() {
const { query } = this.props;
const options = this.state.scenarioList.map(item => ({ label: item.name, value: item.id }));
const current = options.find(item => item.value === query.scenarioId);
return (
<div className="gf-form-inline">
<div className="gf-form">
<FormLabel className="query-keyword" width={7}>
Scenario
</FormLabel>
<Select options={options} value={current} onChange={this.onScenarioChange} />
</div>
</div>
);
}
}