summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/app/views/widgets/widgets.controller.js
blob: c24f49cd0ff9045fd91328969d9c35f1be1f6133 (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
/*-
 * ================================================================================
 * eCOMP Portal
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property
 * ================================================================================
 * 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.
 * ================================================================================
 */
'use strict';
(function () {
    class WidgetsCtrl {
        constructor($log, applicationsService, widgetsService, ngDialog, confirmBoxService,
                    userProfileService, $cookies, $scope) {
            $log.info('WidgetsCtrl::init: Starting Up');
            $scope.infoMessage = true;

            let populateAvailableApps = widgets => {
                let allPortalsFilterObject = {index: 0, title: 'All applications', value: ''};
                this.availableApps = [allPortalsFilterObject];
                this.filterByApp = this.availableApps[0];
                applicationsService.getAppsForSuperAdminAndAccountAdmin().then(myApps => {
                    var reSortedApp = myApps.sort(getSortOrder("name"));
                    var realAppIndex = 1;
                    for (let i = 1; i <= reSortedApp.length; i++) {
                        if (!reSortedApp[i-1].restrictedApp) {
                            $log.debug('WidgetsCtrl::populateAvailableApps: pushing {index: ', realAppIndex, 'title: ', reSortedApp[i - 1].name,
                                    'value: ', reSortedApp[i - 1].name, '}');
                            this.availableApps.push({
                                index: realAppIndex,
                                title: reSortedApp[i - 1].name,
                                value: reSortedApp[i - 1].name
                            })
                            realAppIndex = realAppIndex + 1;
                        }
                    }
                }).catch(err => {
                    $log.error(err);
                });
            };

            let getOnboardingWidgets = () => {
                this.isLoadingTable = true;
                widgetsService.getManagedWidgets().then(res => {
                    var reSortedWidget = res.sort(getSortOrder("name"));
                    this.widgetsList = reSortedWidget;
                    populateAvailableApps(reSortedWidget);
                }).catch(err => {
                    $log.error('WidgetsCtrl::getOnboardingWidgets error: ' + err);
                }).finally(()=> {
                    this.isLoadingTable = false;
                });
            };

            let getSortOrder = (prop) => {
                return function(a, b) {
                    if (a[prop].toLowerCase() > b[prop].toLowerCase()) {
                        return 1;
                    } else if (a[prop].toLowerCase() < b[prop].toLowerCase()) {
                        return -1;
                    }
                    return 0;
                }
            }

            $scope.hideMe = function () {
                $scope.infoMessage = false;
            }

            let init = () => {
                this.isLoadingTable = false;
                getOnboardingWidgets();

                
                this.searchString = '';
                
                this.widgetsTableHeaders = [
                    {name: 'Widget Name', value: 'name', isSortable: false},
                    {name: 'Application', value: 'appName', isSortable: true},
                    {name: 'Width', value: 'width', isSortable: false},
                    {name: 'Height', value: 'height', isSortable: false}
                ];
                this.widgetsList = [];
            };

            this.filterByDropdownValue = item => {
                if(this.filterByApp.value === ''){
                    return true;
                }
                return item.appName === this.filterByApp.value;
            };

            this.openWidgetDetailsModal = (selectedWidget) => {
                let data = null;
                if(selectedWidget){
                    if(!selectedWidget.id){
                        $log.error('Widget id not found');
                        return;
                    }
                    data = {
                        widget: selectedWidget
                    }
                }
                ngDialog.open({
                    templateUrl: 'app/views/widgets/widget-details-dialog/widget-details.modal.html',
                    controller: 'WidgetDetailsModalCtrl',
                    controllerAs: 'widgetDetails',
                    data: data
                }).closePromise.then(needUpdate => {
                    if(needUpdate.value === true){
                        $log.debug('WidgetsCtrl::openWidgetDetailsModal: updating table data...');
                        getOnboardingWidgets();
                    }
                });
            };

            this.deleteWidget = widget => {
                confirmBoxService.deleteItem(widget.name).then(isConfirmed => {
                    if(isConfirmed){
                        if(!widget || !widget.id){
                            $log.error('WidgetsCtrl::deleteWidget: No widget or ID... cannot delete');
                            return;
                        }
                        widgetsService.deleteWidget(widget.id).then(() => {
                            this.widgetsList.splice(this.widgetsList.indexOf(widget), 1);
                        }).catch(err => {
                            $log.error('WidgetsCtrl::deleteWidget error:',err);
                        });
                    }
                }).catch(err => {
                    $log.error('WidgetsCtrl::deleteWidget error:',err);
                });
            };

            init();
        }
    }
    WidgetsCtrl.$inject = ['$log', 'applicationsService', 'widgetsService', 'ngDialog', 'confirmBoxService',
        'userProfileService','$cookies', '$scope'];
    angular.module('ecompApp').controller('WidgetsCtrl', WidgetsCtrl);
})();