mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 13:39:19 -06:00
3c6e0e8ef8
* Add and configure eslint-plugin-import * Fix the lint:ts npm command * Autofix + prettier all the files * Manually fix remaining files * Move jquery code in jest-setup to external file to safely reorder imports * Resolve issue caused by circular dependencies within Prometheus * Update .betterer.results * Fix missing // @ts-ignore * ignore iconBundle.ts * Fix missing // @ts-ignore
29 lines
1.2 KiB
TypeScript
29 lines
1.2 KiB
TypeScript
import { ComponentType } from 'react';
|
|
import { Reducer } from 'redux';
|
|
|
|
import { Registry, UrlQueryValue, VariableType } from '@grafana/data';
|
|
|
|
import { VariableEditorProps } from './editor/types';
|
|
import { VariablePickerProps } from './pickers/types';
|
|
import { VariablesState } from './state/types';
|
|
import { VariableModel, VariableOption } from './types';
|
|
|
|
export interface VariableAdapter<Model extends VariableModel> {
|
|
id: VariableType;
|
|
description: string;
|
|
name: string;
|
|
initialState: Model;
|
|
dependsOn: (variable: Model, variableToTest: Model) => boolean;
|
|
setValue: (variable: Model, option: VariableOption, emitChanges?: boolean) => Promise<void>;
|
|
setValueFromUrl: (variable: Model, urlValue: UrlQueryValue) => Promise<void>;
|
|
updateOptions: (variable: Model, searchFilter?: string) => Promise<void>;
|
|
getSaveModel: (variable: Model, saveCurrentAsDefault?: boolean) => Partial<Model>;
|
|
getValueForUrl: (variable: Model) => string | string[];
|
|
picker: ComponentType<VariablePickerProps<Model>>;
|
|
editor: ComponentType<VariableEditorProps<Model>>;
|
|
reducer: Reducer<VariablesState>;
|
|
beforeAdding?: (model: any) => any;
|
|
}
|
|
|
|
export const variableAdapters = new Registry<VariableAdapter<any>>();
|