| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- // Libraries
- import _ from 'lodash';
- // Types
- import { Emitter } from 'app/core/utils/emitter';
- import { DataQuery, TimeSeries, Threshold, ScopedVars, PanelTypeChangedHook } from '@grafana/ui';
- import { TableData } from '@grafana/ui/src';
- import { getNextQueryLetter } from '../../../core/utils/query';
- export interface GridPos {
- x: number;
- y: number;
- w: number;
- h: number;
- static?: boolean;
- }
- const notPersistedProperties: { [str: string]: boolean } = {
- events: true,
- fullscreen: true,
- isEditing: true,
- hasRefreshed: true,
- cachedPluginOptions: true,
- };
- // For angular panels we need to clean up properties when changing type
- // To make sure the change happens without strange bugs happening when panels use same
- // named property with different type / value expectations
- // This is not required for react panels
- const mustKeepProps: { [str: string]: boolean } = {
- id: true,
- gridPos: true,
- type: true,
- title: true,
- scopedVars: true,
- repeat: true,
- repeatIteration: true,
- repeatPanelId: true,
- repeatDirection: true,
- repeatedByRow: true,
- minSpan: true,
- collapsed: true,
- panels: true,
- targets: true,
- datasource: true,
- timeFrom: true,
- timeShift: true,
- hideTimeOverride: true,
- description: true,
- links: true,
- fullscreen: true,
- isEditing: true,
- hasRefreshed: true,
- events: true,
- cacheTimeout: true,
- cachedPluginOptions: true,
- transparent: true,
- };
- const defaults: any = {
- gridPos: { x: 0, y: 0, h: 3, w: 6 },
- datasource: null,
- targets: [{ refId: 'A' }],
- cachedPluginOptions: {},
- transparent: false,
- };
- export class PanelModel {
- id: number;
- gridPos: GridPos;
- type: string;
- title: string;
- alert?: any;
- scopedVars?: ScopedVars;
- repeat?: string;
- repeatIteration?: number;
- repeatPanelId?: number;
- repeatDirection?: string;
- repeatedByRow?: boolean;
- maxPerRow?: number;
- collapsed?: boolean;
- panels?: any;
- soloMode?: boolean;
- targets: DataQuery[];
- datasource: string;
- thresholds?: any;
- snapshotData?: TimeSeries[] | [TableData];
- timeFrom?: any;
- timeShift?: any;
- hideTimeOverride?: any;
- options: {
- [key: string]: any;
- };
- maxDataPoints?: number;
- interval?: string;
- description?: string;
- links?: [];
- transparent: boolean;
- // non persisted
- fullscreen: boolean;
- isEditing: boolean;
- hasRefreshed: boolean;
- events: Emitter;
- cacheTimeout?: any;
- cachedPluginOptions?: any;
- legend?: { show: boolean };
- constructor(model) {
- this.events = new Emitter();
- // copy properties from persisted model
- for (const property in model) {
- this[property] = model[property];
- }
- // defaults
- _.defaultsDeep(this, _.cloneDeep(defaults));
- // queries must have refId
- this.ensureQueryIds();
- this.restoreInfintyForThresholds();
- }
- ensureQueryIds() {
- if (this.targets) {
- for (const query of this.targets) {
- if (!query.refId) {
- query.refId = getNextQueryLetter(this.targets);
- }
- }
- }
- }
- restoreInfintyForThresholds() {
- if (this.options && this.options.thresholds) {
- this.options.thresholds = this.options.thresholds.map((threshold: Threshold) => {
- // JSON serialization of -Infinity is 'null' so lets convert it back to -Infinity
- if (threshold.index === 0 && threshold.value === null) {
- return { ...threshold, value: -Infinity };
- }
- return threshold;
- });
- }
- }
- getOptions(panelDefaults) {
- return _.defaultsDeep(this.options || {}, panelDefaults);
- }
- updateOptions(options: object) {
- this.options = options;
- this.render();
- }
- getSaveModel() {
- const model: any = {};
- for (const property in this) {
- if (notPersistedProperties[property] || !this.hasOwnProperty(property)) {
- continue;
- }
- if (_.isEqual(this[property], defaults[property])) {
- continue;
- }
- model[property] = _.cloneDeep(this[property]);
- }
- return model;
- }
- setViewMode(fullscreen: boolean, isEditing: boolean) {
- this.fullscreen = fullscreen;
- this.isEditing = isEditing;
- this.events.emit('view-mode-changed');
- }
- updateGridPos(newPos: GridPos) {
- let sizeChanged = false;
- if (this.gridPos.w !== newPos.w || this.gridPos.h !== newPos.h) {
- sizeChanged = true;
- }
- this.gridPos.x = newPos.x;
- this.gridPos.y = newPos.y;
- this.gridPos.w = newPos.w;
- this.gridPos.h = newPos.h;
- if (sizeChanged) {
- this.events.emit('panel-size-changed');
- }
- }
- resizeDone() {
- this.events.emit('panel-size-changed');
- }
- refresh() {
- this.hasRefreshed = true;
- this.events.emit('refresh');
- }
- render() {
- if (!this.hasRefreshed) {
- this.refresh();
- } else {
- this.events.emit('render');
- }
- }
- initialized() {
- this.events.emit('panel-initialized');
- }
- private getOptionsToRemember() {
- return Object.keys(this).reduce((acc, property) => {
- if (notPersistedProperties[property] || mustKeepProps[property]) {
- return acc;
- }
- return {
- ...acc,
- [property]: this[property],
- };
- }, {});
- }
- private restorePanelOptions(pluginId: string) {
- const prevOptions = this.cachedPluginOptions[pluginId] || {};
- Object.keys(prevOptions).map(property => {
- this[property] = prevOptions[property];
- });
- }
- changeType(pluginId: string, hook?: PanelTypeChangedHook) {
- const oldOptions: any = this.getOptionsToRemember();
- const oldPluginId = this.type;
- this.type = pluginId;
- // remove panel type specific options
- for (const key of _.keys(this)) {
- if (mustKeepProps[key]) {
- continue;
- }
- delete this[key];
- }
- this.cachedPluginOptions[oldPluginId] = oldOptions;
- this.restorePanelOptions(pluginId);
- // Callback that can validate and migrate any existing settings
- if (hook) {
- this.options = this.options || {};
- const old = oldOptions ? oldOptions.options : null;
- Object.assign(this.options, hook(this.options, oldPluginId, old));
- }
- }
- addQuery(query?: Partial<DataQuery>) {
- query = query || { refId: 'A' };
- query.refId = getNextQueryLetter(this.targets);
- this.targets.push(query as DataQuery);
- }
- changeQuery(query: DataQuery, index: number) {
- // ensure refId is maintained
- query.refId = this.targets[index].refId;
- // update query in array
- this.targets = this.targets.map((item, itemIndex) => {
- if (itemIndex === index) {
- return query;
- }
- return item;
- });
- }
- destroy() {
- this.events.emit('panel-teardown');
- this.events.removeAllListeners();
- }
- }
|