agneta-platform
Version:
Agneta Platform - Integrate and customize business applications
134 lines (107 loc) • 3.27 kB
JavaScript
/* Copyright 2017 Agneta Network Applications, LLC.
*
* Source file: portal/website/source/utility.js
*
* 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.
*/
(function() {
var logLimit = 3000;
agneta.directive('AgUtilityCtrl', function($rootScope, $mdToast, Utility, SocketIO, $parse, $timeout, $q, $mdDialog, $interpolate) {
var vm = this;
vm.logLines = [];
vm.progressBars = {};
vm.runOptions = {};
var socket = SocketIO.connect('utilities');
var utilityName = $rootScope.viewData.extra.name;
var confirm = null;
vm.checkCondition = function(parameter) {
if (parameter.if) {
if (angular.isObject(parameter.if)) {
return $parse(parameter.if.prop)(vm.runOptions) == parameter.if.equals;
}
return $parse(parameter.if)(vm.runOptions);
}
return true;
};
function socketOn(name, cb) {
socket.on(utilityName + ':' + name, cb);
}
Utility.state({
name: utilityName
})
.$promise
.then(function(options) {
vm.parameters = options.parameters;
confirm = options.confirm;
});
socketOn('notify', $rootScope.notify);
socketOn('status', function(data) {
vm.status = data;
$timeout();
});
socketOn('addLine', function(options) {
options[options.type] = true;
vm.addLine(options);
$timeout();
});
socketOn('progress:update', function(data) {
//console.log(data);
vm.progressBars[data.id] = data;
$timeout();
});
vm.run = function() {
$q.resolve()
.then(function() {
if(!confirm){
return;
}
var message = $interpolate(confirm.message)({
parameters: vm.runOptions
});
var confirmOptions = $mdDialog.confirm()
.title(confirm.title || 'Are you sure to proceed?')
.textContent(message)
.ariaLabel('delete object')
.ok('Yes')
.cancel('Cancel');
return $mdDialog.show(confirmOptions);
})
.then(function() {
vm.clear();
vm.log('Starting...');
Utility.start({
name: utilityName,
options: vm.runOptions
});
});
};
vm.clear = function() {
vm.logLines = [];
vm.progressBars = {};
};
vm.log = function(message) {
vm.addLine({
log: true,
message: message
});
};
vm.addLine = function(line) {
vm.logLines.unshift(line);
while (vm.logLines.length > logLimit) {
vm.logLines.pop();
}
};
vm.socket = socket;
vm.log('Click "start" to run the utility...');
});
})();