Test
This commit is contained in:
parent
8b7ee2ca95
commit
105166c160
3 changed files with 15 additions and 11 deletions
|
@ -144,7 +144,9 @@ mainApp.controller('homeCtrl', ['$scope', 'Compute', '$rootScope', 'Loading', 'I
|
||||||
|
|
||||||
// On user login
|
// On user login
|
||||||
$scope.$on('updateGraphEvent', function () {
|
$scope.$on('updateGraphEvent', function () {
|
||||||
displayMachine()
|
alert("called")
|
||||||
|
|
||||||
|
displayMachine();
|
||||||
});
|
});
|
||||||
//Return a new link linking the parent and child elements with the interfaces names given in parameters
|
//Return a new link linking the parent and child elements with the interfaces names given in parameters
|
||||||
function makeLink(parentElementLabel, childElementLabel, Iparent, Ichild) {
|
function makeLink(parentElementLabel, childElementLabel, Iparent, Ichild) {
|
||||||
|
|
|
@ -7,42 +7,43 @@ mainApp.controller('machineDetailsCtrl', ['$scope', 'Compute', '$rootScope', '$t
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
// Init scope
|
// Init scope
|
||||||
$scope.machine = {};
|
$scope.machine = {};
|
||||||
$scope.machineIsStarting = false; // For loading icon
|
$scope.machineIsStarting = false; // For loading icon
|
||||||
|
|
||||||
// When we need to show details of machine
|
// When we need to show details of machine
|
||||||
$scope.$on('showMachineDetailsEvent', function (eventName, machine, axioms) {
|
$scope.$on('showMachineDetailsEvent', function (eventName, machine, axioms) {
|
||||||
$scope.machine = machine;
|
$scope.machine = machine;
|
||||||
// console.log(machine.flavor)
|
// console.log(machine.flavor)
|
||||||
$scope.axioms = axioms;
|
$scope.axioms = axioms;
|
||||||
$('#machineDetailsModal').modal({backdrop: false, keyboard: true});
|
$('#machineDetailsModal').modal({backdrop: false, keyboard: true});
|
||||||
});
|
});
|
||||||
|
|
||||||
// Try to stop or start a machine
|
// Try to stop or start a machine
|
||||||
$scope.toggleMachineState = function () {
|
$scope.toggleMachineState = function () {
|
||||||
// Display gif
|
// Display gif
|
||||||
$scope.machineIsStarting = true;
|
$scope.machineIsStarting = true;
|
||||||
|
|
||||||
// Fake timeout
|
// Fake timeout
|
||||||
$timeout(function () {
|
$timeout(function () {
|
||||||
$scope.machineIsStarting = false;
|
$scope.machineIsStarting = false;
|
||||||
}, 3000);
|
}, 3000);
|
||||||
$timeout(function () {
|
$timeout(function () {
|
||||||
$scope.machine.online = !$scope.machine.online;
|
$scope.machine.online = !$scope.machine.online;
|
||||||
|
|
||||||
}, 3000);
|
}, 3000);
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Apply modifications
|
// Apply modifications
|
||||||
$scope.applyModifications = function () {
|
$scope.applyModifications = function () {
|
||||||
//Todo
|
//Todo
|
||||||
};
|
};
|
||||||
|
$scope.deleteMachine = function () {
|
||||||
|
var call = function () {
|
||||||
|
Compute.pullData(function () {
|
||||||
|
$rootScope.$broadcast("updateGraphEvent");
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
$scope.deleteMachine=function(){
|
|
||||||
Compute.deleteMachine(function(){Compute.pullData(function(){$rootScope.$broadcast("updateGraphEvent")});},$scope.machine.id);
|
|
||||||
|
Compute.deleteMachine(call, $scope.machine.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
}]);
|
}]);
|
||||||
|
|
|
@ -128,6 +128,7 @@ mainApp.factory('Compute', ['$http', 'Identity', function ($http, Identity) {
|
||||||
|
|
||||||
// Wait and handle the response
|
// Wait and handle the response
|
||||||
result.then(function (response) {
|
result.then(function (response) {
|
||||||
|
|
||||||
callback();
|
callback();
|
||||||
console.log(response.data.Error)
|
console.log(response.data.Error)
|
||||||
}, function (response) {
|
}, function (response) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue