summaryrefslogtreecommitdiff
path: root/client/js/controllers/home/home.js
diff options
context:
space:
mode:
authorYoggzo <yogg@epsina.com>2016-03-08 17:30:26 +0100
committerYoggzo <yogg@epsina.com>2016-03-08 17:30:26 +0100
commit89f2c4ac8cd6b0f7766170d588eae2407124f8fc (patch)
tree6275b180b1c1f45caba3e84437119f784f5ebfba /client/js/controllers/home/home.js
parent66baa3ffc8bd119558eeb1e87cb05c6008df9d6f (diff)
parent3b569b6d008d5b1936ee04948cf5c1cc08790f39 (diff)
Merge branch 'develop' into Evan
Diffstat (limited to 'client/js/controllers/home/home.js')
-rw-r--r--client/js/controllers/home/home.js42
1 files changed, 42 insertions, 0 deletions
diff --git a/client/js/controllers/home/home.js b/client/js/controllers/home/home.js
new file mode 100644
index 0000000..4402e62
--- /dev/null
+++ b/client/js/controllers/home/home.js
@@ -0,0 +1,42 @@
+/**
+ * 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);
+ }
+
+
+}]);