grafana/public/app/plugins/panel/table-old/editor.ts
Josh Hunt 3c6e0e8ef8
Chore: ESlint import order (#44959)
* 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
2022-04-22 14:33:13 +01:00

102 lines
2.7 KiB
TypeScript

import { find, map, without } from 'lodash';
import { transformers } from './transformers';
import { ColumnStyle } from './types';
export class TablePanelEditorCtrl {
panel: any;
panelCtrl: any;
transformers: any;
fontSizes: any;
addColumnSegment: any;
getColumnNames: any;
canSetColumns = false;
columnsHelpMessage = '';
/** @ngInject */
constructor($scope: any, private uiSegmentSrv: any) {
$scope.editor = this;
this.panelCtrl = $scope.ctrl;
this.panel = this.panelCtrl.panel;
this.transformers = transformers;
this.fontSizes = ['80%', '90%', '100%', '110%', '120%', '130%', '150%', '160%', '180%', '200%', '220%', '250%'];
this.addColumnSegment = uiSegmentSrv.newPlusButton();
this.updateTransformHints();
}
updateTransformHints() {
this.canSetColumns = false;
this.columnsHelpMessage = '';
switch (this.panel.transform) {
case 'timeseries_aggregations': {
this.canSetColumns = true;
break;
}
case 'json': {
this.canSetColumns = true;
break;
}
case 'table': {
this.columnsHelpMessage = 'Columns and their order are determined by the data query';
}
}
}
getColumnOptions() {
if (!this.panelCtrl.dataRaw) {
return Promise.resolve([]);
}
const columns = this.transformers[this.panel.transform].getColumns(this.panelCtrl.dataRaw);
const segments = map(columns, (c: any) => this.uiSegmentSrv.newSegment({ value: c.text }));
return Promise.resolve(segments);
}
addColumn() {
const columns = transformers[this.panel.transform].getColumns(this.panelCtrl.dataRaw);
const column: any = find(columns, { text: this.addColumnSegment.value });
if (column) {
this.panel.columns.push(column);
this.render();
}
const plusButton = this.uiSegmentSrv.newPlusButton();
this.addColumnSegment.html = plusButton.html;
this.addColumnSegment.value = plusButton.value;
}
transformChanged() {
this.panel.columns = [];
if (this.panel.transform === 'annotations') {
this.panelCtrl.refresh();
} else {
if (this.panel.transform === 'timeseries_aggregations') {
this.panel.columns.push({ text: 'Avg', value: 'avg' });
}
this.updateTransformHints();
this.render();
}
}
render() {
this.panelCtrl.render();
}
removeColumn(column: ColumnStyle) {
this.panel.columns = without(this.panel.columns, column);
this.panelCtrl.render();
}
}
export function tablePanelEditor(uiSegmentSrv: any) {
'use strict';
return {
restrict: 'E',
scope: true,
templateUrl: 'public/app/plugins/panel/table-old/editor.html',
controller: TablePanelEditorCtrl,
};
}