summaryrefslogtreecommitdiff
path: root/www/js/BookmarkCtrl.js
blob: b36fae69c8c5380bcabfda282f718bfb974783ab (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* jshint -W041 */
/* jslint browser: true*/
/* global cordova,StatusBar,angular,console, Masonry */

angular.module('zmApp.controllers').controller('zmApp.BookmarkCtrl', ['$scope', '$rootScope', '$ionicModal', 'NVR', '$ionicSideMenuDelegate', '$ionicHistory', '$state', '$translate', '$q', '$templateRequest', '$sce', '$compile', function ($scope, $rootScope, $ionicModal, NVR, $ionicSideMenuDelegate, $ionicHistory, $state, $translate, $q, $templateRequest, $sce, $compile) {
  $scope.openMenu = function () {
    $ionicSideMenuDelegate.toggleLeft();
  };

  //----------------------------------------------------------------
  // Alarm notification handling
  //----------------------------------------------------------------
  $scope.handleAlarms = function () {
    $rootScope.isAlarm = !$rootScope.isAlarm;
    if (!$rootScope.isAlarm) {
      $rootScope.alarmCount = "0";
      $ionicHistory.nextViewOptions({
        disableBack: true
      });
      $state.go("app.events", {
        "id": 0,
        "playEvent": false
      }, {
        reload: true
      });
      return;
    }
  };


  //-------------------------------------------------------------------------
  // Lets make sure we set screen dim properly as we enter
  // The problem is we enter other states before we leave previous states
  // from a callback perspective in ionic, so we really can't predictably
  // reset power state on exit as if it is called after we enter another
  // state, that effectively overwrites current view power management needs
  //------------------------------------------------------------------------
  $scope.$on('$ionicView.beforeEnter', function () {
    //console.log("**VIEW ** Help Ctrl Entered");
    NVR.setAwake(false);

    $scope.bookmarks = [];



    $scope.bookmarks.push({
      text: "Change State",
      state: "app.state",
      params: {
        shortcut: {
          fn: "selectCustomState",
          fnargs: null,
        }
      }
    }, {
      text: "Stop ZM",
      state: "app.state",
      params: {
        shortcut: {
          fn: "controlZM",
          fnargs: 'stop',
        }
      },
    }, {
      text: "Start ZM",
      state: "app.state",
      params: {
        shortcut: {
          fn: "controlZM",
          fnargs: 'start',
        }
      },
    }, {
      text: "Restart ZM",
      state: "app.state",
      params: {
        shortcut: {
          fn: "controlZM",
          fnargs: 'restart',
        }
      },
    });

    $scope.bookmarks.push({
      text: ""
    });


  });

  $scope.action = function (item) {

    $ionicHistory.nextViewOptions({
      historyRoot: true,
      disableAnimate: true,
      expire: 300
    });
    //console.log("GOIN WITH " + JSON.stringify(item.params));
    $state.go(item.state, item.params);
  };

}]);