summaryrefslogtreecommitdiff
path: root/client/js/controllers/home/machineDetails.js
blob: 78aa5329dbd722aa8aade2eb59a159868d2c3975 (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
/**
 * The home controller
 * 
 * @param {$scope} $scope The $scope service from angular
 */
mainApp.controller('machineDetailsCtrl', ['$scope', 'Compute', '$rootScope', '$timeout', 'Identity', function ($scope, Compute, $rootScope, $timeout, Identity)
    {


// Init scope
        $scope.machine = {};
        $scope.machineIsStarting = false; // For loading icon

        // When we need to show details of machine
        $scope.$on('showMachineDetailsEvent', function (eventName, machine, axioms) {
            $scope.machine = machine;
            // console.log(machine.flavor)
            $scope.axioms = axioms;
            $('#machineDetailsModal').modal({backdrop: false, keyboard: true});
        });
        // Try to stop or start a machine
        $scope.toggleMachineState = function () {
            // Display gif
            $scope.machineIsStarting = true;
            // Fake timeout
            $timeout(function () {
                $scope.machineIsStarting = false;
            }, 3000);
            $timeout(function () {
                $scope.machine.online = !$scope.machine.online;
            }, 3000);
        };
        // Apply modifications
        $scope.applyModifications = function () {
            //Todo
        };
        $scope.deleteMachine = function () {
            var call = function () {
                Compute.pullData(function () {
                    $rootScope.$broadcast("updateGraphEvent");
                });
            }



            Compute.deleteMachine(call, $scope.machine.id);
        }

    }]);