Commit for testing
This commit is contained in:
parent
f819bc0c90
commit
0266c16ffc
4 changed files with 32 additions and 24 deletions
|
@ -32,8 +32,8 @@ mainApp.controller('homeCtrl', ['$scope', 'Compute', '$rootScope', 'Loading', 'I
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
$scope.raiseShowMachineCreationEvent = function (){
|
$scope.raiseShowMachineCreationEvent = function () {
|
||||||
$rootScope.$broadcast("showMachineCreationEvent");
|
$rootScope.$broadcast("showMachineCreationEvent", Compute.getData().axioms);
|
||||||
};
|
};
|
||||||
|
|
||||||
// Function to call from view to display the details of a machine
|
// Function to call from view to display the details of a machine
|
||||||
|
|
|
@ -9,8 +9,17 @@ mainApp.controller('machineCreationCtrl', ['$scope', 'Compute', '$rootScope', '$
|
||||||
|
|
||||||
$scope.name = "loic"
|
$scope.name = "loic"
|
||||||
// When we need to show details of machine
|
// When we need to show details of machine
|
||||||
$scope.$on('showMachineCreationEvent', function (eventName) {
|
$scope.$on('showMachineCreationEvent', function (eventName, axioms) {
|
||||||
|
$scope.axioms=axioms;
|
||||||
$('#machineCreationModal').modal({backdrop: false, keyboard: true});
|
$('#machineCreationModal').modal({backdrop: false, keyboard: true});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$scope.createMachine=function(){
|
||||||
|
machine={}
|
||||||
|
machine.name="loicTest"
|
||||||
|
machine.flavorId=1
|
||||||
|
machine.imageId="fd1ea580-a83e-4dc8-833c-96ce2b6f1358"
|
||||||
|
Compute.createMachine(function(){console.log("done")}, machine)
|
||||||
|
};
|
||||||
|
|
||||||
}]);
|
}]);
|
||||||
|
|
|
@ -105,6 +105,21 @@ mainApp.factory('Compute', ['$http', 'Identity', function ($http, Identity) {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var createMachine = function (callback, machine) {
|
||||||
|
// Send listServers request
|
||||||
|
var result = $http.post('../server/index.php',
|
||||||
|
$.param({"token": Identity.getToken(), "task": "compute", "action": "createServer", 'name':machine.name, "imageId":machine.imageId,"flavorId":machine.flavorId}));
|
||||||
|
|
||||||
|
// Wait and handle the response
|
||||||
|
result.then(function (response) {
|
||||||
|
callback();
|
||||||
|
console.log(response.data.Error)
|
||||||
|
}, function (response) {
|
||||||
|
console.log("error")
|
||||||
|
callback();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieve all data
|
* Retrieve all data
|
||||||
|
@ -134,6 +149,7 @@ mainApp.factory('Compute', ['$http', 'Identity', function ($http, Identity) {
|
||||||
return {
|
return {
|
||||||
pullMachines: pullMachines,
|
pullMachines: pullMachines,
|
||||||
pullData: pullData,
|
pullData: pullData,
|
||||||
|
createMachine:createMachine,
|
||||||
getData: getData
|
getData: getData
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -13,24 +13,12 @@
|
||||||
|
|
||||||
<form class="form-horizontal" role="form">
|
<form class="form-horizontal" role="form">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="control-label col-sm-2" for="email">Name</label>
|
<label class="control-label col-sm-2">Name</label>
|
||||||
<div class="col-sm-10">
|
<div class="col-sm-20">
|
||||||
<p class="form-control-static">{{ name}}</p>
|
<input type="text" value="" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
|
||||||
<label class="control-label col-sm-2" for="pwd">State</label>
|
|
||||||
<div class="col-sm-10">
|
|
||||||
<span ng-if="machine.status == 'ACTIVE'">Online</span>
|
|
||||||
<span ng-if="machine.status !== 'ACTIVE'">Offline</span>
|
|
||||||
|
|
||||||
<button class="btn btn-danger" ng-if="machine.status == 'ACTIVE'" ng-click="toggleMachineState()">Turn Off</button>
|
|
||||||
<button class="btn btn-success" ng-if="machine.status !== 'ACTIVE'" ng-click="toggleMachineState()">Turn On</button>
|
|
||||||
<img src="images/spin/32x32/Preloader_1.gif" ng-if="machineIsStarting"></span>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<fieldset class="form-group">
|
<fieldset class="form-group">
|
||||||
<label class="control-label col-sm-2">RAM</label>
|
<label class="control-label col-sm-2">RAM</label>
|
||||||
<select class="col-sm-20" id="ramSelected">
|
<select class="col-sm-20" id="ramSelected">
|
||||||
|
@ -52,17 +40,12 @@
|
||||||
<option ng-repeat="image in axioms.images" ng-selected="machine.imageId == Object.keys(image)">{{ image.name}}</option>
|
<option ng-repeat="image in axioms.images" ng-selected="machine.imageId == Object.keys(image)">{{ image.name}}</option>
|
||||||
</select>
|
</select>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<a href="#" data-dismiss="modal" class="btn btn-primary">Apply</a>
|
<a href="#" data-dismiss="modal" ng-click="createMachine()" class="btn btn-primary">Create</a>
|
||||||
<a href="#" data-dismiss="modal" class="btn btn-default">Cancel</a>
|
<a href="#" data-dismiss="modal" class="btn btn-default">Cancel</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue