mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 10:50:04 +08:00
74 lines
2.2 KiB
TypeScript
74 lines
2.2 KiB
TypeScript
import { FieldConfigProperty, PanelOptionsEditorBuilder, PanelPlugin } from '@grafana/data';
|
|
import { FrameState } from 'app/features/canvas/runtime/frame';
|
|
|
|
import { CanvasPanel, InstanceState } from './CanvasPanel';
|
|
import { getConnectionEditor } from './editor/connectionEditor';
|
|
import { getElementEditor } from './editor/element/elementEditor';
|
|
import { getLayerEditor } from './editor/layer/layerEditor';
|
|
import { canvasMigrationHandler } from './migrations';
|
|
import { Options } from './models.gen';
|
|
|
|
export const addStandardCanvasEditorOptions = (builder: PanelOptionsEditorBuilder<Options>) => {
|
|
builder.addBooleanSwitch({
|
|
path: 'inlineEditing',
|
|
name: 'Inline editing',
|
|
description: 'Enable editing the panel directly',
|
|
defaultValue: true,
|
|
});
|
|
|
|
builder.addBooleanSwitch({
|
|
path: 'showAdvancedTypes',
|
|
name: 'Experimental element types',
|
|
description: 'Enable selection of experimental element types',
|
|
defaultValue: true,
|
|
});
|
|
};
|
|
|
|
export const plugin = new PanelPlugin<Options>(CanvasPanel)
|
|
.setNoPadding() // extend to panel edges
|
|
.useFieldConfig({
|
|
standardOptions: {
|
|
[FieldConfigProperty.Mappings]: {
|
|
settings: {
|
|
icon: true,
|
|
},
|
|
},
|
|
},
|
|
})
|
|
.setMigrationHandler(canvasMigrationHandler)
|
|
.setPanelOptions((builder, context) => {
|
|
const state: InstanceState = context.instanceState;
|
|
|
|
addStandardCanvasEditorOptions(builder);
|
|
|
|
if (state) {
|
|
builder.addNestedOptions(getLayerEditor(state));
|
|
|
|
const selection = state.selected;
|
|
const connectionSelection = state.selectedConnection;
|
|
|
|
if (selection?.length === 1) {
|
|
const element = selection[0];
|
|
if (!(element instanceof FrameState)) {
|
|
builder.addNestedOptions(
|
|
getElementEditor({
|
|
category: [`Selected element (${element.options.name})`],
|
|
element,
|
|
scene: state.scene,
|
|
})
|
|
);
|
|
}
|
|
}
|
|
|
|
if (connectionSelection) {
|
|
builder.addNestedOptions(
|
|
getConnectionEditor({
|
|
category: ['Selected connection'],
|
|
connection: connectionSelection,
|
|
scene: state.scene,
|
|
})
|
|
);
|
|
}
|
|
}
|
|
});
|