istic-openstack/client/js/controllers/home/main.js

29 lines
582 B
JavaScript
Raw Normal View History

2016-02-06 12:10:04 +01:00
/**
* The home controller
*
* @param {$scope} $scope The $scope service from angular
2016-01-24 19:19:32 +01:00
*/
2016-02-28 16:07:52 +01:00
mainApp.controller('homeCtrl', [ '$scope', 'Compute', '$rootScope', function ($scope, Compute, $rootScope)
2016-01-24 19:19:32 +01:00
{
2016-03-01 20:51:08 +01:00
var callMeAfterGetMachines=function(data){
$scope.machines=Compute.getData().machines;
}
2016-02-28 16:07:52 +01:00
2016-03-01 20:51:08 +01:00
Compute.pullMachines(callMeAfterGetMachines);
2016-03-01 15:50:57 +01:00
2016-02-28 20:30:57 +01:00
2016-03-01 20:51:08 +01:00
$scope.raiseShowMachineDetailsEvent=function(id){
2016-03-01 15:50:57 +01:00
var callback=function(){
var data=Compute.getData();
2016-03-01 20:51:08 +01:00
$rootScope.$broadcast("showMachineDetailsEvent", data.machines[id]);
2016-03-01 15:50:57 +01:00
}
Compute.pullMachines(callback);
2016-02-28 16:07:52 +01:00
}
2016-02-28 17:54:15 +01:00
2016-02-18 18:06:06 +01:00
}]);