summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.modal.controller.js
blob: 6478c813d6f243327c5739df0f137ea80b0a73e2 (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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
/*-
 * ============LICENSE_START==========================================
 * ONAP Portal
 * ===================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ===================================================================
 *
 * Unless otherwise specified, all software contained herein is licensed
 * under the Apache License, Version 2.0 (the "License");
 * you may not use this software 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.
 *
 * Unless otherwise specified, all documentation contained herein is licensed
 * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
 * you may not use this documentation except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *             https://creativecommons.org/licenses/by/4.0/
 *
 * Unless required by applicable law or agreed to in writing, documentation
 * 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.
 *
 * ============LICENSE_END============================================
 *
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 */
'use strict';

(function() {

    class userNotificationsModalCtrl {
        constructor($scope, $log, functionalMenuService, confirmBoxService, notificationService, $modal, ngDialog, $state, $filter, items) {
            this.debug = false;
            $scope.newNotifModel = {
                'isOnlineUsersOnly': null,
                'isForAllRolesOptions': null,
                'selectedPriority': null,
                'isActive': null,
                'startTime': '',
                'endTime': '',
                'msgHeader': null,
                'msgDescription': null,
                'roleIds': null,
                'anyTreeItemSelected': false,
                'roleObj': {
                    notificationRoleIds: null
                }
            };

            $scope.notificationId = null;
            $scope.selectedCat = null;
            $scope.selectedEcompFunc = null;
            this.YN_index_mapping = {
                "Y": 0,
                "N": 1
            }

            $scope.onlineAllUsersOptions = [{
                    "index": 0,
                    "value": "Y",
                    "title": "Online Users Only"
                },
                {
                    "index": 1,
                    "value": "N",
                    "title": "Online & Offline Users"
                }

            ];

            $scope.isForAllRolesOptions = [{
                    "index": 0,
                    "value": "Y",
                    "title": "Yes"
                },
                {
                    "index": 1,
                    "value": "N",
                    "title": "No"
                }
            ];

            $scope.priorityOptions = [{
                    "index": 0,
                    "value": 1,
                    "title": "Normal"
                },
                {
                    "index": 1,
                    "value": 2,
                    "title": "Important"
                }
            ];

            $scope.isActiveOptions = [{
                    "index": 0,
                    "value": "Y",
                    "title": "Yes"
                },
                {
                    "index": 1,
                    "value": "N",
                    "title": "No"
                }
            ];
            $scope.newNotifModel.isActive = $scope.isActiveOptions[0];
            $scope.newNotifModel.selectPriority = $scope.priorityOptions[0];
            $scope.newNotifModel.isOnlineUsersOnly = $scope.onlineAllUsersOptions[1];
            $scope.newNotifModel.isForAllRoles = $scope.isForAllRolesOptions[0].value;
            $scope.newNotifModel.isFunctionalMenu = "Y";

            $scope.newNotifModel.selectedPriority = $scope.priorityOptions[0].value;
            $scope.newNotifModel.msgHeader = '';
            $scope.newNotifModel.msgDescription = '';
            $scope.newNotifModel.treeTitle = "Functional Menu";
            $scope.newNotifModel.notifObj = {
                isCategoriesFunctionalMenu: true
            };

            let init = () => {
                if (this.debug)
                    $log.debug('userNotificationsModalCtrl::init');
                this.isSaving = false;
                var today = new Date();
                $scope.minDate = today.toISOString().substring(0, 10);
                var threeMonthsFromNow = new Date();
                threeMonthsFromNow.setMonth(threeMonthsFromNow.getMonth() + 3);
                $scope.maxDate = threeMonthsFromNow.toISOString().substring(0, 10);
                if (items && items.notif) {
                    if (this.debug)
                        $log.debug('userNotificationsModalCtrl:init:: Edit notification mode for', items.notif);
                    $scope.isEditMode = true;
                    $scope.editModeObj = {
                        isEditMode: true
                    };
                    this.notif = _.clone(items.notif);
                    $scope.modalPgTitle = 'View Notification'
                    $scope.newNotifModel.isOnlineUsersOnly = $scope.onlineAllUsersOptions[this.YN_index_mapping[this.notif.isForOnlineUsers]];
                    $scope.newNotifModel.isForAllRoles = $scope.isForAllRolesOptions[this.YN_index_mapping[this.notif.isForAllRoles]].value;
                    $scope.newNotifModel.isActive = $scope.isActiveOptions[this.YN_index_mapping[this.notif.activeYn]];
                    $scope.newNotifModel.selectedPriority = $scope.priorityOptions[this.notif.priority - 1].value;
                    $scope.newNotifModel.startTime = new Date(this.notif.startTime);
                    $scope.newNotifModel.endTime = new Date(this.notif.endTime);
                    $scope.newNotifModel.msgHeader = this.notif.msgHeader;
                    $scope.newNotifModel.msgDescription = this.notif.msgDescription;
                    $scope.notificationId = this.notif.notificationId;
                    $scope.newNotifModel.notificationRoleIds = this.notif.roleIds;
                    $scope.roleObj = {
                        notificationRoleIds: this.notif.roleIds
                    };
                } else {
                    if (this.debug)
                        $log.debug('AppDetailsModalCtrl:init:: New app mode');
                    $scope.isEditMode = false;
                    $scope.editModeObj = {
                        isEditMode: false
                    };
                    $scope.modalPgTitle = 'Add a New Notification'
                    this.notif = _.clone($scope.newNotifModel);
                    $scope.roleObj = {
                        notificationRoleIds: null
                    };
                }
            };
            this.conflictMessages = {};
            this.scrollApi = {};
            let handleConflictErrors = err => {
                if (!err.data) {
                    return;
                }
                if (!err.data.length) { // support objects
                    err.data = [err.data]
                }
                _.forEach(err.data, item => {
                    _.forEach(item.fields, field => {
                        // set conflict message
                        this.conflictMessages[field.name] = errorMessageByCode[item.errorCode];
                        // set field as invalid
                        $scope.appForm[field.name].$setValidity('conflict', false);
                        // set watch once to clear error after user correction
                        watchOnce[field.name]();
                    });
                });
                this.scrollApi.scrollTop();
            };

            let resetConflict = fieldName => {
                delete this.conflictMessages[fieldName];
                if ($scope.appForm[fieldName]) {
                    $scope.appForm[fieldName].$setValidity('conflict', true);
                }
            };
            $scope.addUserNotificationValidation = function() {
                // // pre-processing
                if (!($scope.isEditMode)) {
                    var validation = false;
                    if ($scope.isStartDateValidFromToday($scope.newNotifModel.startTime)&&$scope.isStartDateValidFromToday($scope.newNotifModel.endTime)&&$scope.isDateValid($scope.newNotifModel.startTime) && $scope.isDateValid($scope.newNotifModel.endTime) && $scope.newNotifModel.msgHeader != '' && $scope.newNotifModel.msgDescription != '' && ($scope.newNotifModel.startTime < $scope.newNotifModel.endTime)) {
                        validation = true;
                        if ($scope.newNotifModel.isForAllRoles == 'N') {
                            validation = $scope.checkTreeSelect();
                        }
                    } else {
                        validation = false;
                    }
                    return !validation;
                }
            }

            /* format the value for viewing a notification */
            $scope.formatStartDate = function() {
                if ($scope.newNotifModel.startTime) {
                    $scope.newNotifModel.startTime = $filter('date')($scope.startTime, 'medium');
                }
            }

            /* format the value for viewing a notification */
            $scope.formatEndDate = function() {
                if ($scope.newNotifModel.endTime) {
                    $scope.newNotifModel.endTime = $filter('date')($scope.endTime, 'medium');
                }
            }
            
            /*To validate the manual entry of date in MM/DD/YYYY Format*/

            $scope.isDateValid = function(time) {
                if (time == undefined) {
                    return false;
                }
                if (typeof time == 'object') {
                    return true;
                }
                var startDateformat = time.split('/');
                if (startDateformat.length != 3) return false;
                var day = startDateformat[1];
                var month = startDateformat[0];
                month = parseInt(month) - 1;
                var year = startDateformat[2];
                if (year.length != 4) return false;
                var composedDate = new Date(year, month, day);
                 return composedDate.getDate() == day &&
                         composedDate.getMonth() == month &&
                         composedDate.getFullYear() == year;
            };
            
         /*The manual and drop down calendar should be consistent.
         Start date must be greater than or equal to current date.The end dates are not allowed after the 3 months from current dates*/
            
            $scope.isStartDateValidFromToday = function (time) {
            	if(time == undefined){
                    return false;
                }
            	if(typeof time == 'object'){
            		return true;
            	}
                var startDateformat	=time.split('/');
                if (startDateformat.length != 3) return true;
                var day = startDateformat[1];
                var month = startDateformat[0];
                 month= parseInt(month)-1;
                var year = startDateformat[2];
                if(year.length!=4) return true;
                var composedDate = new Date(year, month, day);
              /* As end dates are not allowed after the 3 months from current dates*/
                var x = 3; //or whatever offset
                var CurrentDate = new Date();
                /*If composed date is less than the current date,error message should display*/
                if(composedDate<CurrentDate)
                	return false;
                CurrentDate.setMonth(CurrentDate.getMonth() + x);
                if(composedDate>CurrentDate)
                	return false;
                 return true;
            };


            $scope.addUserNotification = function() {
                $scope.notificationRoleIds = [];
                // pre-processing

                for (var fi = 0; fi < $scope.treedata.length; fi++) {
                    var fLevel = $scope.treedata[fi];
                    if (fLevel) {
                        var fLevelChild = fLevel.child;
                        if (fLevelChild) {
                            for (var si = 0; si < fLevelChild.length; si++) {
                                var sLevel = fLevelChild[si];
                                if (sLevel) {
                                    var sLevelChild = sLevel.child;
                                    if (sLevelChild) {
                                        for (var ti = 0; ti < sLevelChild.length; ti++) {
                                            var tLevel = sLevelChild[ti];
                                            if (tLevel.isSelected && tLevel.roleId) {
                                                $scope.newNotifModel.anyTreeItemSelected = true;
                                                for (var i in tLevel.roleId)
                                                    $scope.notificationRoleIds.push(tLevel.roleId[i]);
                                            }
                                        }
                                    }
                                }
                                if (sLevel.isSelected && sLevel.roleId) {
                                    for (var i in sLevel.roleId)
                                        $scope.notificationRoleIds.push(sLevel.roleId[i]);
                                }
                            }
                        }
                    }
                }

                $scope.notificationRoleIds.sort();
                if (($scope.newNotifModel.isOnlineUsersOnly) && ($scope.newNotifModel.isForAllRoles) && ($scope.newNotifModel.selectedPriority) && ($scope.newNotifModel.isActive) &&
                    ($scope.newNotifModel.startTime) && ($scope.newNotifModel.endTime) && ($scope.newNotifModel.msgHeader != '') && ($scope.newNotifModel.msgDescription != '')) {
                    this.newUserNotification = {
                        'notificationId': $scope.notificationId,
                        'isForOnlineUsers': $scope.newNotifModel.isOnlineUsersOnly.value,
                        'isForAllRoles': $scope.newNotifModel.isForAllRoles,
                        'priority': $scope.newNotifModel.selectedPriority,
                        'activeYn': $scope.newNotifModel.isActive.value,
                        'startTime': $scope.newNotifModel.startTime,
                        'endTime': $scope.newNotifModel.endTime,
                        'msgHeader': $scope.newNotifModel.msgHeader,
                        'msgDescription': $scope.newNotifModel.msgDescription,
                        'roleIds': $scope.notificationRoleIds,
                        'createdDate': new Date()
                    };

                    // POST ajax call here;
                    if ($scope.isEditMode) {
                        notificationService.updateAdminNotification(this.newUserNotification)
                            .then(() => {
                                if (this.debug)
                                    $log.debug('NotificationService:updateAdminNotification:: Admin notification update succeeded!');
                                $scope.closeThisDialog(true);
                            }).catch(err => {
                                $log.error('notificationService.updateAdminNotfication failed: ' + JSON.stringify(err));
                                switch (err.status) {
                                    case '409': // Conflict
                                        // handleConflictErrors(err);
                                        break;
                                    case '500': // Internal Server Error
                                        confirmBoxService.showInformation('There was a problem updating the notification. ' +
                                            'Please try again later. Error: ' + err.status).then(isConfirmed => {});
                                        break;
                                    case '403': // Forbidden... possible
                                        // webjunction error to
                                        // try again
                                        confirmBoxService.showInformation('There was a problem updating the notification. ' +
                                            'Please try again. If the problem persists, then try again later. Error: ' + err.status).then(isConfirmed => {});
                                        break;
                                    default:
                                        confirmBoxService.showInformation('There was a problem updating the notification. ' +
                                            'Please try again. If the problem persists, then try again later. Error: ' + err.status).then(isConfirmed => {});
                                }
                            }).finally(() => {
                                // for bug in IE 11
                                var objOffsetVersion = objAgent.indexOf("MSIE");
                                if (objOffsetVersion != -1) {
                                    if (this.debug)
                                        $log.debug('AppDetailsModalCtrl:updateOnboardingApp:: Browser is IE, forcing Refresh');
                                    $window.location.reload();
                                }
                                // for bug in IE 11
                            });

                    } else {
                        notificationService.addAdminNotification(this.newUserNotification)
                            .then((res) => {
                                if (this.debug)
                                    $log.debug('notificationService:addAdminNotification:: Admin notification creation succeeded!,', res);
                                if (res.status == 'ERROR') {
                                    confirmBoxService.showInformation('There was a problem adding the notification. ' +
                                        ' Error: ' + res.response).then(isConfirmed => {});


                                } else {
                                    // $scope.closeThisDialog(true);
                                    $scope.$dismiss('cancel');
                                }

                                // emptyCookies();
                            }).catch(err => {
                                switch (err.status) {
                                    case '409': // Conflict
                                        // handleConflictErrors(err);
                                        break;
                                    case '500': // Internal Server Error
                                        confirmBoxService.showInformation('There was a problem adding the notification. ' +
                                            'Please try again later. Error: ' + err.status).then(isConfirmed => {});
                                        break;
                                    default:
                                        confirmBoxService.showInformation('There was a problem adding the notification. ' +
                                            'Please try again. If the problem persists, then try again later. Error: ' +
                                            err.status).then(isConfirmed => {});
                                }
                                $log.error('notificationService:addAdminNotification error:: ' + JSON.stringify(err));
                            })
                    }


                } else {
                    $log.warn('please fill in all required fields');
                    confirmBoxService.showInformation('Please fill in all required fields').then(isConfirmed => {});
                }
            }
            $scope.functionalMenuRes = {};
            $scope.checkTreeSelect = function() {
                if ($scope.treedata) {
                    for (var fi = 0; fi < $scope.treedata.length; fi++) {
                        var fLevel = $scope.treedata[fi];
                        if (fLevel.isSelected) {
                            return true;
                        }
                        var sLevel = fLevel.child;
                        if (sLevel) {
                            for (var si = 0; si < sLevel.length; si++) {
                                if (sLevel[si].isSelected) {
                                    return true;
                                }
                                var tLevel = sLevel[si].child;
                                if (tLevel) {
                                    for (var ti = 0; ti < tLevel.length; ti++) {
                                        if (tLevel[ti].isSelected) {
                                            return true;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                return false;
            }
            // Populate the category list for category dropdown list
            let getFunctionalMenu = () => {
                this.isLoadingTable = true;
                if (this.debug)
                    $log.debug('getFunctionalMenu:init');

                functionalMenuService.getFunctionalMenuRole().then(role_res => {
                    var menu_role_dict = {};
                    if (this.debug)
                        $log.debug('functionalMenuService:getFunctionalMenuRole:: getting result', role_res);

                    for (var i in role_res) {
                        // if first time appear in menu_role_dict
                        if (!(role_res[i].menuId in menu_role_dict)) {
                            menu_role_dict[role_res[i].menuId] = [role_res[i].roleId];
                        } else {
                            menu_role_dict[role_res[i].menuId].push(role_res[i].roleId);
                        }
                    }

                    functionalMenuService.getManagedFunctionalMenuForNotificationTree().then(res => {
                        if (this.debug)
                            $log.debug('functionalMenuService:getManagedFunctionalMenuForNotificationTree:: getting result', res);
                        var exclude_list = ['Favorites'];
                        let actualData = [];
                        $scope.functionalMenuRes = res;

                        //Adding children and label attribute to all objects in res
                        for (let i = 0; i < res.length; i++) {
                            res[i].child = [];
                            res[i].name = res[i].text;
                            res[i].id = res[i].text;
                            res[i].displayCheckbox = true;
                            $scope.checkBoxObj = {
                                isAnyRoleSelected: false
                            };
                            res[i].roleId = menu_role_dict[res[i].menuId];
                            res[i].onSelect = function() {
                                $scope.$apply(function() {
                                    $scope.newNotifModel.anyTreeItemSelected = $scope.checkTreeSelect();
                                })
                            };

                            if (res[i].roleId && res[i].roleId.length == _.intersection(res[i].roleId, $scope.roleObj.notificationRoleIds).length) {
                                res[i].isSelected = true;
                                res[i].selected = true;
                                res[i].indeterminate = false;
                            } else {
                                /*default*/
                                res[i].isSelected = false;
                                res[i].selected = false;
                                res[i].indeterminate = false;
                            }
                        }

                        // Adding actual child items to children array in res
                        // objects
                        $scope.parentChildDict = {};
                        $scope.parentChildRoleIdDict = {};
                        for (let i = 0; i < res.length; i++) {
                            let parentId = res[i].menuId;
                            $scope.parentChildDict[parentId] = [];
                            $scope.parentChildRoleIdDict[parentId] = [];
                            for (let j = 0; j < res.length; j++) {
                                let childId = res[j].parentMenuId;
                                if (parentId === childId) {
                                    res[i].child.push(res[j]);
                                    $scope.parentChildDict[parentId].push(res[j].menuId);
                                    //if res[j].roleId is defined
                                    if (res[j].roleId) {
                                        for (let k in res[j].roleId) {
                                            $scope.parentChildRoleIdDict[parentId].push(res[j].roleId[k]);
                                        }

                                    }
                                }
                            }
                        }
                        //check if grand children exist
                        for (var key in $scope.parentChildDict) {
                            var child = $scope.parentChildDict[key];
                            var isGrandParent = false;
                            if (child.length > 0) {
                                for (var i in child) {
                                    if ($scope.parentChildDict[child[i]].length > 0) {
                                        isGrandParent = true;
                                        break;
                                    }
                                }
                            }
                            if (isGrandParent) {
                                for (var i in child) {
                                    // if the child has children
                                    if ($scope.parentChildDict[child[i]].length > 0) {
                                        for (var j in $scope.parentChildRoleIdDict[child[i]]) {
                                            if ($scope.parentChildRoleIdDict[key].indexOf($scope.parentChildRoleIdDict[child[i]][j]) === -1) {
                                                $scope.parentChildRoleIdDict[key].push($scope.parentChildRoleIdDict[child[i]][j]);
                                            }
                                        }
                                    }
                                }
                            }

                        };

                        // Sort the top-level menu items in order based on the column
                        res.sort(function(a, b) {
                            return a.column - b.column;
                        });

                        // Sort all the child in order based on the column
                        for (let i = 0; i < res.length; i++) {
                            res[i].child.sort(function(a, b) {
                                return a.column - b.column;
                            });
                        }

                        //Forming actual parent items
                        for (let i = 0; i < res.length; i++) {
                            let parentId = res[i].parentMenuId;
                            if (parentId === null) {
                                actualData.push(res[i]);
                            }
                        }
                        var treedata = actualData[0].child;
                        $scope.treedata = [];

                        /*Remove favorite from the list */
                        for (var i in treedata) {
                            if (!(treedata[i].name.indexOf(exclude_list) > -1)) {
                                $scope.treedata.push(treedata[i])
                            }
                        }
                        //setting b2b tree parameter
                        $scope.settingTreeParam();

                    }).catch(err => {
                        $log.error('FunctionalMenuCtrl:getFunctionalMenu:: error ', err);
                    }).finally(() => {
                        this.isLoadingTable = false;
                    })

                }).catch(err => {
                    $log.error('FunctionalMenuCtrl:getFunctionalMenu:: error ', err);
                });
            }


            let getAppRoleIds = () => {
                $scope.notifObj = {
                    isCategoriesFunctionalMenu: false
                };
                notificationService.getAppRoleIds().then(res => {
                    if (this.debug)
                        $log.debug('notificationService:getAppRoleIds:: getting result', res);
                    res = res.data;
                    let actualData = [];
                    var app_id_name_list = {};
                    $scope.checkBoxObj = {
                        isAnyRoleSelected: false
                    };
                    for (let i = 0; i < res.length; i++) {
                        if (!(res[i].appId in app_id_name_list)) {
                            app_id_name_list[res[i].appId] = res[i].appName;
                        }
                        res[i].child = [];
                        res[i].name = res[i].roleName;
                        res[i].displayCheckbox = true;
                        res[i].id = res[i].roleId;
                        res[i].menuId = res[i].roleId;
                        res[i].parentMenuId = res[i].appId;
                        res[i].can_check = true;
                        res[i].roleId = [res[i].roleId];
                        res[i].onSelect = function() {
                            $scope.$apply(function() {
                                $scope.newNotifModel.anyTreeItemSelected = $scope.checkTreeSelect();
                            })
                        };
                        /*assigning selected value*/
                        if (res[i].roleId && res[i].roleId.length == _.intersection(res[i].roleId, $scope.roleObj.notificationRoleIds).length) {
                            res[i].isSelected = true;
                            res[i].selected = true;
                            res[i].indeterminate = false;
                        } else {
                            /*default*/
                            res[i].isSelected = false;
                            res[i].selected = false;
                            res[i].indeterminate = false;
                        }
                    }

                    for (var app_id in app_id_name_list) {
                        var new_res = {};
                        new_res.child = [];
                        new_res.name = app_id_name_list[app_id];
                        new_res.id = app_id;
                        new_res.displayCheckbox = true;
                        new_res.menuId = app_id;
                        new_res.parentMenuId = null;
                        new_res.appId = null;
                        new_res.can_check = true;
                        new_res.roleId = null;
                        new_res.onSelect = function() {
                            $scope.$apply(function() {
                                $scope.newNotifModel.anyTreeItemSelected = $scope.checkTreeSelect();
                            })
                        };
                        res.push(new_res);
                    }
                    $scope.parentChildRoleIdDict = {};
                    //Adding actual child items to child array in res objects
                    for (let i = 0; i < res.length; i++) {
                        let parentId = res[i].menuId;
                        $scope.parentChildRoleIdDict[parentId] = [];
                        for (let j = 0; j < res.length; j++) {
                            let childId = res[j].parentMenuId;
                            if (parentId == childId) {
                                res[i].child.push(res[j]);
                                if (res[j].roleId) {
                                    for (let k in res[j].roleId) {
                                        $scope.parentChildRoleIdDict[parentId].push(res[j].roleId[k]);
                                    }

                                }
                            }
                        }
                    }
                    //Forming actual parent items
                    for (let i = 0; i < res.length; i++) {
                        let parentId = res[i].parentMenuId;
                        if (parentId === null) {
                            actualData.push(res[i]);
                        }
                    }

                    $scope.treedata = actualData;
                    //setting correct parameters for b2b tree
                    $scope.settingTreeParam();
                }).catch(err => {
                    $log.error('FunctionalMenuCtrl:getFunctionalMenu:: error ', err);
                }).finally(() => {
                    this.isLoadingTable = false;
                })
            }
            $scope.getFunctionalMenu = function() {
                $scope.treeTitle = "Functional Menu";
                getFunctionalMenu();
            }
            $scope.getAppRoleIds = function() {
                $scope.treeTitle = "Applications/Roles";
                getAppRoleIds();
            }



            $scope.settingTreeParam = function() {
                /**************first level****************/
                for (var fi = 0; fi < $scope.treedata.length; fi++) {
                    var fLevel = $scope.treedata[fi];
                    var sLevel = $scope.treedata[fi].child;
                    var sLevelSelectedCount = 0;
                    var sLevelChildNumber = 0
                    if (fLevel.child.length == 0 && fLevel.roleId == null) {
                        delete fLevel.child;
                    } else if (sLevel) {
                        /**************Second level****************/
                        var sLevelDelArray = [];
                        for (var si = 0; si < sLevel.length; si++) {
                            var deletThisSLev = false;
                            if (sLevel[si].child.length == 0 && sLevel[si].roleId == null) {
                                sLevel[si].displayCheckbox = false;
                                sLevelDelArray.push(sLevel[si].name);
                                sLevel[si].name = '';
                                sLevel[si].active = false;
                                delete sLevel[si].child;
                            } else if (sLevel[si].child.length == 0) {
                                delete sLevel[si].child;
                            } else {
                                /**************Third level****************/
                                var tLevel = sLevel[si].child;
                                var tLevelSelectedCount = 0;
                                var tLevelChildNumber = 0;
                                if (tLevel) {
                                    var tLevelDelArray = [];
                                    var tLevelLen = tLevel.length;
                                    var tLevelRoleIdUndefined = 0;
                                    for (var ti = 0; ti < tLevel.length; ti++) {
                                        delete tLevel[ti].child;
                                        if (tLevel[ti].roleId == null) {
                                            tLevel[ti].displayCheckbox = false;
                                            tLevelDelArray.push(tLevel[ti].name);
                                            tLevel[ti].name = '';
                                            tLevel[ti].active = false;
                                            tLevelRoleIdUndefined++
                                        } else {
                                            if (tLevel[ti].isSelected)
                                                tLevelSelectedCount++;

                                            if (tLevel[ti].displayCheckbox)
                                                tLevelChildNumber++;
                                        }
                                    }
                                    if (tLevelRoleIdUndefined == tLevelLen)
                                        deletThisSLev = true;
                                    if (tLevelSelectedCount == tLevelChildNumber) {
                                        sLevel[si].isSelected = true;
                                        sLevel[si].indeterminate = false;
                                        sLevel[si].active = true;
                                    } else if (tLevelSelectedCount > 0) {
                                        sLevel[si].indeterminate = true;
                                        sLevel[si].active = true;
                                    }

                                    /*Cleanup unused third level items*/
                                    for (var i = 0; i < tLevelDelArray.length; i++) {
                                        var name = tLevelDelArray[i];
                                        for (var ti = 0; ti < tLevel.length; ti++) {
                                            if (name == tLevel[ti].text) {
                                                tLevel.splice(ti, 1);
                                                break;
                                            }
                                        }
                                    }
                                }
                            }
                            if (deletThisSLev) { //remove the whole second level item if all it's child has no roleId
                                sLevel[si].displayCheckbox = false;
                                sLevelDelArray.push(sLevel[si].name);
                                sLevel[si].name = '';
                                sLevel[si].active = false;
                            } else {
                                if (sLevel[si].isSelected)
                                    sLevelSelectedCount++;
                                if (sLevel[si].displayCheckbox)
                                    sLevelChildNumber++;
                            }
                        }
                        if (sLevelSelectedCount == sLevelChildNumber && sLevelChildNumber != 0) {
                            fLevel.isSelected = true;
                            fLevel.indeterminate = false;
                            fLevel.active = true;
                        } else if (sLevelSelectedCount > 0) {
                            fLevel.indeterminate = true;
                            fLevel.active = true;
                        } else {
                            //fLevel.active=false;
                            fLevel.indeterminate = false;
                        }
                        /*Cleanup unused second level items*/
                        for (var i = 0; i < sLevelDelArray.length; i++) {
                            var name = sLevelDelArray[i];
                            for (var si = 0; si < sLevel.length; si++) {
                                if (name == sLevel[si].text) {
                                    sLevel.splice(si, 1);
                                    break;
                                }
                            }
                        }
                    }
                }
            }
            init();
            getFunctionalMenu();

        }

    }

    userNotificationsModalCtrl.$inject = ['$scope', '$log', 'functionalMenuService', 'confirmBoxService', 'notificationService', '$modal', 'ngDialog', '$state', '$filter', 'items'];
    angular.module('ecompApp').controller('userNotificationsModalCtrl', userNotificationsModalCtrl);

})();