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/features/variables/shared/testing/optionsVariableBuilder.ts

35 lines
898 B

import { VariableOption, VariableWithOptions } from 'app/features/variables/types';
import { VariableBuilder } from './variableBuilder';
export class OptionsVariableBuilder<T extends VariableWithOptions> extends VariableBuilder<T> {
withOptions(...texts: string[]) {
this.variable.options = [];
for (let index = 0; index < texts.length; index++) {
this.variable.options.push({
text: texts[index],
value: texts[index],
selected: false,
});
}
return this;
}
withoutOptions() {
this.variable.options = undefined as unknown as VariableOption[];
return this;
}
withCurrent(text: string | string[], value?: string | string[]) {
this.variable.current = {
text,
value: value ?? text,
selected: true,
};
return this;
}
withQuery(query: any) {
this.variable.query = query;
return this;
}
}