| 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 |
1
1
1
19
19
18
1
3
3
7
3
1
2
2
1
1
1
1
| 'use strict';
;require.register("views/main/dashboard/widget", function (exports, require, module) {
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 = require('app');
App.DashboardWidgetView = Em.View.extend({
/**
* @type {string}
* @default null
*/
title: Em.computed.alias('widget.title'),
templateName: null,
sourceName: Em.computed.alias('widget.sourceName'),
/**
* Bound from template
*
* @type {object}
*/
widget: null,
/**
* Indicates whether dropdown with Edit/Delete/Save actions should be displayed
* @type {boolean}
*/
showActions: true,
/**
* @type {Em.View}
*/
widgetsView: Em.computed.alias('parentView'),
/**
* @type {object} - record from model that serve as data source
*/
model: function () {
var model = Em.Object.create();
if (Em.isNone(this.get('sourceName'))) {
return model;
}
return this.findModelBySource(this.get('sourceName'));
}.property('sourceName'),
/**
* @type {number}
* @default null
*/
id: Em.computed.alias('widget.id'),
/**
* html id bind to view-class: widget-(1)
* used by re-sort
* @type {string}
*/
viewID: Em.computed.format('widget-{0}', 'id'),
classNames: ['span2p4'],
attributeBindings: ['viewID'],
/**
* widget content pieChart/ text/ progress bar/links/ metrics. etc
* @type {Array}
* @default null
*/
content: null,
/**
* more info details
* @type {Array}
*/
hiddenInfo: [],
/**
* @type {string}
*/
hiddenInfoClass: "hidden-info-two-line",
/**
* @type {string}
*/
hintInfo: Em.computed.i18nFormat('dashboard.widgets.hintInfo.common', 'maxValue'),
/**
* @type {number}
* @default 0
*/
thresholdMin: function () {
return Em.isNone(this.get('widget.threshold')) ? 0 : this.get('widget.threshold')[0];
}.property('widget.threshold'),
/**
* @type {number}
* @default 0
*/
thresholdMax: function () {
return Em.isNone(this.get('widget.threshold')) ? 0 : this.get('widget.threshold')[1];
}.property('widget.threshold'),
/**
* @type {Boolean}
* @default false
*/
isDataLoadedBinding: 'App.router.clusterController.isServiceContentFullyLoaded',
didInsertElement: function didInsertElement() {
App.tooltip(this.$("[rel='ZoomInTooltip']"), {
placement: 'left',
template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner graph-tooltip"></div></div>'
});
},
/**
*
* @param {string} source
* @returns {App.Service}
*/
findModelBySource: function findModelBySource(source) {
if (source === 'HOST_METRICS' && App.get('services.hostMetrics').length > 0) {
return App.get('services.hostMetrics');
}
var extendedModel = App.Service.extendedModel[source];
if (extendedModel) {
return App[extendedModel].find(source);
}
return App.Service.find(source);
},
willDestroyElement: function willDestroyElement() {
$("[rel='ZoomInTooltip']").tooltip('destroy');
},
/**
* delete widget
*/
deleteWidget: function deleteWidget() {
this.get('parentView').hideWidget(this.get('id'), this.get('groupId'), this.get('subGroupId'), this.get('isAllItemsSubGroup'));
},
/**
* Update thresholds for widget and save this them to persist
*
* @param {number[]} preparedThresholds
*/
saveWidgetThresholds: function saveWidgetThresholds(preparedThresholds) {
var widgetId = this.get('id');
var widgetIdToNumber = Number(widgetId);
var widgetsView = this.get('widgetsView');
var userPreferences = widgetsView.get('userPreferences');
var isGroupWidget = isNaN(widgetIdToNumber);
if (isGroupWidget) {
var parsedWidgetId = parseInt(widgetId);
if (this.get('isAllItemsSubGroup')) {
userPreferences.groups[this.get('groupId')]['*'].threshold[this.get('subGroupId')][parsedWidgetId] = preparedThresholds;
} else {
userPreferences.groups[this.get('groupId')][this.get('subGroupId')].threshold[parsedWidgetId] = preparedThresholds;
}
} else {
userPreferences.threshold[widgetIdToNumber] = preparedThresholds;
this.set('widget.threshold', userPreferences.threshold[widgetIdToNumber]);
}
widgetsView.saveWidgetsSettings(userPreferences);
},
/**
* edit widget
*/
editWidget: function editWidget() {
return App.EditDashboardWidgetPopup.show({
widgetView: this,
sliderHandlersManager: App.EditDashboardWidgetPopup.DoubleHandlers.create({
thresholdMin: this.get('thresholdMin'),
thresholdMax: this.get('thresholdMax'),
maxValue: parseFloat(this.get('maxValue'))
}),
sliderColors: [App.healthStatusGreen, App.healthStatusOrange, App.healthStatusRed]
});
}
});
}); |