Commit b752cfee by Patrick O'Carroll Committed by Torkel Ödegaard

migrated four files to ts, addd some code to config to make it work (#9980)

parent 8ce05a7c
......@@ -17,6 +17,10 @@ class Settings {
alertingEnabled: boolean;
authProxyEnabled: boolean;
ldapEnabled: boolean;
oauth: any;
disableUserSignUp: boolean;
loginHint: any;
loginError: any;
constructor(options) {
var defaults = {
......
define([
'angular',
'../core_module',
'app/core/config',
],
function (angular, coreModule, config) {
'use strict';
import coreModule from '../core_module';
import config from 'app/core/config';
config = config.default;
export class InvitedCtrl {
coreModule.default.controller('InvitedCtrl', function($scope, $routeParams, contextSrv, backendSrv) {
/** @ngInject */
constructor($scope, $routeParams, contextSrv, backendSrv) {
contextSrv.sidemenu = false;
$scope.formModel = {};
......@@ -35,6 +31,7 @@ function (angular, coreModule, config) {
};
$scope.init();
}
}
});
});
coreModule.controller('InvitedCtrl', InvitedCtrl);
define([
'angular',
'lodash',
'../core_module',
'app/core/config',
],
function (angular, _, coreModule, config) {
'use strict';
config = config.default;
coreModule.default.controller('LoginCtrl', function($scope, backendSrv, contextSrv, $location) {
import _ from 'lodash';
import coreModule from '../core_module';
import config from 'app/core/config';
export class LoginCtrl {
/** @ngInject */
constructor($scope, backendSrv, contextSrv, $location) {
$scope.formModel = {
user: '',
email: '',
......@@ -74,8 +70,7 @@ function (angular, _, coreModule, config) {
if (params.redirect && params.redirect[0] === '/') {
window.location.href = config.appSubUrl + params.redirect;
}
else if (result.redirectUrl) {
} else if (result.redirectUrl) {
window.location.href = result.redirectUrl;
} else {
window.location.href = config.appSubUrl + '/';
......@@ -84,5 +79,7 @@ function (angular, _, coreModule, config) {
};
$scope.init();
});
});
}
}
coreModule.controller('LoginCtrl', LoginCtrl);
define(['angular',
'lodash',
'jquery',
'moment',
'app/core/config',
],
function (angular, _, $, moment, config) {
'use strict';
import angular from 'angular';
import moment from 'moment';
import config from 'app/core/config';
config = config.default;
var module = angular.module('grafana.controllers');
module.controller('ShareModalCtrl', function($scope, $rootScope, $location, $timeout, timeSrv, templateSrv, linkSrv) {
export class ShareModalCtrl {
/** @ngInject */
constructor($scope, $rootScope, $location, $timeout, timeSrv, templateSrv, linkSrv) {
$scope.options = { forCurrent: true, includeTemplateVars: true, theme: 'current' };
$scope.editor = { index: $scope.tabIndex || 0};
......@@ -93,7 +86,7 @@ function (angular, _, $, moment, config) {
$scope.getShareUrl = function() {
return $scope.shareUrl;
};
}
}
});
});
angular.module('grafana.controllers').controller('ShareModalCtrl', ShareModalCtrl);
define([
'angular',
'jquery',
],
function (angular, $) {
"use strict";
import angular from 'angular';
import $ from 'jquery';
var module = angular.module('grafana.routes');
module.controller('SoloPanelCtrl', function($scope, $routeParams, $location, dashboardLoaderSrv, contextSrv) {
export class SoloPanelCtrl {
/** @ngInject */
constructor($scope, $routeParams, $location, dashboardLoaderSrv, contextSrv) {
var panelId;
$scope.init = function() {
......@@ -47,5 +43,7 @@ function (angular, $) {
};
$scope.init();
});
});
}
}
angular.module('grafana.routes').controller('SoloPanelCtrl', SoloPanelCtrl);
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