mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
344 lines
9.8 KiB
TypeScript
344 lines
9.8 KiB
TypeScript
import {
|
|
FieldConfigSource,
|
|
GrafanaPlugin,
|
|
PanelEditorProps,
|
|
PanelMigrationHandler,
|
|
PanelOptionEditorsRegistry,
|
|
PanelPluginMeta,
|
|
PanelProps,
|
|
PanelTypeChangedHandler,
|
|
FieldConfigProperty,
|
|
} from '../types';
|
|
import { FieldConfigEditorBuilder, PanelOptionsEditorBuilder } from '../utils/OptionsUIBuilders';
|
|
import { ComponentClass, ComponentType } from 'react';
|
|
import set from 'lodash/set';
|
|
import { deprecationWarning } from '../utils';
|
|
import { FieldConfigOptionsRegistry, standardFieldConfigEditorRegistry } from '../field';
|
|
|
|
export interface SetFieldConfigOptionsArgs<TFieldConfigOptions = any> {
|
|
/**
|
|
* Array of standard field config properties
|
|
*
|
|
* @example
|
|
* ```typescript
|
|
* {
|
|
* standardOptions: [FieldConfigProperty.Min, FieldConfigProperty.Max, FieldConfigProperty.Unit]
|
|
* }
|
|
* ```
|
|
*/
|
|
standardOptions?: FieldConfigProperty[];
|
|
|
|
/**
|
|
* Object specyfing standard option properties default values
|
|
*
|
|
* @example
|
|
* ```typescript
|
|
* {
|
|
* standardOptionsDefaults: {
|
|
* [FieldConfigProperty.Min]: 20,
|
|
* [FieldConfigProperty.Max]: 100
|
|
* }
|
|
* }
|
|
* ```
|
|
*/
|
|
standardOptionsDefaults?: Partial<Record<FieldConfigProperty, any>>;
|
|
|
|
/**
|
|
* Function that allows custom field config properties definition.
|
|
*
|
|
* @param builder
|
|
*
|
|
* @example
|
|
* ```typescript
|
|
* useCustomConfig: builder => {
|
|
* builder
|
|
* .addNumberInput({
|
|
* id: 'shapeBorderWidth',
|
|
* name: 'Border width',
|
|
* description: 'Border width of the shape',
|
|
* settings: {
|
|
* min: 1,
|
|
* max: 5,
|
|
* },
|
|
* })
|
|
* .addSelect({
|
|
* id: 'displayMode',
|
|
* name: 'Display mode',
|
|
* description: 'How the shape shout be rendered'
|
|
* settings: {
|
|
* options: [{value: 'fill', label: 'Fill' }, {value: 'transparent', label: 'Transparent }]
|
|
* },
|
|
* })
|
|
* }
|
|
* ```
|
|
*/
|
|
useCustomConfig?: (builder: FieldConfigEditorBuilder<TFieldConfigOptions>) => void;
|
|
}
|
|
|
|
export class PanelPlugin<TOptions = any, TFieldConfigOptions extends object = any> extends GrafanaPlugin<
|
|
PanelPluginMeta
|
|
> {
|
|
private _defaults?: TOptions;
|
|
private _fieldConfigDefaults: FieldConfigSource<TFieldConfigOptions> = {
|
|
defaults: {},
|
|
overrides: [],
|
|
};
|
|
|
|
private _fieldConfigRegistry?: FieldConfigOptionsRegistry;
|
|
private _initConfigRegistry = () => {
|
|
return new FieldConfigOptionsRegistry();
|
|
};
|
|
|
|
private _optionEditors?: PanelOptionEditorsRegistry;
|
|
private registerOptionEditors?: (builder: PanelOptionsEditorBuilder<TOptions>) => void;
|
|
|
|
panel: ComponentType<PanelProps<TOptions>> | null;
|
|
editor?: ComponentClass<PanelEditorProps<TOptions>>;
|
|
onPanelMigration?: PanelMigrationHandler<TOptions>;
|
|
onPanelTypeChanged?: PanelTypeChangedHandler<TOptions>;
|
|
noPadding?: boolean;
|
|
|
|
/**
|
|
* Legacy angular ctrl. If this exists it will be used instead of the panel
|
|
*/
|
|
angularPanelCtrl?: any;
|
|
|
|
constructor(panel: ComponentType<PanelProps<TOptions>> | null) {
|
|
super();
|
|
this.panel = panel;
|
|
}
|
|
|
|
get defaults() {
|
|
let result = this._defaults || {};
|
|
|
|
if (!this._defaults) {
|
|
const editors = this.optionEditors;
|
|
|
|
if (!editors || editors.list().length === 0) {
|
|
return null;
|
|
}
|
|
|
|
for (const editor of editors.list()) {
|
|
set(result, editor.id, editor.defaultValue);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
get fieldConfigDefaults(): FieldConfigSource<TFieldConfigOptions> {
|
|
const configDefaults = this._fieldConfigDefaults.defaults;
|
|
configDefaults.custom = {} as TFieldConfigOptions;
|
|
|
|
for (const option of this.fieldConfigRegistry.list()) {
|
|
set(configDefaults, option.id, option.defaultValue);
|
|
}
|
|
|
|
return {
|
|
defaults: {
|
|
...configDefaults,
|
|
},
|
|
overrides: this._fieldConfigDefaults.overrides,
|
|
};
|
|
}
|
|
|
|
/**
|
|
* @deprecated setDefaults is deprecated in favor of setPanelOptions
|
|
*/
|
|
setDefaults(defaults: TOptions) {
|
|
deprecationWarning('PanelPlugin', 'setDefaults', 'setPanelOptions');
|
|
this._defaults = defaults;
|
|
return this;
|
|
}
|
|
|
|
get fieldConfigRegistry() {
|
|
if (!this._fieldConfigRegistry) {
|
|
this._fieldConfigRegistry = this._initConfigRegistry();
|
|
}
|
|
|
|
return this._fieldConfigRegistry;
|
|
}
|
|
|
|
get optionEditors() {
|
|
if (!this._optionEditors && this.registerOptionEditors) {
|
|
const builder = new PanelOptionsEditorBuilder<TOptions>();
|
|
this.registerOptionEditors(builder);
|
|
this._optionEditors = builder.getRegistry();
|
|
}
|
|
|
|
return this._optionEditors;
|
|
}
|
|
|
|
setEditor(editor: ComponentClass<PanelEditorProps<TOptions>>) {
|
|
this.editor = editor;
|
|
return this;
|
|
}
|
|
|
|
setNoPadding() {
|
|
this.noPadding = true;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* This function is called before the panel first loads if
|
|
* the current version is different than the version that was saved.
|
|
*
|
|
* This is a good place to support any changes to the options model
|
|
*/
|
|
setMigrationHandler(handler: PanelMigrationHandler) {
|
|
this.onPanelMigration = handler;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* This function is called when the visualization was changed. This
|
|
* passes in the panel model for previous visualisation options inspection
|
|
* and panel model updates.
|
|
*
|
|
* This is useful for supporting PanelModel API updates when changing
|
|
* between Angular and React panels.
|
|
*/
|
|
setPanelChangeHandler(handler: PanelTypeChangedHandler) {
|
|
this.onPanelTypeChanged = handler;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Enables panel options editor creation
|
|
*
|
|
* @example
|
|
* ```typescript
|
|
*
|
|
* import { ShapePanel } from './ShapePanel';
|
|
*
|
|
* interface ShapePanelOptions {}
|
|
*
|
|
* export const plugin = new PanelPlugin<ShapePanelOptions>(ShapePanel)
|
|
* .setPanelOptions(builder => {
|
|
* builder
|
|
* .addSelect({
|
|
* id: 'shape',
|
|
* name: 'Shape',
|
|
* description: 'Select shape to render'
|
|
* settings: {
|
|
* options: [
|
|
* {value: 'circle', label: 'Circle' },
|
|
* {value: 'square', label: 'Square },
|
|
* {value: 'triangle', label: 'Triangle }
|
|
* ]
|
|
* },
|
|
* })
|
|
* })
|
|
* ```
|
|
*
|
|
* @public
|
|
**/
|
|
setPanelOptions(builder: (builder: PanelOptionsEditorBuilder<TOptions>) => void) {
|
|
// builder is applied lazily when options UI is created
|
|
this.registerOptionEditors = builder;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Allows specyfing which standard field config options panel should use and defining default values
|
|
*
|
|
* @example
|
|
* ```typescript
|
|
*
|
|
* import { ShapePanel } from './ShapePanel';
|
|
*
|
|
* interface ShapePanelOptions {}
|
|
*
|
|
* // when plugin should use all standard options
|
|
* export const plugin = new PanelPlugin<ShapePanelOptions>(ShapePanel)
|
|
* .useFieldConfig();
|
|
*
|
|
* // when plugin should only display specific standard options
|
|
* // note, that options will be displayed in the order they are provided
|
|
* export const plugin = new PanelPlugin<ShapePanelOptions>(ShapePanel)
|
|
* .useFieldConfig({
|
|
* standardOptions: [FieldConfigProperty.Min, FieldConfigProperty.Max]
|
|
* });
|
|
*
|
|
* // when standard option's default value needs to be provided
|
|
* export const plugin = new PanelPlugin<ShapePanelOptions>(ShapePanel)
|
|
* .useFieldConfig({
|
|
* standardOptions: [FieldConfigProperty.Min, FieldConfigProperty.Max],
|
|
* standardOptionsDefaults: {
|
|
* [FieldConfigProperty.Min]: 20,
|
|
* [FieldConfigProperty.Max]: 100
|
|
* }
|
|
* });
|
|
*
|
|
* // when custom field config options needs to be provided
|
|
* export const plugin = new PanelPlugin<ShapePanelOptions>(ShapePanel)
|
|
* .useFieldConfig({
|
|
* useCustomConfig: builder => {
|
|
* builder
|
|
* .addNumberInput({
|
|
* id: 'shapeBorderWidth',
|
|
* name: 'Border width',
|
|
* description: 'Border width of the shape',
|
|
* settings: {
|
|
* min: 1,
|
|
* max: 5,
|
|
* },
|
|
* })
|
|
* .addSelect({
|
|
* id: 'displayMode',
|
|
* name: 'Display mode',
|
|
* description: 'How the shape shout be rendered'
|
|
* settings: {
|
|
* options: [{value: 'fill', label: 'Fill' }, {value: 'transparent', label: 'Transparent }]
|
|
* },
|
|
* })
|
|
* },
|
|
* });
|
|
*
|
|
* ```
|
|
*
|
|
* @public
|
|
*/
|
|
useFieldConfig(config?: SetFieldConfigOptionsArgs<TFieldConfigOptions>) {
|
|
// builder is applied lazily when custom field configs are accessed
|
|
this._initConfigRegistry = () => {
|
|
const registry = new FieldConfigOptionsRegistry();
|
|
|
|
// Add custom options
|
|
if (config && config.useCustomConfig) {
|
|
const builder = new FieldConfigEditorBuilder<TFieldConfigOptions>();
|
|
config.useCustomConfig(builder);
|
|
|
|
for (const customProp of builder.getRegistry().list()) {
|
|
customProp.isCustom = true;
|
|
customProp.category = ['Custom field options'].concat(customProp.category || []);
|
|
// need to do something to make the custom items not conflict with standard ones
|
|
// problem is id (registry index) is used as property path
|
|
// so sort of need a property path on the FieldPropertyEditorItem
|
|
customProp.id = 'custom.' + customProp.id;
|
|
registry.register(customProp);
|
|
}
|
|
}
|
|
|
|
if (config && config.standardOptions) {
|
|
for (const standardOption of config.standardOptions) {
|
|
const standardEditor = standardFieldConfigEditorRegistry.get(standardOption);
|
|
registry.register({
|
|
...standardEditor,
|
|
defaultValue:
|
|
(config.standardOptionsDefaults && config.standardOptionsDefaults[standardOption]) ||
|
|
standardEditor.defaultValue,
|
|
});
|
|
}
|
|
} else {
|
|
for (const fieldConfigProp of standardFieldConfigEditorRegistry.list()) {
|
|
registry.register(fieldConfigProp);
|
|
}
|
|
}
|
|
|
|
return registry;
|
|
};
|
|
|
|
return this;
|
|
}
|
|
}
|