summaryrefslogtreecommitdiff
path: root/client/js/controllers/home/home.js
blob: 3332a10a485efd6221d7ebf030b60d4e8b87c9e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/**
 * The home controller
 * 
 * @param {$scope} $scope The $scope service from angular
 */
mainApp.controller('homeCtrl', [ '$scope', 'Compute', '$rootScope', 'Loading','Identity', 'Image', function ($scope, Compute, $rootScope, Loading, Identity, Image)
{

	var callMeAfterPullData=function(data){
		$scope.machines=Compute.getData().machines;
		Loading.stop();
	}

	;
	if(Compute.getData().machines == null && Identity.isAlreadyLogin()){
		Loading.start();
		Compute.pullData(callMeAfterPullData);		
	}
	else{
		if(Identity.isAlreadyLogin()){
			callMeAfterPullData();
		}
	}


	Image.getImages(function(){});



	$scope.raiseShowMachineDetailsEvent=function(id){

		var callback=function(){
			Loading.stop();
			var data=Compute.getData();
			$rootScope.$broadcast("showMachineDetailsEvent", data.machines[id], data.axioms);		

		}
		Loading.start();
		Compute.pullMachines(callback);
	}




	
	if(Identity.isAlreadyLogin()){
		if(Compute.getData().machines == null{
			Loading.start();
			Compute.pullData(callMeAfterPullData);		
		}
		   else{
			   if(Identity.isAlreadyLogin()){
				   callMeAfterPullData();
			   }
		   }
		   Image.getImages(function(){});
		  }

}]);