| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- define([
- 'angular',
- 'jquery',
- 'kbn',
- 'lodash',
- 'moment',
- '../timer',
- ],
- function (angular, $, kbn, _, moment) {
- 'use strict';
- var module = angular.module('grafana.services');
- module.factory('dashboardSrv', function(timer, $rootScope, $timeout) {
- function DashboardModel (data) {
- if (!data) {
- data = {};
- }
- this.id = data.id || null;
- this.title = data.title || 'No Title';
- this.originalTitle = this.title;
- this.tags = data.tags || [];
- this.style = data.style || "dark";
- this.timezone = data.timezone || 'browser';
- this.editable = data.editble || true;
- this.rows = data.rows || [];
- this.pulldowns = data.pulldowns || [];
- this.nav = data.nav || [];
- this.time = data.time || { from: 'now-6h', to: 'now' };
- this.templating = data.templating || { list: [] };
- this.refresh = data.refresh;
- this.version = data.version || 0;
- if (this.nav.length === 0) {
- this.nav.push({ type: 'timepicker' });
- }
- if (!_.findWhere(this.pulldowns, {type: 'filtering'})) {
- this.pulldowns.push({ type: 'filtering', enable: false });
- }
- if (!_.findWhere(this.pulldowns, {type: 'annotations'})) {
- this.pulldowns.push({ type: 'annotations', enable: false });
- }
- this.updateSchema(data);
- }
- var p = DashboardModel.prototype;
- p.getNextPanelId = function() {
- var i, j, row, panel, max = 0;
- for (i = 0; i < this.rows.length; i++) {
- row = this.rows[i];
- for (j = 0; j < row.panels.length; j++) {
- panel = row.panels[j];
- if (panel.id > max) { max = panel.id; }
- }
- }
- return max + 1;
- };
- p.rowSpan = function(row) {
- return _.reduce(row.panels, function(p,v) {
- return p + v.span;
- },0);
- };
- p.add_panel = function(panel, row) {
- var rowSpan = this.rowSpan(row);
- var panelCount = row.panels.length;
- var space = (12 - rowSpan) - panel.span;
- panel.id = this.getNextPanelId();
- // try to make room of there is no space left
- if (space <= 0) {
- if (panelCount === 1) {
- row.panels[0].span = 6;
- panel.span = 6;
- }
- else if (panelCount === 2) {
- row.panels[0].span = 4;
- row.panels[1].span = 4;
- panel.span = 4;
- }
- }
- row.panels.push(panel);
- };
- p.duplicatePanel = function(panel, row) {
- var rowIndex = _.indexOf(this.rows, row);
- var newPanel = angular.copy(panel);
- newPanel.id = this.getNextPanelId();
- while(rowIndex < this.rows.length) {
- var currentRow = this.rows[rowIndex];
- if (this.rowSpan(currentRow) <= 9) {
- currentRow.panels.push(newPanel);
- return;
- }
- rowIndex++;
- }
- var newRow = angular.copy(row);
- newRow.panels = [newPanel];
- this.rows.push(newRow);
- };
- p.formatDate = function(date, format) {
- format = format || 'YYYY-MM-DD HH:mm:ss';
- return this.timezone === 'browser' ?
- moment(date).format(format) :
- moment.utc(date).format(format);
- };
- p.emit_refresh = function() {
- $rootScope.$broadcast('refresh');
- };
- p.start_scheduled_refresh = function (after_ms) {
- this.cancel_scheduled_refresh();
- this.refresh_timer = timer.register($timeout(function () {
- this.start_scheduled_refresh(after_ms);
- this.emit_refresh();
- }.bind(this), after_ms));
- };
- p.cancel_scheduled_refresh = function () {
- timer.cancel(this.refresh_timer);
- };
- p.set_interval = function (interval) {
- this.refresh = interval;
- if (interval) {
- var _i = kbn.interval_to_ms(interval);
- this.start_scheduled_refresh(_i);
- } else {
- this.cancel_scheduled_refresh();
- }
- };
- p.updateSchema = function(old) {
- var oldVersion = this.version;
- var panelUpgrades = [];
- this.version = 4;
- if (oldVersion === 4) {
- return;
- }
- // version 2 schema changes
- if (oldVersion < 2) {
- if (old.services) {
- if (old.services.filter) {
- this.time = old.services.filter.time;
- this.templating.list = old.services.filter.list;
- }
- delete this.services;
- }
- panelUpgrades.push(function(panel) {
- // rename panel type
- if (panel.type === 'graphite') {
- panel.type = 'graph';
- }
- if (panel.type !== 'graph') {
- return;
- }
- if (_.isBoolean(panel.legend)) { panel.legend = { show: panel.legend }; }
- if (panel.grid) {
- if (panel.grid.min) {
- panel.grid.leftMin = panel.grid.min;
- delete panel.grid.min;
- }
- if (panel.grid.max) {
- panel.grid.leftMax = panel.grid.max;
- delete panel.grid.max;
- }
- }
- if (panel.y_format) {
- panel.y_formats[0] = panel.y_format;
- delete panel.y_format;
- }
- if (panel.y2_format) {
- panel.y_formats[1] = panel.y2_format;
- delete panel.y2_format;
- }
- });
- }
- // schema version 3 changes
- if (oldVersion < 3) {
- // ensure panel ids
- var maxId = this.getNextPanelId();
- panelUpgrades.push(function(panel) {
- if (!panel.id) {
- panel.id = maxId;
- maxId += 1;
- }
- });
- }
- // schema version 4 changes
- if (oldVersion < 4) {
- // move aliasYAxis changes
- panelUpgrades.push(function(panel) {
- if (panel.type !== 'graph') { return; }
- _.each(panel.aliasYAxis, function(value, key) {
- panel.seriesOverrides = [{ alias: key, yaxis: value }];
- });
- delete panel.aliasYAxis;
- });
- }
- if (panelUpgrades.length === 0) {
- return;
- }
- for (var i = 0; i < this.rows.length; i++) {
- var row = this.rows[i];
- for (var j = 0; j < row.panels.length; j++) {
- for (var k = 0; k < panelUpgrades.length; k++) {
- panelUpgrades[k](row.panels[j]);
- }
- }
- }
- };
- return {
- create: function(dashboard) {
- return new DashboardModel(dashboard);
- }
- };
- });
- });
|