mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Add uid to datasource * Fix uid passing when provisioning * Better error handling and Uid column type change * Fix test and strict null error counts * Add backend tests * Add tests * Fix strict null checks * Update test * Improve tests * Update pkg/services/sqlstore/datasource.go Co-Authored-By: Arve Knudsen <arve.knudsen@gmail.com> * Variable rename Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
68 lines
1.8 KiB
TypeScript
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, LegacyForms } from '@grafana/ui';
|
|
const { Select } = LegacyForms;
|
|
import { QueryEditorProps, SelectableValue } from '@grafana/data';
|
|
|
|
// Types
|
|
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 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>
|
|
);
|
|
}
|
|
}
|