Commit 8fb0692d by Torkel Ödegaard

Merge remote-tracking branch 'origin/migrate-dashboard-files-to-ts'

parents 7e555091 972c3bc6
import './dashboard_ctrl'; import './dashboard_ctrl';
import './alerting_srv'; import './alerting_srv';
import './history/history'; import './history/history';
import './dashboardLoaderSrv'; import './dashboard_loader_srv';
import './dashnav/dashnav'; import './dashnav/dashnav';
import './submenu/submenu'; import './submenu/submenu';
import './save_as_modal'; import './save_as_modal';
import './save_modal'; import './save_modal';
import './shareModalCtrl'; import './shareModalCtrl';
import './shareSnapshotCtrl'; import './share_snapshot_ctrl';
import './dashboard_srv'; import './dashboard_srv';
import './view_state_srv'; import './view_state_srv';
import './validation_srv'; import './validation_srv';
import './time_srv'; import './time_srv';
import './unsavedChangesSrv'; import './unsaved_changes_srv';
import './unsaved_changes_modal'; import './unsaved_changes_modal';
import './timepicker/timepicker'; import './timepicker/timepicker';
import './upload'; import './upload';
......
define([
'angular',
'moment',
'lodash',
'jquery',
'app/core/utils/kbn',
'app/core/utils/datemath',
'app/core/services/impression_srv'
],
function (angular, moment, _, $, kbn, dateMath, impressionSrv) {
'use strict';
kbn = kbn.default;
impressionSrv = impressionSrv.default;
var module = angular.module('grafana.services');
module.service('dashboardLoaderSrv', function(backendSrv,
dashboardSrv,
datasourceSrv,
$http, $q, $timeout,
contextSrv, $routeParams,
$rootScope) {
var self = this;
this._dashboardLoadFailed = function(title, snapshot) {
snapshot = snapshot || false;
return {
meta: { canStar: false, isSnapshot: snapshot, canDelete: false, canSave: false, canEdit: false, dashboardNotFound: true },
dashboard: {title: title }
};
};
this.loadDashboard = function(type, slug) {
var promise;
if (type === 'script') {
promise = this._loadScriptedDashboard(slug);
} else if (type === 'snapshot') {
promise = backendSrv.get('/api/snapshots/' + $routeParams.slug)
.catch(function() {
return self._dashboardLoadFailed("Snapshot not found", true);
});
} else {
promise = backendSrv.getDashboard($routeParams.type, $routeParams.slug)
.then(function(result) {
if (result.meta.isFolder) {
$rootScope.appEvent("alert-error", ['Dashboard not found']);
throw new Error("Dashboard not found");
}
return result;
})
.catch(function() {
return self._dashboardLoadFailed("Not found");
});
}
promise.then(function(result) {
if (result.meta.dashboardNotFound !== true) {
impressionSrv.addDashboardImpression(result.dashboard.id);
}
return result;
});
return promise;
};
this._loadScriptedDashboard = function(file) {
var url = 'public/dashboards/'+file.replace(/\.(?!js)/,"/") + '?' + new Date().getTime();
return $http({ url: url, method: "GET" })
.then(this._executeScript).then(function(result) {
return { meta: { fromScript: true, canDelete: false, canSave: false, canStar: false}, dashboard: result.data };
}, function(err) {
console.log('Script dashboard error '+ err);
$rootScope.appEvent('alert-error', ["Script Error", "Please make sure it exists and returns a valid dashboard"]);
return self._dashboardLoadFailed('Scripted dashboard');
});
};
this._executeScript = function(result) {
var services = {
dashboardSrv: dashboardSrv,
datasourceSrv: datasourceSrv,
$q: $q,
};
/*jshint -W054 */
var script_func = new Function('ARGS','kbn','dateMath','_','moment','window','document','$','jQuery', 'services', result.data);
var script_result = script_func($routeParams, kbn, dateMath, _ , moment, window, document, $, $, services);
// Handle async dashboard scripts
if (_.isFunction(script_result)) {
var deferred = $q.defer();
script_result(function(dashboard) {
$timeout(function() {
deferred.resolve({ data: dashboard });
});
});
return deferred.promise;
}
return { data: script_result };
};
});
});
import angular from 'angular';
import moment from 'moment';
import _ from 'lodash';
import $ from 'jquery';
import kbn from 'app/core/utils/kbn';
import * as dateMath from 'app/core/utils/datemath';
import impressionSrv from 'app/core/services/impression_srv';
export class DashboardLoaderSrv {
/** @ngInject */
constructor(
private backendSrv,
private dashboardSrv,
private datasourceSrv,
private $http,
private $q,
private $timeout,
contextSrv,
private $routeParams,
private $rootScope
) {}
_dashboardLoadFailed(title, snapshot) {
snapshot = snapshot || false;
return {
meta: {
canStar: false,
isSnapshot: snapshot,
canDelete: false,
canSave: false,
canEdit: false,
dashboardNotFound: true,
},
dashboard: { title: title },
};
}
loadDashboard(type, slug) {
var promise;
if (type === 'script') {
promise = this._loadScriptedDashboard(slug);
} else if (type === 'snapshot') {
promise = this.backendSrv.get('/api/snapshots/' + this.$routeParams.slug).catch(() => {
return this._dashboardLoadFailed('Snapshot not found', true);
});
} else {
promise = this.backendSrv
.getDashboard(this.$routeParams.type, this.$routeParams.slug)
.then(result => {
if (result.meta.isFolder) {
this.$rootScope.appEvent('alert-error', ['Dashboard not found']);
throw new Error('Dashboard not found');
}
return result;
})
.catch(() => {
return this._dashboardLoadFailed('Not found', true);
});
}
promise.then(function(result) {
if (result.meta.dashboardNotFound !== true) {
impressionSrv.addDashboardImpression(result.dashboard.id);
}
return result;
});
return promise;
}
_loadScriptedDashboard(file) {
var url = 'public/dashboards/' + file.replace(/\.(?!js)/, '/') + '?' + new Date().getTime();
return this.$http({ url: url, method: 'GET' })
.then(this._executeScript)
.then(
function(result) {
return {
meta: {
fromScript: true,
canDelete: false,
canSave: false,
canStar: false,
},
dashboard: result.data,
};
},
function(err) {
console.log('Script dashboard error ' + err);
this.$rootScope.appEvent('alert-error', [
'Script Error',
'Please make sure it exists and returns a valid dashboard',
]);
return this._dashboardLoadFailed('Scripted dashboard');
}
);
}
_executeScript(result) {
var services = {
dashboardSrv: this.dashboardSrv,
datasourceSrv: this.datasourceSrv,
$q: this.$q,
};
/*jshint -W054 */
var script_func = new Function(
'ARGS',
'kbn',
'dateMath',
'_',
'moment',
'window',
'document',
'$',
'jQuery',
'services',
result.data
);
var script_result = script_func(this.$routeParams, kbn, dateMath, _, moment, window, document, $, $, services);
// Handle async dashboard scripts
if (_.isFunction(script_result)) {
var deferred = this.$q.defer();
script_result(dashboard => {
this.$timeout(() => {
deferred.resolve({ data: dashboard });
});
});
return deferred.promise;
}
return { data: script_result };
}
}
angular.module('grafana.services').service('dashboardLoaderSrv', DashboardLoaderSrv);
define([ import angular from 'angular';
'angular', import _ from 'lodash';
'lodash',
],
function (angular, _) {
'use strict';
var module = angular.module('grafana.controllers');
module.controller('ShareSnapshotCtrl', function($scope, $rootScope, $location, backendSrv, $timeout, timeSrv) {
export class ShareSnapshotCtrl {
constructor($scope, $rootScope, $location, backendSrv, $timeout, timeSrv) {
$scope.snapshot = { $scope.snapshot = {
name: $scope.dashboard.title, name: $scope.dashboard.title,
expires: 0, expires: 0,
...@@ -18,16 +12,16 @@ function (angular, _) { ...@@ -18,16 +12,16 @@ function (angular, _) {
$scope.step = 1; $scope.step = 1;
$scope.expireOptions = [ $scope.expireOptions = [
{text: '1 Hour', value: 60*60}, { text: '1 Hour', value: 60 * 60 },
{text: '1 Day', value: 60*60*24}, { text: '1 Day', value: 60 * 60 * 24 },
{text: '7 Days', value: 60*60*24*7}, { text: '7 Days', value: 60 * 60 * 24 * 7 },
{text: 'Never', value: 0}, { text: 'Never', value: 0 },
]; ];
$scope.accessOptions = [ $scope.accessOptions = [
{text: 'Anyone with the link', value: 1}, { text: 'Anyone with the link', value: 1 },
{text: 'Organization users', value: 2}, { text: 'Organization users', value: 2 },
{text: 'Public on the web', value: 3}, { text: 'Public on the web', value: 3 },
]; ];
$scope.init = function() { $scope.init = function() {
...@@ -42,7 +36,7 @@ function (angular, _) { ...@@ -42,7 +36,7 @@ function (angular, _) {
$scope.createSnapshot = function(external) { $scope.createSnapshot = function(external) {
$scope.dashboard.snapshot = { $scope.dashboard.snapshot = {
timestamp: new Date() timestamp: new Date(),
}; };
if (!external) { if (!external) {
...@@ -71,29 +65,32 @@ function (angular, _) { ...@@ -71,29 +65,32 @@ function (angular, _) {
var postUrl = external ? $scope.externalUrl + $scope.apiUrl : $scope.apiUrl; var postUrl = external ? $scope.externalUrl + $scope.apiUrl : $scope.apiUrl;
backendSrv.post(postUrl, cmdData).then(function(results) { backendSrv.post(postUrl, cmdData).then(
$scope.loading = false; function(results) {
$scope.loading = false;
if (external) {
$scope.deleteUrl = results.deleteUrl;
$scope.snapshotUrl = results.url;
$scope.saveExternalSnapshotRef(cmdData, results);
} else {
var url = $location.url();
var baseUrl = $location.absUrl();
if (external) { if (url !== '/') {
$scope.deleteUrl = results.deleteUrl; baseUrl = baseUrl.replace(url, '') + '/';
$scope.snapshotUrl = results.url; }
$scope.saveExternalSnapshotRef(cmdData, results);
} else {
var url = $location.url();
var baseUrl = $location.absUrl();
if (url !== '/') { $scope.snapshotUrl = baseUrl + 'dashboard/snapshot/' + results.key;
baseUrl = baseUrl.replace(url, '') + '/'; $scope.deleteUrl = baseUrl + 'api/snapshots-delete/' + results.deleteKey;
} }
$scope.snapshotUrl = baseUrl + 'dashboard/snapshot/' + results.key; $scope.step = 2;
$scope.deleteUrl = baseUrl + 'api/snapshots-delete/' + results.deleteKey; },
function() {
$scope.loading = false;
} }
);
$scope.step = 2;
}, function() {
$scope.loading = false;
});
}; };
$scope.getSnapshotUrl = function() { $scope.getSnapshotUrl = function() {
...@@ -116,21 +113,22 @@ function (angular, _) { ...@@ -116,21 +113,22 @@ function (angular, _) {
// remove annotation queries // remove annotation queries
dash.annotations.list = _.chain(dash.annotations.list) dash.annotations.list = _.chain(dash.annotations.list)
.filter(function(annotation) { .filter(function(annotation) {
return annotation.enable; return annotation.enable;
}) })
.map(function(annotation) { .map(function(annotation) {
return { return {
name: annotation.name, name: annotation.name,
enable: annotation.enable, enable: annotation.enable,
iconColor: annotation.iconColor, iconColor: annotation.iconColor,
snapshotData: annotation.snapshotData snapshotData: annotation.snapshotData,
}; };
}).value(); })
.value();
// remove template queries // remove template queries
_.each(dash.templating.list, function(variable) { _.each(dash.templating.list, function(variable) {
variable.query = ""; variable.query = '';
variable.options = variable.current; variable.options = variable.current;
variable.refresh = false; variable.refresh = false;
}); });
...@@ -168,7 +166,7 @@ function (angular, _) { ...@@ -168,7 +166,7 @@ function (angular, _) {
cmdData.deleteKey = results.deleteKey; cmdData.deleteKey = results.deleteKey;
backendSrv.post('/api/snapshots/', cmdData); backendSrv.post('/api/snapshots/', cmdData);
}; };
}
}
}); angular.module('grafana.controllers').controller('ShareSnapshotCtrl', ShareSnapshotCtrl);
});
import { describe, beforeEach, it, expect, sinon, angularMocks } from 'test/lib/common'; import { describe, beforeEach, it, expect, sinon, angularMocks } from 'test/lib/common';
import 'app/features/dashboard/unsavedChangesSrv'; import { Tracker } from 'app/features/dashboard/unsaved_changes_srv';
import 'app/features/dashboard/dashboard_srv'; import 'app/features/dashboard/dashboard_srv';
import { contextSrv } from 'app/core/core';
describe('unsavedChangesSrv', function() { describe('unsavedChangesSrv', function() {
var _unsavedChangesSrv;
var _dashboardSrv; var _dashboardSrv;
var _contextSrvStub = { isEditor: true }; var _contextSrvStub = { isEditor: true };
var _rootScope; var _rootScope;
var _location;
var _timeout;
var _window;
var tracker; var tracker;
var dash; var dash;
var scope; var scope;
...@@ -21,10 +24,12 @@ describe('unsavedChangesSrv', function() { ...@@ -21,10 +24,12 @@ describe('unsavedChangesSrv', function() {
); );
beforeEach( beforeEach(
angularMocks.inject(function(unsavedChangesSrv, $location, $rootScope, dashboardSrv) { angularMocks.inject(function($location, $rootScope, dashboardSrv, $timeout, $window) {
_unsavedChangesSrv = unsavedChangesSrv;
_dashboardSrv = dashboardSrv; _dashboardSrv = dashboardSrv;
_rootScope = $rootScope; _rootScope = $rootScope;
_location = $location;
_timeout = $timeout;
_window = $window;
}) })
); );
...@@ -42,7 +47,7 @@ describe('unsavedChangesSrv', function() { ...@@ -42,7 +47,7 @@ describe('unsavedChangesSrv', function() {
scope.appEvent = sinon.spy(); scope.appEvent = sinon.spy();
scope.onAppEvent = sinon.spy(); scope.onAppEvent = sinon.spy();
tracker = new _unsavedChangesSrv.Tracker(dash, scope); tracker = new Tracker(dash, scope, undefined, _location, _window, _timeout, contextSrv, _rootScope);
}); });
it('No changes should not have changes', function() { it('No changes should not have changes', function() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment