123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- import $ from 'jquery';
- import { defaults } from 'lodash';
- import { ComponentType } from 'react';
- import { isTableData, PanelEvents, PanelPlugin, PanelProps } from '@grafana/data';
- import config from 'app/core/config';
- import { applyFilterFromTable } from 'app/features/variables/adhoc/actions';
- import { MetricsPanelCtrl } from 'app/plugins/sdk';
- import { dispatch } from 'app/store/store';
- import { columnOptionsTab } from './column_options';
- import { tablePanelEditor } from './editor';
- import { TableRenderer } from './renderer';
- import { transformDataToTable } from './transformers';
- export class TablePanelCtrl extends MetricsPanelCtrl {
- static templateUrl = 'module.html';
- pageIndex: number;
- dataRaw: any;
- table: any;
- renderer: any;
- panelHasRowColorMode: boolean;
- panelHasLinks: boolean;
- panelDefaults: any = {
- targets: [{}],
- transform: 'timeseries_to_columns',
- pageSize: null,
- showHeader: true,
- styles: [
- {
- type: 'date',
- pattern: 'Time',
- alias: 'Time',
- dateFormat: 'YYYY-MM-DD HH:mm:ss',
- align: 'auto',
- },
- {
- unit: 'short',
- type: 'number',
- alias: '',
- decimals: 2,
- colors: ['rgba(245, 54, 54, 0.9)', 'rgba(237, 129, 40, 0.89)', 'rgba(50, 172, 45, 0.97)'],
- colorMode: null,
- pattern: '/.*/',
- thresholds: [],
- align: 'right',
- },
- ],
- columns: [],
- fontSize: '100%',
- sort: { col: 0, desc: true },
- };
- /** @ngInject */
- constructor($scope: any, $injector: any, private annotationsSrv: any, private $sanitize: any) {
- super($scope, $injector);
- this.pageIndex = 0;
- if (this.panel.styles === void 0) {
- this.panel.styles = this.panel.columns;
- this.panel.columns = this.panel.fields;
- delete this.panel.columns;
- delete this.panel.fields;
- }
- defaults(this.panel, this.panelDefaults);
- this.panelHasRowColorMode = Boolean(this.panel.styles.find((style: any) => style.colorMode === 'row'));
- this.panelHasLinks = Boolean(this.panel.styles.find((style: any) => style.link));
- this.events.on(PanelEvents.dataReceived, this.onDataReceived.bind(this));
- this.events.on(PanelEvents.dataSnapshotLoad, this.onDataReceived.bind(this));
- this.events.on(PanelEvents.editModeInitialized, this.onInitEditMode.bind(this));
- }
- onInitEditMode() {
- this.addEditorTab('Options', tablePanelEditor, 2);
- this.addEditorTab('Column Styles', columnOptionsTab, 3);
- }
- migrateToPanel(type: string) {
- this.onPluginTypeChange(config.panels[type]);
- }
- issueQueries(datasource: any) {
- this.pageIndex = 0;
- if (this.panel.transform === 'annotations') {
- return this.annotationsSrv
- .getAnnotations({
- dashboard: this.dashboard,
- panel: this.panel,
- range: this.range,
- })
- .then((anno: any) => {
- this.loading = false;
- this.dataRaw = anno;
- this.pageIndex = 0;
- this.render();
- return { data: this.dataRaw }; // Not used
- });
- }
- return super.issueQueries(datasource);
- }
- onDataReceived(dataList: any) {
- this.dataRaw = dataList;
- this.pageIndex = 0;
- // automatically correct transform mode based on data
- if (this.dataRaw && this.dataRaw.length) {
- if (isTableData(this.dataRaw[0])) {
- this.panel.transform = 'table';
- } else {
- if (this.dataRaw[0].type === 'docs') {
- this.panel.transform = 'json';
- } else {
- if (this.panel.transform === 'table' || this.panel.transform === 'json') {
- this.panel.transform = 'timeseries_to_rows';
- }
- }
- }
- }
- this.render();
- }
- render() {
- this.table = transformDataToTable(this.dataRaw, this.panel);
- this.table.sort(this.panel.sort);
- this.renderer = new TableRenderer(
- this.panel,
- this.table,
- this.dashboard.getTimezone(),
- this.$sanitize,
- this.templateSrv,
- config.theme
- );
- return super.render(this.table);
- }
- toggleColumnSort(col: any, colIndex: any) {
- // remove sort flag from current column
- if (this.table.columns[this.panel.sort.col]) {
- this.table.columns[this.panel.sort.col].sort = false;
- }
- if (this.panel.sort.col === colIndex) {
- if (this.panel.sort.desc) {
- this.panel.sort.desc = false;
- } else {
- this.panel.sort.col = null;
- }
- } else {
- this.panel.sort.col = colIndex;
- this.panel.sort.desc = true;
- }
- this.render();
- }
- link(scope: any, elem: JQuery, attrs: any, ctrl: TablePanelCtrl) {
- let data: any;
- const panel = ctrl.panel;
- let pageCount = 0;
- function getTableHeight() {
- let panelHeight = ctrl.height;
- if (pageCount > 1) {
- panelHeight -= 26;
- }
- return panelHeight - 31 + 'px';
- }
- function appendTableRows(tbodyElem: JQuery) {
- ctrl.renderer.setTable(data);
- tbodyElem.empty();
- tbodyElem.html(ctrl.renderer.render(ctrl.pageIndex));
- }
- function switchPage(e: any) {
- const el = $(e.currentTarget);
- ctrl.pageIndex = parseInt(el.text(), 10) - 1;
- renderPanel();
- }
- function appendPaginationControls(footerElem: JQuery) {
- footerElem.empty();
- const pageSize = panel.pageSize || 100;
- pageCount = Math.ceil(data.rows.length / pageSize);
- if (pageCount === 1) {
- return;
- }
- const startPage = Math.max(ctrl.pageIndex - 3, 0);
- const endPage = Math.min(pageCount, startPage + 9);
- const paginationList = $('<ul></ul>');
- for (let i = startPage; i < endPage; i++) {
- const activeClass = i === ctrl.pageIndex ? 'active' : '';
- const pageLinkElem = $(
- '<li><a class="table-panel-page-link pointer ' + activeClass + '">' + (i + 1) + '</a></li>'
- );
- paginationList.append(pageLinkElem);
- }
- footerElem.append(paginationList);
- }
- function renderPanel() {
- const panelElem = elem.parents('.panel-content');
- const rootElem = elem.find('.table-panel-scroll');
- const tbodyElem = elem.find('tbody');
- const footerElem = elem.find('.table-panel-footer');
- elem.css({ 'font-size': panel.fontSize });
- panelElem.addClass('table-panel-content');
- appendTableRows(tbodyElem);
- appendPaginationControls(footerElem);
- rootElem.css({ 'max-height': getTableHeight() });
- }
- // hook up link tooltips
- elem.tooltip({
- selector: '[data-link-tooltip]',
- });
- function addFilterClicked(e: any) {
- const filterData = $(e.currentTarget).data();
- const options = {
- datasource: panel.datasource,
- key: data.columns[filterData.column].text,
- value: data.rows[filterData.row][filterData.column],
- operator: filterData.operator,
- };
- dispatch(applyFilterFromTable(options));
- }
- elem.on('click', '.table-panel-page-link', switchPage);
- elem.on('click', '.table-panel-filter-link', addFilterClicked);
- const unbindDestroy = scope.$on('$destroy', () => {
- elem.off('click', '.table-panel-page-link');
- elem.off('click', '.table-panel-filter-link');
- unbindDestroy();
- });
- ctrl.events.on(PanelEvents.render, (renderData: any) => {
- data = renderData || data;
- if (data) {
- renderPanel();
- }
- ctrl.renderingCompleted();
- });
- }
- }
- export const plugin = new PanelPlugin(null as unknown as ComponentType<PanelProps<any>>);
- plugin.angularPanelCtrl = TablePanelCtrl;
- plugin.setNoPadding();
|