summaryrefslogtreecommitdiffstats
path: root/esr/src/main/webapp/extsys/sdncontroller/js/app.js
blob: 25fb256b44c5ea3874589923d88676c7d26d3871 (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
/*

 Copyright 2017, Huawei Technologies Co., Ltd.

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.

 */

var app = angular.module("ControllerApp", ["ui.router", "ngTable"])

    /*.run(function($rootScope, $location, $state, LoginService) {
     $rootScope.$on("$stateChangeStart", function(event, toState, toParams, fromState, fromParams){
     if (toState.authenticate && !LoginService.isAuthenticated()){
     // User isn’t authenticated
     $state.transitionTo("login");
     event.preventDefault();
     }
     });
     })*/
	.run(function($rootScope, $location, $state, $stateParams) {
        $rootScope.$on('$viewContentLoaded', function() {
            //call it here
            loadTemplate();
        });
    })
    .config(function($stateProvider, $urlRouterProvider, $urlMatcherFactoryProvider) {
        //$routeProvider.caseInsensitiveMatch = true;
        $urlMatcherFactoryProvider.caseInsensitive(true);
        $urlRouterProvider.otherwise('/controller');
        //$locationProvider.html5Mode(true).hashPrefix('!');
        $stateProvider


            .state("controller", {
                url: "/controller",
                templateUrl: "templates/controller.html",
                controller: "controllerCtrl"
            })
    })

    /*-------------------------------------------------------------------------------Controller---------------------------------------------------------------------*/
    .controller("controllerCtrl", function ($scope, controllerDataService, $log, $compile,NgTableParams, $state) {

        $scope.title = "Controller";
        $scope.init = function() {
            controllerDataService.getControllerData()
                .then(function (data) {
                    $scope.data = data;
                    console.log("Data: ");
                    $log.info(data);
                    loadButtons();
                }, function (reason) {
                    $scope.message = "Error is :" + JSON.stringify(reason);
					loadButtons();
                });
        }

        function loadButtons() {
            var def_button_tpl = $(modelTemplate).filter('#defaultButtons').html();
            var def_iconbutton_tpl = $(modelTemplate).filter('#defaultIconButtons').html();
            var dialog = $(modelTemplate).filter('#dialog').html();
            var add_data = {"title":"Create", "type":"btn btn-default", "gType": "plus-icon", "iconPosition":"left", "clickAction":"showAddModal()"};
           // var delete_data = {"title":"Delete Selected", "type":"btn btn-default", "gType": "delete-icon", "iconPosition":"left", "clickAction":"deleteData()"};
            var addhtml = Mustache.to_html(def_iconbutton_tpl, add_data);
            //var deletehtml = Mustache.to_html(def_iconbutton_tpl, delete_data);
            $('#extsysAction').html($compile(addhtml)($scope));
            //$('#extsysAction').append($compile(deletehtml)($scope));


            var modelSubmit_data = {"title":"OK", "clickAction":"saveData(ext.id)"};
            var modelSubmit_html = Mustache.to_html(def_button_tpl, modelSubmit_data);
            $('#myModal #footerBtns').html($compile(modelSubmit_html)($scope));

            var modelBtn_data = {"title":"Close", "clickAction":"closeModal()"};
            var modelBtn_html = Mustache.to_html(def_button_tpl, modelBtn_data);
            $('#myModal #footerBtns').append($compile(modelBtn_html)($scope));

            var text = $(modelTemplate).filter('#textfield').html();
            var dropDown = $(modelTemplate).filter('#simpleDropdownTmpl').html();

            var extName = {"ErrMsg" :     {"errmsg" : "Name is required.", "modalVar":"ext.Name", "errtag":"textboxErrName", "errfunc":"validatetextboxName", "required":true}};
            $('#myModal #name').append($compile(Mustache.to_html(text, extName.ErrMsg))($scope));

            var extURL = {"ErrMsg" :     {"errmsg" : "URL is required.", "modalVar":"ext.url", "errtag":"textboxErrURL", "errfunc":"validatetextboxURL", "required":true}};
            $('#myModal #url').append($compile(Mustache.to_html(text, extURL.ErrMsg))($scope));

            var extUserName = {"ErrMsg" :     {"errmsg" : "UserName is required.", "modalVar":"ext.userName", "errtag":"textboxErrUserName", "errfunc":"validatetextboxUserName", "required":true}};
            $('#myModal #username').append($compile(Mustache.to_html(text, extUserName.ErrMsg))($scope));

            var extPassword = {"ErrMsg" :     {"errmsg" : "Password is required.", "modalVar":"ext.Password", "errtag":"textboxErrPassword", "errfunc":"validatetextboxPassword", "required":true}};
            $('#myModal #password').append($compile(Mustache.to_html(text, extPassword.ErrMsg))($scope));

            var extVersion = {"ErrMsg" :     {"errmsg" : "Version is required.", "modalVar":"ext.Version"}};
            $('#myModal #version').append($compile(Mustache.to_html(text, extVersion.ErrMsg))($scope));

            var extVendor = {"ErrMsg" :     {"errmsg" : "Vendor is required.", "modalVar":"ext.Vendor"}};
            $('#myModal #vendor').append($compile(Mustache.to_html(text, extVendor.ErrMsg))($scope));

            var extDescription = {"ErrMsg" :     {"textboxErr" : "Description is required.", "modalVar":"ext.Description"}};
            $('#myModal #description').append($compile(Mustache.to_html(text, extDescription.ErrMsg))($scope));

            /*var extProtocol = {"ErrMsg" :     {"textboxErr" : "Protocol is required.", "modalVar":"ext.protocol"}};
            $('#myModal #protocol').append($compile(Mustache.to_html(text, extProtocol.ErrMsg))($scope));*/

            /*var dropdowndata_protocol = {
                "modalVar" : "ext.Protocol",
                "labelField" : "itemLabel",
                "optionsValue" : JSON.stringify($scope.data ? $scope.data.dropdownProtocolData.item : "")
            };

            //console.log("dropdown data:"+$scope.data.dropdownProtocolData.item);

            $('#myModal #protocol').append($compile(Mustache.to_html(dropDown, dropdowndata_protocol))($scope));*/

            var dropdownResponse=[{"id":"netconf","name":"netconf"},{"id":"snmp","name":"snmp"}];
            var dropdownInfo = translateToDropdownInfo(dropdownResponse);
            $('#myModal #protocolDD').html(dropdownInfo);

            var extProductName = {"ErrMsg" :     {"textboxErr" : "ProductName is required.", "modalVar":"ext.productName"}};
            $('#myModal #ProductName').append($compile(Mustache.to_html(text, extProductName.ErrMsg))($scope));

            var extType = {"ErrMsg" :     {"textboxErr" : "Type is required.", "modalVar":"ext.type"}};
            $('#myModal #type').append($compile(Mustache.to_html(text, extType.ErrMsg))($scope));

            /*var dropdowndata_type = {
                "modalVar" : "ext.Type",
                "labelField" : "itemLabel",
                "optionsValue" : JSON.stringify($scope.data?$scope.data.dropdownTypeData.item:"")
            };

            $('#myModal #type').append($compile(Mustache.to_html(dropDown, dropdowndata_type))($scope));*/



            /*
            var extType = {"ErrMsg" :     {"textboxErr" : "The name is required.", "modalVar":"ext.type", "placeholder":"Country"}};
            $('#myModal #Type').append($compile(Mustache.to_html(text, extType.ErrMsg))($scope));

            var extCreate = {"ErrMsg" :     {"textboxErr" : "The name is required.", "modalVar":"ext.createTime", "placeholder":"memory"}};
            $('#myModal #CreateTime').append($compile(Mustache.to_html(number, extCreate.ErrMsg))($scope));

            var extOperation = {"ErrMsg" :     {"textboxErr" : "The name is required.", "modalVar":"ext.operation", "placeholder":"Hard Disk"}};
            $('#myModal #Operation').append($compile(Mustache.to_html(text, extOperation.ErrMsg))($scope));*/

            $scope.checkboxes = { 'checked': false, items: {} };

            //var data = [{id: 1, name: "Moroni", age: 50}, {id: 2, name: "ABC", age: 30}, {id: 3, name: "Morhoni", age: 10}, {id: 4, name: "DABC", age: 31}, {id: 5, name: "Noor", age: 30}, {id: 6, name: "ABCD", age: 40}, {id: 7, name: "DABC", age: 31}, {id: 8, name: "Noor", age: 30}, {id: 9, name: "ABCD", age: 40}, {id: 10, name: "DABC", age: 31}, {id: 11, name: "Noor", age: 30}, {id: 12, name: "ABCD", age: 40}];
            $scope.controllerTableParams = new NgTableParams({count: 5, sorting: {name: 'asc'}    //{page: 1,count: 10,filter: {name: 'M'},sorting: {name: 'desc'}
            }, { counts:[5, 10, 20, 50], dataset: $scope.data.controllerData});

            /*$scope.$watch('checkboxes.checked', function(value) {
             angular.forEach($scope.data.controllerData, function(item) {
             console.log("#######"+item.id);
             if (angular.isDefined(item.id)) {
             $scope.checkboxes.items[item.id] = value;
             }
             });
             });*/


        }

        $scope.validatetextboxName = function (value){
            if($scope.ext.Name) {
                $scope.textboxErrName = false;
            }
            else
                $scope.textboxErrName = true;
        }

        $scope.validatetextboxURL = function (value){
            if($scope.ext.url) {
                $scope.textboxErrURL = false;
            }
            else
                $scope.textboxErrURL = true;
        }

        $scope.validatetextboxUserName = function (value){
            if($scope.ext.userName) {
                $scope.textboxErrUserName = false;
            }
            else
                $scope.textboxErrUserName = true;
        }

        $scope.validatetextboxPassword = function (value){
            if($scope.ext.Password) {
                $scope.textboxErrPassword = false;
            }
            else
                $scope.textboxErrPassword = true;
        }


        $scope.closeModal = function() {
            console.log("Closing Modal...");
            $('#myModal').modal('hide');
            $state.reload();
        }

        function translateToDropdownInfo(dropdowndata) {
            var options = '<option value="select">--select--</option>';
            var i;
            for (i = 0; i < dropdowndata.length; i += 1) {
                var option = '<option value="' + dropdowndata[i].id + '">' + dropdowndata[i].name
                    + '</option>';
                options = options + option;
            }

            return options;
        }


        /*$scope.checkAll = function () {
            angular.forEach($scope.data, function (data) {
                data.select = $scope.selectAll;
            });
        };*/

        $scope.showAddModal = function () {
            console.log("Showing Modal to Add data");
            $scope.ext = {};
            //$("#myModal").modal();
            $("#myModal").modal({}).draggable();
            $scope.textboxErrName = false;
            $scope.textboxErrURL = false;
            $scope.textboxErrUserName = false;
            $scope.textboxErrPassword = false;
        }
        $scope.saveData = function (id) {
            if (!$scope.textboxErrName && !$scope.textboxErrURL && !$scope.textboxErrUserName && !$scope.textboxErrPassword) {
                if (id) {
                    //edit data
                    console.log("Editing data.." + JSON.stringify($scope.ext));
                    controllerDataService.editControllerData($scope.ext)
                        .then(function (data) {
                            $scope.message = "Success :-)";
                            $state.reload();
                            //$state.go($state.current.name, {}, {reload: true})
                        },
                        function (reason) {
                            //$log.info(reason);
                            $scope.message = reason.status + " " + reason.statusText;
                        });
                }
                else {
                    console.log("Adding data.." + JSON.stringify($scope.ext));
                    controllerDataService.addControllerData($scope.ext)
                        .then(function (data) {

                            $scope.message = "Success :-)";
                            $state.reload();
                            //$state.go($state.current.name, {}, {reload: true})
                        },
                        function (reason) {
                            //$log.info(reason);
                            $scope.message = reason.status + " " + reason.statusText;
                        });
                }
                $('#myModal').modal('hide');
            }
        }

        $scope.deleteData = function (id) {
            var confirmation=false;
            var checkbox = false;
            var dialog_tpl = $(modelTemplate).filter('#personDialog').html();
            var error = {"err_data" : { "title": "Error",
                "showClose": "true",
                "closeBtnTxt": "Cancel",
                "icon": "glyphicon glyphicon-exclamation-sign",
                "iconColor": "icon_error",
                "msg": "Do you really wanted to Delete?.",
                "buttons": [
                    {
                        "text": "Ok", "action": "deleteConfirmation("+id+")"
                    }]
            }};
            angular.forEach($scope.checkboxes.items, function(value) {
                if(value) {
                    checkbox = true;
                }
            });
            if (checkbox || (typeof id !== "undefined")) {
                var html = Mustache.to_html(dialog_tpl, error.err_data);
                $($compile(html)($scope)).modal({backdrop: "static"});
            }
        }

        $scope.deleteConfirmation = function(id) {
            console.log("data in controller is :");
            //$log.info($scope.data.controllerData);
            var deleteArr = [];
            if (typeof id !== "undefined"){

                deleteArr.push(id);
            }
            else {
                angular.forEach($scope.checkboxes.items, function(value , key) {
                    if(value) {
                        console.log("deleting name is :"+key);
                        deleteArr.push(key);
                    }
                });
            }
            console.log("deleteArr: "+deleteArr);
            for(var i = 0; i < deleteArr.length; i++) {
                console.log("To be deleted : "+deleteArr[i]);
                controllerDataService.deleteControllerData(deleteArr[i])
                    .then(function(data){
                        $scope.message = "Successfully deleted :-)";
                        $state.reload();
                    },
                    function(reason){
                        $scope.message = reason.status + " " + reason.statusText;
                    });
            }
        }

        $scope.editData = function (id) {
            console.log("To be edited : " + id);
            var dataFound = false;
            angular.forEach($scope.data.controllerData, function (data) {
                if (!dataFound) {
                    if (data.id == id) {
                        console.log("Found : " + data.Name);
                        console.log("Data is sssss :"+data);
                        $scope.ext = data;
                        $("#myModal").modal();
                        dataFound = true;
                    }
                }
            });
        }


    })


/*var modelTemplate;

function loadTemplate() {
    $.get('template.html', function (template) {
        modelTemplate = template;
    });
}*/

/*var modelTemplate = "";
function loadTemplate() {
    *//*$.get('/openoui/framework/template.html', function (template) {
        modelTemplate += template;
    });*//*
    $.get('/openoui/framework/templateContainer.html', function (template) {
        modelTemplate += template;
    });
    $.get('/openoui/framework/templateWidget.html', function (template) {
        //console.log("Template is : "+template);
        modelTemplate += template;
    });
    $.get('/openoui/framework/templateNotification.html', function (template) {
        modelTemplate += template;
    });
    $.get('/openoui/framework/templateFunctional.html', function (template) {
        modelTemplate += template;
    });
}*/

var modelTemplate = "";
function loadTemplate() {

    /*$.get('/openoui/resmgr/templates/template.html', function (template) {
        modelTemplate += template;
     });*/
    $.get('/openoui/extsys/sdncontroller/templates/templateContainer.html', function (template) {
        modelTemplate += template;
    });
    $.get('/openoui/extsys/sdncontroller/templates/templateWidget.html', function (template) {
        //console.log("Template is : "+template);
        modelTemplate += template;
    });
    $.get('/openoui/extsys/sdncontroller/templates/templateNotification.html', function (template) {
        modelTemplate += template;
    });
    $.get('/openoui/extsys/sdncontroller/templates/templateFunctional.html', function (template) {
        modelTemplate += template;
    });
}