2016-07-07 18:03:32 +02:00
|
|
|
/*
|
|
|
|
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2016-05-12 12:30:01 +02:00
|
|
|
(function() {
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
angular
|
|
|
|
.module('harbor.layout.dashboard')
|
|
|
|
.controller('DashboardController', DashboardController);
|
|
|
|
|
2016-06-25 21:12:17 +02:00
|
|
|
DashboardController.$inject = ['$scope'];
|
2016-05-12 12:30:01 +02:00
|
|
|
|
2016-06-25 21:12:17 +02:00
|
|
|
function DashboardController($scope) {
|
2016-06-29 08:18:36 +02:00
|
|
|
var vm = this;
|
|
|
|
vm.customBodyHeight = {'height': '165px'};
|
2016-07-01 12:37:17 +02:00
|
|
|
|
|
|
|
//Error message dialog handler for dashboard.
|
|
|
|
$scope.$on('modalTitle', function(e, val) {
|
|
|
|
vm.modalTitle = val;
|
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on('modalMessage', function(e, val) {
|
|
|
|
vm.modalMessage = val;
|
|
|
|
});
|
|
|
|
|
|
|
|
$scope.$on('raiseError', function(e, val) {
|
|
|
|
if(val) {
|
|
|
|
vm.action = function() {
|
|
|
|
$scope.$broadcast('showDialog', false);
|
|
|
|
};
|
|
|
|
vm.contentType = 'text/plain';
|
|
|
|
vm.confirmOnly = true;
|
|
|
|
$scope.$broadcast('showDialog', true);
|
|
|
|
}
|
|
|
|
});
|
2016-05-12 12:30:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
})();
|