@schneideress/dashboardframework 0.0.274 → 0.0.275
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/schneideress-dashboardframework.umd.js +123 -435
- package/bundles/schneideress-dashboardframework.umd.js.map +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js +15 -1
- package/bundles/schneideress-dashboardframework.umd.min.js.map +1 -1
- package/esm2015/gridster/lib/gridsterItem.component.js +1 -1
- package/esm2015/gridster/lib/gridsterRenderer.service.js +1 -1
- package/esm2015/lib/ra-dashboard-area/ra.dashboard.area.js +62 -167
- package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +36 -66
- package/esm2015/lib/ra.base.dashboard.template.js +2 -4
- package/esm2015/lib/ra.dashboard.responsive.service.js +2 -12
- package/esm2015/lib/ra.dashboard.service.js +2 -7
- package/esm2015/lib/ra.event.enum.js +1 -7
- package/esm2015/lib/ra.gridster.config.js +3 -3
- package/esm5/gridster/lib/gridsterItem.component.js +1 -1
- package/esm5/gridster/lib/gridsterRenderer.service.js +1 -1
- package/esm5/lib/ra-dashboard-area/ra.dashboard.area.js +62 -169
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +36 -66
- package/esm5/lib/ra.base.dashboard.template.js +2 -4
- package/esm5/lib/ra.dashboard.responsive.service.js +2 -12
- package/esm5/lib/ra.dashboard.service.js +2 -7
- package/esm5/lib/ra.event.enum.js +1 -7
- package/esm5/lib/ra.gridster.config.js +3 -3
- package/fesm2015/schneideress-dashboardframework.js +101 -259
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +102 -262
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/lib/ra-dashboard-area/ra.dashboard.area.d.ts +2 -24
- package/lib/ra-widget-container/ra.widget.container.component.d.ts +2 -6
- package/lib/ra.base.dashboard.template.d.ts +2 -4
- package/lib/ra.dashboard.responsive.service.d.ts +1 -1
- package/lib/ra.dashboard.service.d.ts +1 -0
- package/lib/ra.event.enum.d.ts +1 -7
- package/package.json +1 -1
- package/schneideress-dashboardframework.metadata.json +1 -1
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
(global = global || self, factory((global.schneideress = global.schneideress || {}, global.schneideress.dashboardframework = {}), global.ng.core, global.rxjs, global.raCommon, global.rxjs.operators, global['ngx-ui-loader'], global['angular-notifier'], global.widgetframework, global.ng.platformBrowser, global.ng.common.http, global.ng.common, global.userControls, global.commonControls));
|
|
5
5
|
}(this, (function (exports, core, rxjs, raCommon, operators, ngxUiLoader, angularNotifier, widgetframework, platformBrowser, http, common, userControls, commonControls) { 'use strict';
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
/*! *****************************************************************************
|
|
8
8
|
Copyright (c) Microsoft Corporation.
|
|
9
9
|
|
|
10
10
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
@@ -18,18 +18,16 @@
|
|
|
18
18
|
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
19
19
|
PERFORMANCE OF THIS SOFTWARE.
|
|
20
20
|
***************************************************************************** */
|
|
21
|
-
/* global Reflect, Promise
|
|
21
|
+
/* global Reflect, Promise */
|
|
22
22
|
|
|
23
23
|
var extendStatics = function(d, b) {
|
|
24
24
|
extendStatics = Object.setPrototypeOf ||
|
|
25
25
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
26
|
-
function (d, b) { for (var p in b) if (
|
|
26
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
27
27
|
return extendStatics(d, b);
|
|
28
28
|
};
|
|
29
29
|
|
|
30
30
|
function __extends(d, b) {
|
|
31
|
-
if (typeof b !== "function" && b !== null)
|
|
32
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
33
31
|
extendStatics(d, b);
|
|
34
32
|
function __() { this.constructor = d; }
|
|
35
33
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
@@ -69,51 +67,6 @@
|
|
|
69
67
|
return function (target, key) { decorator(target, key, paramIndex); }
|
|
70
68
|
}
|
|
71
69
|
|
|
72
|
-
function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {
|
|
73
|
-
function accept(f) { if (f !== void 0 && typeof f !== "function") throw new TypeError("Function expected"); return f; }
|
|
74
|
-
var kind = contextIn.kind, key = kind === "getter" ? "get" : kind === "setter" ? "set" : "value";
|
|
75
|
-
var target = !descriptorIn && ctor ? contextIn["static"] ? ctor : ctor.prototype : null;
|
|
76
|
-
var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});
|
|
77
|
-
var _, done = false;
|
|
78
|
-
for (var i = decorators.length - 1; i >= 0; i--) {
|
|
79
|
-
var context = {};
|
|
80
|
-
for (var p in contextIn) context[p] = p === "access" ? {} : contextIn[p];
|
|
81
|
-
for (var p in contextIn.access) context.access[p] = contextIn.access[p];
|
|
82
|
-
context.addInitializer = function (f) { if (done) throw new TypeError("Cannot add initializers after decoration has completed"); extraInitializers.push(accept(f || null)); };
|
|
83
|
-
var result = (0, decorators[i])(kind === "accessor" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);
|
|
84
|
-
if (kind === "accessor") {
|
|
85
|
-
if (result === void 0) continue;
|
|
86
|
-
if (result === null || typeof result !== "object") throw new TypeError("Object expected");
|
|
87
|
-
if (_ = accept(result.get)) descriptor.get = _;
|
|
88
|
-
if (_ = accept(result.set)) descriptor.set = _;
|
|
89
|
-
if (_ = accept(result.init)) initializers.unshift(_);
|
|
90
|
-
}
|
|
91
|
-
else if (_ = accept(result)) {
|
|
92
|
-
if (kind === "field") initializers.unshift(_);
|
|
93
|
-
else descriptor[key] = _;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
if (target) Object.defineProperty(target, contextIn.name, descriptor);
|
|
97
|
-
done = true;
|
|
98
|
-
};
|
|
99
|
-
|
|
100
|
-
function __runInitializers(thisArg, initializers, value) {
|
|
101
|
-
var useValue = arguments.length > 2;
|
|
102
|
-
for (var i = 0; i < initializers.length; i++) {
|
|
103
|
-
value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);
|
|
104
|
-
}
|
|
105
|
-
return useValue ? value : void 0;
|
|
106
|
-
};
|
|
107
|
-
|
|
108
|
-
function __propKey(x) {
|
|
109
|
-
return typeof x === "symbol" ? x : "".concat(x);
|
|
110
|
-
};
|
|
111
|
-
|
|
112
|
-
function __setFunctionName(f, name, prefix) {
|
|
113
|
-
if (typeof name === "symbol") name = name.description ? "[".concat(name.description, "]") : "";
|
|
114
|
-
return Object.defineProperty(f, "name", { configurable: true, value: prefix ? "".concat(prefix, " ", name) : name });
|
|
115
|
-
};
|
|
116
|
-
|
|
117
70
|
function __metadata(metadataKey, metadataValue) {
|
|
118
71
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(metadataKey, metadataValue);
|
|
119
72
|
}
|
|
@@ -134,7 +87,7 @@
|
|
|
134
87
|
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
135
88
|
function step(op) {
|
|
136
89
|
if (f) throw new TypeError("Generator is already executing.");
|
|
137
|
-
while (
|
|
90
|
+
while (_) try {
|
|
138
91
|
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
139
92
|
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
140
93
|
switch (op[0]) {
|
|
@@ -156,20 +109,13 @@
|
|
|
156
109
|
}
|
|
157
110
|
}
|
|
158
111
|
|
|
159
|
-
|
|
160
|
-
if (k2 === undefined) k2 = k;
|
|
161
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
162
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
163
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
164
|
-
}
|
|
165
|
-
Object.defineProperty(o, k2, desc);
|
|
166
|
-
}) : (function(o, m, k, k2) {
|
|
112
|
+
function __createBinding(o, m, k, k2) {
|
|
167
113
|
if (k2 === undefined) k2 = k;
|
|
168
114
|
o[k2] = m[k];
|
|
169
|
-
}
|
|
115
|
+
}
|
|
170
116
|
|
|
171
|
-
function __exportStar(m,
|
|
172
|
-
for (var p in m) if (p !== "default" && !
|
|
117
|
+
function __exportStar(m, exports) {
|
|
118
|
+
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) exports[p] = m[p];
|
|
173
119
|
}
|
|
174
120
|
|
|
175
121
|
function __values(o) {
|
|
@@ -201,31 +147,19 @@
|
|
|
201
147
|
return ar;
|
|
202
148
|
}
|
|
203
149
|
|
|
204
|
-
/** @deprecated */
|
|
205
150
|
function __spread() {
|
|
206
151
|
for (var ar = [], i = 0; i < arguments.length; i++)
|
|
207
152
|
ar = ar.concat(__read(arguments[i]));
|
|
208
153
|
return ar;
|
|
209
154
|
}
|
|
210
155
|
|
|
211
|
-
/** @deprecated */
|
|
212
156
|
function __spreadArrays() {
|
|
213
157
|
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;
|
|
214
158
|
for (var r = Array(s), k = 0, i = 0; i < il; i++)
|
|
215
159
|
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)
|
|
216
160
|
r[k] = a[j];
|
|
217
161
|
return r;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
function __spreadArray(to, from, pack) {
|
|
221
|
-
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
222
|
-
if (ar || !(i in from)) {
|
|
223
|
-
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
224
|
-
ar[i] = from[i];
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
return to.concat(ar || Array.prototype.slice.call(from));
|
|
228
|
-
}
|
|
162
|
+
};
|
|
229
163
|
|
|
230
164
|
function __await(v) {
|
|
231
165
|
return this instanceof __await ? (this.v = v, this) : new __await(v);
|
|
@@ -246,7 +180,7 @@
|
|
|
246
180
|
function __asyncDelegator(o) {
|
|
247
181
|
var i, p;
|
|
248
182
|
return i = {}, verb("next"), verb("throw", function (e) { throw e; }), verb("return"), i[Symbol.iterator] = function () { return this; }, i;
|
|
249
|
-
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done:
|
|
183
|
+
function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === "return" } : f ? f(v) : v; } : f; }
|
|
250
184
|
}
|
|
251
185
|
|
|
252
186
|
function __asyncValues(o) {
|
|
@@ -262,17 +196,11 @@
|
|
|
262
196
|
return cooked;
|
|
263
197
|
};
|
|
264
198
|
|
|
265
|
-
var __setModuleDefault = Object.create ? (function(o, v) {
|
|
266
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
267
|
-
}) : function(o, v) {
|
|
268
|
-
o["default"] = v;
|
|
269
|
-
};
|
|
270
|
-
|
|
271
199
|
function __importStar(mod) {
|
|
272
200
|
if (mod && mod.__esModule) return mod;
|
|
273
201
|
var result = {};
|
|
274
|
-
if (mod != null) for (var k in mod) if (
|
|
275
|
-
|
|
202
|
+
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
203
|
+
result.default = mod;
|
|
276
204
|
return result;
|
|
277
205
|
}
|
|
278
206
|
|
|
@@ -280,106 +208,27 @@
|
|
|
280
208
|
return (mod && mod.__esModule) ? mod : { default: mod };
|
|
281
209
|
}
|
|
282
210
|
|
|
283
|
-
function __classPrivateFieldGet(receiver,
|
|
284
|
-
if (
|
|
285
|
-
|
|
286
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
function __classPrivateFieldSet(receiver, state, value, kind, f) {
|
|
290
|
-
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
291
|
-
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
292
|
-
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
293
|
-
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
function __classPrivateFieldIn(state, receiver) {
|
|
297
|
-
if (receiver === null || (typeof receiver !== "object" && typeof receiver !== "function")) throw new TypeError("Cannot use 'in' operator on non-object");
|
|
298
|
-
return typeof state === "function" ? receiver === state : state.has(receiver);
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
function __addDisposableResource(env, value, async) {
|
|
302
|
-
if (value !== null && value !== void 0) {
|
|
303
|
-
if (typeof value !== "object" && typeof value !== "function") throw new TypeError("Object expected.");
|
|
304
|
-
var dispose;
|
|
305
|
-
if (async) {
|
|
306
|
-
if (!Symbol.asyncDispose) throw new TypeError("Symbol.asyncDispose is not defined.");
|
|
307
|
-
dispose = value[Symbol.asyncDispose];
|
|
308
|
-
}
|
|
309
|
-
if (dispose === void 0) {
|
|
310
|
-
if (!Symbol.dispose) throw new TypeError("Symbol.dispose is not defined.");
|
|
311
|
-
dispose = value[Symbol.dispose];
|
|
312
|
-
}
|
|
313
|
-
if (typeof dispose !== "function") throw new TypeError("Object not disposable.");
|
|
314
|
-
env.stack.push({ value: value, dispose: dispose, async: async });
|
|
315
|
-
}
|
|
316
|
-
else if (async) {
|
|
317
|
-
env.stack.push({ async: true });
|
|
211
|
+
function __classPrivateFieldGet(receiver, privateMap) {
|
|
212
|
+
if (!privateMap.has(receiver)) {
|
|
213
|
+
throw new TypeError("attempted to get private field on non-instance");
|
|
318
214
|
}
|
|
319
|
-
return
|
|
215
|
+
return privateMap.get(receiver);
|
|
320
216
|
}
|
|
321
217
|
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
};
|
|
326
|
-
|
|
327
|
-
function __disposeResources(env) {
|
|
328
|
-
function fail(e) {
|
|
329
|
-
env.error = env.hasError ? new _SuppressedError(e, env.error, "An error was suppressed during disposal.") : e;
|
|
330
|
-
env.hasError = true;
|
|
218
|
+
function __classPrivateFieldSet(receiver, privateMap, value) {
|
|
219
|
+
if (!privateMap.has(receiver)) {
|
|
220
|
+
throw new TypeError("attempted to set private field on non-instance");
|
|
331
221
|
}
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
try {
|
|
336
|
-
var result = rec.dispose && rec.dispose.call(rec.value);
|
|
337
|
-
if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });
|
|
338
|
-
}
|
|
339
|
-
catch (e) {
|
|
340
|
-
fail(e);
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
if (env.hasError) throw env.error;
|
|
344
|
-
}
|
|
345
|
-
return next();
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
var tslib_es6 = {
|
|
349
|
-
__extends: __extends,
|
|
350
|
-
__assign: __assign,
|
|
351
|
-
__rest: __rest,
|
|
352
|
-
__decorate: __decorate,
|
|
353
|
-
__param: __param,
|
|
354
|
-
__metadata: __metadata,
|
|
355
|
-
__awaiter: __awaiter,
|
|
356
|
-
__generator: __generator,
|
|
357
|
-
__createBinding: __createBinding,
|
|
358
|
-
__exportStar: __exportStar,
|
|
359
|
-
__values: __values,
|
|
360
|
-
__read: __read,
|
|
361
|
-
__spread: __spread,
|
|
362
|
-
__spreadArrays: __spreadArrays,
|
|
363
|
-
__spreadArray: __spreadArray,
|
|
364
|
-
__await: __await,
|
|
365
|
-
__asyncGenerator: __asyncGenerator,
|
|
366
|
-
__asyncDelegator: __asyncDelegator,
|
|
367
|
-
__asyncValues: __asyncValues,
|
|
368
|
-
__makeTemplateObject: __makeTemplateObject,
|
|
369
|
-
__importStar: __importStar,
|
|
370
|
-
__importDefault: __importDefault,
|
|
371
|
-
__classPrivateFieldGet: __classPrivateFieldGet,
|
|
372
|
-
__classPrivateFieldSet: __classPrivateFieldSet,
|
|
373
|
-
__classPrivateFieldIn: __classPrivateFieldIn,
|
|
374
|
-
__addDisposableResource: __addDisposableResource,
|
|
375
|
-
__disposeResources: __disposeResources,
|
|
376
|
-
};
|
|
222
|
+
privateMap.set(receiver, value);
|
|
223
|
+
return value;
|
|
224
|
+
}
|
|
377
225
|
|
|
378
226
|
var RaDashboardService = /** @class */ (function (_super) {
|
|
379
227
|
__extends(RaDashboardService, _super);
|
|
380
228
|
function RaDashboardService(injector) {
|
|
381
229
|
var _this = _super.call(this, injector, '') || this;
|
|
382
230
|
_this.loadedScripts = [];
|
|
231
|
+
_this.clientId = undefined;
|
|
383
232
|
return _this;
|
|
384
233
|
}
|
|
385
234
|
/*
|
|
@@ -432,12 +281,6 @@
|
|
|
432
281
|
/**To Update widgetInfo in database */
|
|
433
282
|
RaDashboardService.prototype.updateWidget = function (widgetInfo, appConfig) {
|
|
434
283
|
this.baseUrl = appConfig.apiBaseUrl;
|
|
435
|
-
var info = {};
|
|
436
|
-
info.widgetConfigInfo = widgetInfo.widgetConfigInfo;
|
|
437
|
-
info.widgetInstanceId = widgetInfo.widgetInstanceId;
|
|
438
|
-
info.widgetTitle = widgetInfo.widgetTitle;
|
|
439
|
-
info.widgetType = widgetInfo.widgetType;
|
|
440
|
-
info.widgetId = widgetInfo.widgetId;
|
|
441
284
|
return this.post('widget/UpdateUserWidget', widgetInfo);
|
|
442
285
|
};
|
|
443
286
|
/** To Move or change position if current widget container*/
|
|
@@ -553,12 +396,6 @@
|
|
|
553
396
|
RAEvent["UpdateAppledFiterForInapplicableFilter"] = "UpdateAppledFiterForInapplicableFilter";
|
|
554
397
|
/**show inapplicable filter message in global filter flyout */
|
|
555
398
|
RAEvent["ShowInapplicableFilterMessage"] = "ShowInapplicableFilterMessage";
|
|
556
|
-
/** Bulk Action Clicked */
|
|
557
|
-
RAEvent["BulkActionClick"] = "BulkActionClick";
|
|
558
|
-
/** Global Filter Clicked */
|
|
559
|
-
/** When user change the curated filter(eg:data streams), system will create/delete widgets */
|
|
560
|
-
RAEvent["CuratedFilterChange"] = "CuratedFilterChange";
|
|
561
|
-
RAEvent["GlobalFilterClick"] = "GlobalFilterClick";
|
|
562
399
|
})(exports.RAEvent || (exports.RAEvent = {}));
|
|
563
400
|
|
|
564
401
|
(function (RAEventKey) {
|
|
@@ -572,9 +409,9 @@
|
|
|
572
409
|
margin: 10,
|
|
573
410
|
outerMargin: true,
|
|
574
411
|
outerMarginTop: 10,
|
|
575
|
-
outerMarginRight:
|
|
412
|
+
outerMarginRight: 10,
|
|
576
413
|
outerMarginBottom: 30,
|
|
577
|
-
outerMarginLeft:
|
|
414
|
+
outerMarginLeft: 10,
|
|
578
415
|
useTransformPositioning: true,
|
|
579
416
|
mobileBreakpoint: 640,
|
|
580
417
|
minCols: 10,
|
|
@@ -689,7 +526,7 @@
|
|
|
689
526
|
enumerable: true,
|
|
690
527
|
configurable: true
|
|
691
528
|
});
|
|
692
|
-
RADashboardResponsiveService.prototype.getGridsterConfig = function (isWidgetMgmnt
|
|
529
|
+
RADashboardResponsiveService.prototype.getGridsterConfig = function (isWidgetMgmnt) {
|
|
693
530
|
var config = GridsterConfigDefaultSettings;
|
|
694
531
|
config.minCols = this.currentResInfo.maxCols;
|
|
695
532
|
config.maxCols = this.currentResInfo.maxCols;
|
|
@@ -711,13 +548,6 @@
|
|
|
711
548
|
config.swap = true;
|
|
712
549
|
config.draggable.enabled = true;
|
|
713
550
|
}
|
|
714
|
-
if (!resize) {
|
|
715
|
-
config.resizable.enabled = false;
|
|
716
|
-
config.swap = false;
|
|
717
|
-
}
|
|
718
|
-
if (!canMove) {
|
|
719
|
-
config.draggable.enabled = false;
|
|
720
|
-
}
|
|
721
551
|
return config;
|
|
722
552
|
};
|
|
723
553
|
/**To map IwidgetInfo object to gridsterItem */
|
|
@@ -725,9 +555,6 @@
|
|
|
725
555
|
if (widget.widgetSettings) {
|
|
726
556
|
widget.settings = JSON.parse(widget.widgetSettings);
|
|
727
557
|
}
|
|
728
|
-
if (widget.templateSettings) {
|
|
729
|
-
widget.templateWidgetSettings = JSON.parse(widget.templateSettings);
|
|
730
|
-
}
|
|
731
558
|
var gridsterItem = {
|
|
732
559
|
cols: this.getWidth(widget.width),
|
|
733
560
|
rows: this.getHeight(widget.height),
|
|
@@ -795,21 +622,14 @@
|
|
|
795
622
|
this.domResized = false;
|
|
796
623
|
this.showEmptyDashboard = false;
|
|
797
624
|
this.isWidgetMgmnt = false;
|
|
798
|
-
this.initialWidgetCount = 10;
|
|
799
|
-
this.currentLoadedIndex = 0;
|
|
800
|
-
this.loading = false;
|
|
801
625
|
this.widgetHeight = 2;
|
|
802
626
|
this.widgetWidth = 4;
|
|
803
627
|
this.hideDashboardBanner = new core.EventEmitter();
|
|
804
628
|
}
|
|
805
629
|
RADashboardArea.prototype.ngOnInit = function () {
|
|
806
630
|
var _this = this;
|
|
807
|
-
window.addEventListener('scroll', function () {
|
|
808
|
-
_this.loadNext();
|
|
809
|
-
});
|
|
810
631
|
this.isWidgetMgmnt = this.permissionService.hasPermission('ra.widgetmanagement');
|
|
811
632
|
this.initiateGridsterConfig();
|
|
812
|
-
this.setEmptyDashboardConfig();
|
|
813
633
|
this.lastViewType = this.responsiveService.IsDesktopView ? 'desktop' : 'mobile';
|
|
814
634
|
this.responsiveService.resized.subscribe(function (isDesktop) {
|
|
815
635
|
if (_this.lastViewType != (isDesktop ? 'desktop' : 'mobile') || !isDesktop) {
|
|
@@ -838,11 +658,6 @@
|
|
|
838
658
|
}, 100);
|
|
839
659
|
}
|
|
840
660
|
});
|
|
841
|
-
setTimeout(function () {
|
|
842
|
-
_this.bulkActionClick = _this.raDashboardEventBus.subscribe(exports.RAEvent.BulkActionClick).subscribe(function (data) {
|
|
843
|
-
_this.bulkActionData = JSON.parse(JSON.stringify(data)); // To create a new reference;
|
|
844
|
-
});
|
|
845
|
-
});
|
|
846
661
|
};
|
|
847
662
|
RADashboardArea.prototype.ngOnChanges = function (changes) {
|
|
848
663
|
this.isWidgetMgmnt = this.permissionService.hasPermission('ra.widgetmanagement');
|
|
@@ -850,44 +665,28 @@
|
|
|
850
665
|
this.isWidgetLoaded = true;
|
|
851
666
|
this.loadWidgets(this.userDashboardId, this.areaKey);
|
|
852
667
|
}
|
|
853
|
-
this.initiateGridsterConfig();
|
|
854
668
|
if (changes.raDashboardEventBus && changes.raDashboardEventBus.currentValue != changes.raDashboardEventBus.previousValue) {
|
|
855
669
|
this.inititateEventBusSubscritions();
|
|
856
670
|
}
|
|
857
671
|
};
|
|
858
|
-
RADashboardArea.prototype.setEmptyDashboardConfig = function () {
|
|
859
|
-
if (this.dashboardInfo && this.dashboardInfo.templateConfig.emptyDashboardHeader) {
|
|
860
|
-
this.emptyDashboardTitle = this.translateService.translate("dashboard." + this.dashboardInfo.templateConfig.emptyDashboardHeader.titleKey);
|
|
861
|
-
this.emptyDashboardMsg1 = this.translateService.translate("dashboard." + this.dashboardInfo.templateConfig.emptyDashboardHeader.descriptionKey1);
|
|
862
|
-
this.emptyDashboardMsg2 = (this.dashboardInfo.templateConfig.emptyDashboardHeader.descriptionKey2) ? this.translateService.translate("dashboard." + this.dashboardInfo.templateConfig.emptyDashboardHeader.descriptionKey2) : '';
|
|
863
|
-
this.emptyDashboardButtonText = this.translateService.translate("dashboard." + this.dashboardInfo.templateConfig.emptyDashboardHeader.buttonTextKey);
|
|
864
|
-
this.emptyDashboardButtonIcon = this.dashboardInfo.templateConfig.emptyDashboardHeader.buttonIcon ? this.dashboardInfo.templateConfig.emptyDashboardHeader.buttonIcon : '';
|
|
865
|
-
this.emptyDashboardButtonAction = this.dashboardInfo.templateConfig.emptyDashboardHeader.buttonAction ? this.dashboardInfo.templateConfig.emptyDashboardHeader.buttonAction : '';
|
|
866
|
-
}
|
|
867
|
-
};
|
|
868
672
|
/**To set GridsterConfig */
|
|
869
673
|
RADashboardArea.prototype.initiateGridsterConfig = function () {
|
|
870
674
|
var _this = this;
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
if (
|
|
881
|
-
|
|
882
|
-
_this.updateWidgetPosition(item.widgetInfo.widgetInstanceId);
|
|
883
|
-
}
|
|
675
|
+
/**To override default configuration values to the gridster control */
|
|
676
|
+
this.options = this.responsiveService.getGridsterConfig(this.isWidgetMgmnt);
|
|
677
|
+
this.options.initCallback = function (gridster) {
|
|
678
|
+
if (_this.options.api) {
|
|
679
|
+
_this.gridcellHeight = _this.options.api.getCurrentRowHeight();
|
|
680
|
+
}
|
|
681
|
+
};
|
|
682
|
+
this.options.itemChangeCallback = function (item) {
|
|
683
|
+
if (_this.responsiveService.IsDesktopView) {
|
|
684
|
+
if (item.widgetInfo && item.widgetInfo.widgetInstanceId) {
|
|
685
|
+
_this.updateWidgetPosition(item.widgetInfo.widgetInstanceId);
|
|
884
686
|
}
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
}
|
|
888
|
-
};
|
|
889
|
-
RADashboardArea.prototype.widgetLoaded = function (widget) {
|
|
890
|
-
widget.canLoadData = true;
|
|
687
|
+
}
|
|
688
|
+
_this.setAreaHeight();
|
|
689
|
+
};
|
|
891
690
|
};
|
|
892
691
|
/** To initiate eventbus subsctiptions */
|
|
893
692
|
RADashboardArea.prototype.inititateEventBusSubscritions = function () {
|
|
@@ -907,11 +706,6 @@
|
|
|
907
706
|
_this.addWidget(e);
|
|
908
707
|
});
|
|
909
708
|
});
|
|
910
|
-
this.curatedFilterChange = this.raDashboardEventBus.subscribe(exports.RAEvent.CuratedFilterChange).subscribe(function (e) {
|
|
911
|
-
_this.ngZone.run(function () {
|
|
912
|
-
_this.loadWidgets(_this.userDashboardId, _this.areaKey);
|
|
913
|
-
});
|
|
914
|
-
});
|
|
915
709
|
this.rearrangeWidgetClick = this.raDashboardEventBus.subscribe(exports.RAEvent.RearrangeClicked).subscribe(function (e) {
|
|
916
710
|
_this.ngZone.run(function () {
|
|
917
711
|
_this.rearrangeWidgets();
|
|
@@ -960,10 +754,6 @@
|
|
|
960
754
|
this.widgetLibraryDoneClick.unsubscribe();
|
|
961
755
|
if (this.rearrangeWidgetClick)
|
|
962
756
|
this.rearrangeWidgetClick.unsubscribe();
|
|
963
|
-
if (this.curatedFilterChange)
|
|
964
|
-
this.curatedFilterChange.unsubscribe();
|
|
965
|
-
if (this.bulkActionClick)
|
|
966
|
-
this.bulkActionClick.unsubscribe();
|
|
967
757
|
};
|
|
968
758
|
/**To update position/dimention of all widgets in the area */
|
|
969
759
|
RADashboardArea.prototype.updateWidgets = function () {
|
|
@@ -1000,13 +790,6 @@
|
|
|
1000
790
|
/** To retrieve widgets based on userDashboardid and area name */
|
|
1001
791
|
RADashboardArea.prototype.loadWidgets = function (userDashboarId, areaKey) {
|
|
1002
792
|
var _this = this;
|
|
1003
|
-
if (this.templateConfig && this.templateConfig.initialWidgetCount)
|
|
1004
|
-
this.initialWidgetCount = this.templateConfig.initialWidgetCount;
|
|
1005
|
-
window.scrollTo(0, 0);
|
|
1006
|
-
if (location.href.indexOf('/kiosk/') > -1)
|
|
1007
|
-
this.initialWidgetCount = 1000;
|
|
1008
|
-
this.currentLoadedIndex = 0;
|
|
1009
|
-
this.loading = false;
|
|
1010
793
|
var widgetInfo = {
|
|
1011
794
|
dashboardId: userDashboarId.toString(),
|
|
1012
795
|
dashboardAreaKey: areaKey
|
|
@@ -1025,8 +808,9 @@
|
|
|
1025
808
|
});
|
|
1026
809
|
_this.checkPAMWidgets();
|
|
1027
810
|
if (widgets && widgets.length > 0) {
|
|
1028
|
-
_this.
|
|
1029
|
-
_this.
|
|
811
|
+
_this.dashboardService.clientId = widgets[0].clientId;
|
|
812
|
+
_this.widgetList = _this.mapObjectListToGridsterItemList(widgets);
|
|
813
|
+
_this.setAreaHeight();
|
|
1030
814
|
_this.raDashboardEventBus.publish(exports.RAEvent.HideDashboardBanner, false);
|
|
1031
815
|
}
|
|
1032
816
|
else {
|
|
@@ -1035,45 +819,6 @@
|
|
|
1035
819
|
}
|
|
1036
820
|
});
|
|
1037
821
|
};
|
|
1038
|
-
RADashboardArea.prototype.loadWidgetsDelta = function () {
|
|
1039
|
-
var _this = this;
|
|
1040
|
-
var _a;
|
|
1041
|
-
if (!this.loading) {
|
|
1042
|
-
this.loading = true;
|
|
1043
|
-
var widgets = this.mapObjectListToGridsterItemList(this.userWidgets.slice(this.currentLoadedIndex, (this.currentLoadedIndex + this.initialWidgetCount)));
|
|
1044
|
-
this.currentLoadedIndex += this.initialWidgetCount;
|
|
1045
|
-
(_a = this.widgetList).push.apply(_a, __spread(widgets));
|
|
1046
|
-
this.setAreaHeight();
|
|
1047
|
-
setTimeout(function () {
|
|
1048
|
-
_this.loading = false;
|
|
1049
|
-
});
|
|
1050
|
-
}
|
|
1051
|
-
};
|
|
1052
|
-
RADashboardArea.prototype.dataLoaded = function (widgetElement) {
|
|
1053
|
-
this.loadNext();
|
|
1054
|
-
};
|
|
1055
|
-
RADashboardArea.prototype.loadNext = function () {
|
|
1056
|
-
if (this.divBottom) {
|
|
1057
|
-
if (this.elementInViewport(this.divBottom.nativeElement)) {
|
|
1058
|
-
this.loadWidgetsDelta();
|
|
1059
|
-
}
|
|
1060
|
-
}
|
|
1061
|
-
};
|
|
1062
|
-
RADashboardArea.prototype.elementInViewport = function (el) {
|
|
1063
|
-
var top = el.offsetTop;
|
|
1064
|
-
var left = el.offsetLeft;
|
|
1065
|
-
var width = el.offsetWidth;
|
|
1066
|
-
var height = el.offsetHeight;
|
|
1067
|
-
while (el.offsetParent) {
|
|
1068
|
-
el = el.offsetParent;
|
|
1069
|
-
top += el.offsetTop;
|
|
1070
|
-
left += el.offsetLeft;
|
|
1071
|
-
}
|
|
1072
|
-
return (top >= window.scrollY &&
|
|
1073
|
-
left >= window.scrollX &&
|
|
1074
|
-
(top + height) <= (window.scrollY + window.innerHeight) &&
|
|
1075
|
-
(left + width) <= (window.scrollX + window.innerWidth));
|
|
1076
|
-
};
|
|
1077
822
|
/** To set Area(Gridster) height dynamically as widgets are added/removed */
|
|
1078
823
|
RADashboardArea.prototype.setAreaHeight = function () {
|
|
1079
824
|
var _this = this;
|
|
@@ -1117,22 +862,22 @@
|
|
|
1117
862
|
/** To remove a widget instance from dashboard and to save info in database */
|
|
1118
863
|
RADashboardArea.prototype.deleteWidget = function (widgetInstanceId, isalertDisabled) {
|
|
1119
864
|
if (isalertDisabled === void 0) { isalertDisabled = false; }
|
|
1120
|
-
var widget = this.userWidgets.filter(function (item) {
|
|
1121
|
-
return item.widgetInstanceId === widgetInstanceId;
|
|
1122
|
-
});
|
|
1123
|
-
if (widget.length > 0) {
|
|
1124
|
-
this.userWidgets.splice(this.userWidgets.indexOf(widget[0]), 1);
|
|
1125
|
-
}
|
|
1126
|
-
if (this.PAMWidgets.length > 0) {
|
|
1127
|
-
var indx = this.PAMWidgets.indexOf(widgetInstanceId);
|
|
1128
|
-
if (indx > -1)
|
|
1129
|
-
this.PAMWidgets.splice(indx, 1);
|
|
1130
|
-
this.checkPAMWidgets();
|
|
1131
|
-
}
|
|
1132
865
|
var gridsterItem = this.widgetList.filter(function (item) {
|
|
1133
866
|
return item.widgetInfo.widgetInstanceId === widgetInstanceId;
|
|
1134
867
|
});
|
|
1135
868
|
if (gridsterItem.length > 0) {
|
|
869
|
+
var widget = this.userWidgets.filter(function (item) {
|
|
870
|
+
return item.widgetInstanceId === widgetInstanceId;
|
|
871
|
+
});
|
|
872
|
+
if (widget.length > 0) {
|
|
873
|
+
this.userWidgets.splice(this.userWidgets.indexOf(widget[0]), 1);
|
|
874
|
+
}
|
|
875
|
+
if (this.PAMWidgets.length > 0) {
|
|
876
|
+
var indx = this.PAMWidgets.indexOf(widgetInstanceId);
|
|
877
|
+
if (indx > -1)
|
|
878
|
+
this.PAMWidgets.splice(indx, 1);
|
|
879
|
+
this.checkPAMWidgets();
|
|
880
|
+
}
|
|
1136
881
|
this.widgetList.splice(this.widgetList.indexOf(gridsterItem[0]), 1);
|
|
1137
882
|
this.setAreaHeight();
|
|
1138
883
|
if (!isalertDisabled) {
|
|
@@ -1147,15 +892,11 @@
|
|
|
1147
892
|
/**To rearrange widgets position in the dashboard, compactLeft&Up,compactLeft,compactUp,etc*/
|
|
1148
893
|
RADashboardArea.prototype.rearrangeWidgets = function () {
|
|
1149
894
|
var _this = this;
|
|
1150
|
-
this.currentLoadedIndex = 0;
|
|
1151
|
-
this.loading = false;
|
|
1152
895
|
for (var i = 0; i < this.userWidgets.length; i++) {
|
|
1153
896
|
this.userWidgets[i].position_x = 0;
|
|
1154
897
|
this.userWidgets[i].position_y = 0;
|
|
1155
898
|
}
|
|
1156
|
-
this.widgetList =
|
|
1157
|
-
this.loadWidgetsDelta();
|
|
1158
|
-
this.raDashboardEventBus.publish(exports.RAEvent.HideDashboardBanner, false);
|
|
899
|
+
this.widgetList = this.mapObjectListToGridsterItemList(this.userWidgets);
|
|
1159
900
|
if (this.widgetList.length > 0)
|
|
1160
901
|
this.updateWidgetPosition(this.widgetList[0].widgetInfo.widgetInstanceId);
|
|
1161
902
|
setTimeout(function () {
|
|
@@ -1188,33 +929,30 @@
|
|
|
1188
929
|
this.ngxService.start();
|
|
1189
930
|
this.dashboardService.addWidget(data, this.appConfig).subscribe(function (widget) {
|
|
1190
931
|
_this.userWidgets.push(widget);
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
_this.
|
|
1196
|
-
if (
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
widget.rowHeight = curRowHeight;
|
|
1200
|
-
_this.gridcellHeight = curRowHeight;
|
|
1201
|
-
}
|
|
1202
|
-
}
|
|
1203
|
-
var widgetInstanceId = 0;
|
|
1204
|
-
if (widget && widget.widgetInstanceId) {
|
|
1205
|
-
widgetInstanceId = widget.widgetInstanceId;
|
|
1206
|
-
/**To save added widget position in db */
|
|
1207
|
-
if (_this.responsiveService.IsDesktopView) {
|
|
1208
|
-
setTimeout(function () {
|
|
1209
|
-
_this.updateWidgetPosition(widgetInstanceId);
|
|
1210
|
-
});
|
|
1211
|
-
}
|
|
932
|
+
var gridsterItem = _this.responsiveService.getGridsterItem(widget);
|
|
933
|
+
_this.widgetList.push(gridsterItem);
|
|
934
|
+
_this.setAreaHeight();
|
|
935
|
+
if (_this.options.api) {
|
|
936
|
+
var curRowHeight = Number(_this.options.api.getCurrentRowHeight());
|
|
937
|
+
if (curRowHeight > 0) {
|
|
938
|
+
widget.rowHeight = curRowHeight;
|
|
939
|
+
_this.gridcellHeight = curRowHeight;
|
|
1212
940
|
}
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
941
|
+
}
|
|
942
|
+
var widgetInstanceId = 0;
|
|
943
|
+
if (widget && widget.widgetInstanceId) {
|
|
944
|
+
widgetInstanceId = widget.widgetInstanceId;
|
|
945
|
+
/**To save added widget position in db */
|
|
946
|
+
if (_this.responsiveService.IsDesktopView) {
|
|
947
|
+
setTimeout(function () {
|
|
948
|
+
_this.updateWidgetPosition(widgetInstanceId);
|
|
949
|
+
});
|
|
1216
950
|
}
|
|
1217
951
|
}
|
|
952
|
+
if (widget.settings && widget.settings.isPAMWidget) {
|
|
953
|
+
_this.PAMWidgets.push(widget.widgetInstanceId);
|
|
954
|
+
_this.checkPAMWidgets();
|
|
955
|
+
}
|
|
1218
956
|
_this.raDashboardEventBus.publish(exports.RAEvent.WidgetAdded, widget);
|
|
1219
957
|
});
|
|
1220
958
|
};
|
|
@@ -1243,15 +981,12 @@
|
|
|
1243
981
|
});
|
|
1244
982
|
}
|
|
1245
983
|
this.userWidgets.push(data);
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
this.
|
|
1251
|
-
|
|
1252
|
-
this.PAMWidgets.push(data.widgetInstanceId);
|
|
1253
|
-
this.checkPAMWidgets();
|
|
1254
|
-
}
|
|
984
|
+
var gridsterItem = this.responsiveService.getGridsterItem(data);
|
|
985
|
+
this.widgetList.push(gridsterItem);
|
|
986
|
+
this.setAreaHeight();
|
|
987
|
+
if (data.settings && data.settings.isPAMWidget) {
|
|
988
|
+
this.PAMWidgets.push(data.widgetInstanceId);
|
|
989
|
+
this.checkPAMWidgets();
|
|
1255
990
|
}
|
|
1256
991
|
};
|
|
1257
992
|
RADashboardArea.prototype.mapObjectListToGridsterItemList = function (widgetList) {
|
|
@@ -1280,11 +1015,8 @@
|
|
|
1280
1015
|
});
|
|
1281
1016
|
return widgetListArray;
|
|
1282
1017
|
};
|
|
1283
|
-
RADashboardArea.prototype.
|
|
1284
|
-
|
|
1285
|
-
this.raDashboardEventBus.publish(exports.RAEvent.AddNewWidgetToDashboard, null);
|
|
1286
|
-
else if (this.emptyDashboardButtonAction == "filter")
|
|
1287
|
-
this.raDashboardEventBus.publish(exports.RAEvent.GlobalFilterClick, null);
|
|
1018
|
+
RADashboardArea.prototype.addNewWidget = function () {
|
|
1019
|
+
this.raDashboardEventBus.publish(exports.RAEvent.AddNewWidgetToDashboard, null);
|
|
1288
1020
|
};
|
|
1289
1021
|
RADashboardArea.prototype.updateAppliedFilters = function (data) {
|
|
1290
1022
|
this.raDashboardEventBus.publish(exports.RAEvent.UpdateAppledFiterForInapplicableFilter, data);
|
|
@@ -1334,14 +1066,6 @@
|
|
|
1334
1066
|
core.Input('app-config'),
|
|
1335
1067
|
__metadata("design:type", Object)
|
|
1336
1068
|
], RADashboardArea.prototype, "appConfig", void 0);
|
|
1337
|
-
__decorate([
|
|
1338
|
-
core.Input('dashboard-info'),
|
|
1339
|
-
__metadata("design:type", Object)
|
|
1340
|
-
], RADashboardArea.prototype, "dashboardInfo", void 0);
|
|
1341
|
-
__decorate([
|
|
1342
|
-
core.Input(),
|
|
1343
|
-
__metadata("design:type", Object)
|
|
1344
|
-
], RADashboardArea.prototype, "templateConfig", void 0);
|
|
1345
1069
|
__decorate([
|
|
1346
1070
|
core.Output(),
|
|
1347
1071
|
__metadata("design:type", Object)
|
|
@@ -1350,15 +1074,11 @@
|
|
|
1350
1074
|
core.ViewChild('gridWrapper', { static: false }),
|
|
1351
1075
|
__metadata("design:type", core.ElementRef)
|
|
1352
1076
|
], RADashboardArea.prototype, "gridWrapper", void 0);
|
|
1353
|
-
__decorate([
|
|
1354
|
-
core.ViewChild('divBottom', { static: false }),
|
|
1355
|
-
__metadata("design:type", core.ElementRef)
|
|
1356
|
-
], RADashboardArea.prototype, "divBottom", void 0);
|
|
1357
1077
|
RADashboardArea = __decorate([
|
|
1358
1078
|
core.Component({
|
|
1359
1079
|
selector: 'ra-dashboard-area',
|
|
1360
|
-
template: "<div #gridWrapper class=\"wrap gridster gridster-mobile\"
|
|
1361
|
-
styles: ["gridster{width:inherit;resize:height;display:flex;background-color:#
|
|
1080
|
+
template: "<div #gridWrapper class=\"wrap gridster gridster-mobile\" [ngStyle]=\"{'height': userWidgets.length > 0 ? (gridheight + 'px') : 'unset'}\">\r\n <!-- <div #gridWrapper class=\"wrap gridster\"> -->\r\n <gridster [options]=\"options\" style=\"height:100%;\" *ngIf=\"userWidgets.length > 0\">\r\n <gridster-item [item]=\"item\" *ngFor=\"let item of widgetList\">\r\n <ra-widget-container [app-config]=\"appConfig\" [event-bus]=\"raDashboardEventBus\"\r\n (widgetDeleted)=\"deleteWidget($event)\" [data]=\"item\" [global-filter]=\"globalFilter\"\r\n [grid-cell-height]=\"gridcellHeight\" *ngIf=\"gridcellHeight && gridcellHeight > 0\" [widget-width]=\"item.cols\"\r\n [widget-height]=\"item.rows\" [widget-instance-id]=\"item.widgetInstanceId\" [dom-resized]=\"domResized\"\r\n (updateAppliedFilters)=\"updateAppliedFilters($event)\">\r\n </ra-widget-container>\r\n </gridster-item>\r\n </gridster>\r\n\r\n <div class=\"empty-padding kiosk-hide\" *ngIf=\"showEmptyDashboard\">\r\n <div class=\"empty-wrapper\">\r\n <div></div>\r\n <div class=\"m-1 empty-prefix\">\r\n <i class=\"fal fa-edit edit-icon\"></i>\r\n <span class=\"empty-title\">{{'dashboard.emptydashboard'|translate}}</span>\r\n </div>\r\n <div class=\"empty-content light\">\r\n <div>\r\n <div class=\"col-sm-12 empty-msg\">\r\n {{'dashboard.emptydashboardmessage'|translate}} <br />\r\n {{'dashboard.emptydashboardmessage2'|translate}}\r\n </div>\r\n <button *ngIf=\"isWidgetMgmnt\" class=\"btn btnLib btn-sm m-1 dashboard-button light\" (click)=\"addNewWidget()\">\r\n <i class=\"fal fa-plus m-1\"></i>{{'dashboard.addawidgets'|translate}}</button>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n\r\n <notifier-container></notifier-container>\r\n</div>",
|
|
1081
|
+
styles: ["gridster{width:inherit;resize:height;display:flex;background-color:#ededed;overflow-y:hidden!important}.dvheader{width:100%;height:35px;background:#000;color:#fff;padding:7px 3px 5px 6px;text-transform:uppercase}gridster-item{box-sizing:border-box;z-index:1;position:absolute;overflow:hidden;transition:.3s;display:none;background:#fff;-webkit-user-select:text;-moz-user-select:text;user-select:text;box-shadow:0 1px 10px rgba(0,0,0,.05)}gridster-item:hover{box-shadow:0 1px 10px rgba(0,0,0,.15)}@media screen and (max-width:685px){.gridster-mobile{height:auto!important;margin-bottom:50px!important}}@media screen and (max-width:350px){.gridster-mobile{min-height:330px!important;margin-bottom:0!important}}.empty-padding{padding:40px 20px 20px;background-color:#ededed;display:flex;justify-content:center;align-content:center}.empty-wrapper{display:flex;background-color:#fff;border-radius:8px;min-height:125px;width:72%}.empty-prefix{color:#32ad3c;font-size:18px;display:flex;align-items:center;padding:10px 30px;min-width:-webkit-max-content;min-width:max-content;min-width:-moz-max-content}.empty-content{color:#333;border-left:1px solid #a9afb1;width:100%;display:flex;align-items:center;padding:15px 30px 10px 40px}.empty-msg{padding:0 0 5px;font-size:16px}.dashboard-button{padding:5px 10px 5px 5px!important}.btnLib{background-color:#ededed;color:#333!important}.btn-group-sm>.btn,.btn-sm{padding:5px 20px 5px 5px}.edit-icon{color:#32ad3c;font-size:24px;margin-right:15px}.empty-title{margin-top:10px}@media screen and (max-width:600px){.empty-padding{padding:10px;background-color:#ededed;width:100%;display:block}.empty-wrapper{display:flex;background-color:#fff;border-radius:8px;min-height:125px;width:100%}.empty-prefix{color:#32ad3c;font-size:16px;display:flex;height:40px;padding:6px 10px 8px}.empty-content{color:#333;display:flex;padding:5px 10px 10px;margin-top:44px;margin-left:-185px;border-left:none}.empty-msg{padding:12px 10px 10px 5px;font-size:14px;border-top:1px solid #a9afb1}.edit-icon{color:#32ad3c;font-size:20px;margin-right:6px}.empty-title{margin-top:6px}}"]
|
|
1362
1082
|
}),
|
|
1363
1083
|
__metadata("design:paramtypes", [RaDashboardService,
|
|
1364
1084
|
core.NgZone,
|
|
@@ -1461,11 +1181,8 @@
|
|
|
1461
1181
|
this.showExcell = true;
|
|
1462
1182
|
this.hideTitle = false;
|
|
1463
1183
|
this.inapplicableFilters = [];
|
|
1464
|
-
this.canLoadData = false;
|
|
1465
1184
|
this.widgetDeleted = new core.EventEmitter();
|
|
1466
1185
|
this.updateAppliedFilters = new core.EventEmitter();
|
|
1467
|
-
this.dataLoaded = new core.EventEmitter();
|
|
1468
|
-
this.widgetLoaded = new core.EventEmitter();
|
|
1469
1186
|
this.isWidgetStateApplicable = false;
|
|
1470
1187
|
this.widgetEmptyState = '';
|
|
1471
1188
|
this.lockVisible = false;
|
|
@@ -1490,7 +1207,7 @@
|
|
|
1490
1207
|
configurable: true
|
|
1491
1208
|
});
|
|
1492
1209
|
RAWidgetContainer.prototype.ngOnInit = function () {
|
|
1493
|
-
this.WidgetDisplayName = this.
|
|
1210
|
+
this.WidgetDisplayName = this.getwidgetTitleTranslation(this.data.widgetInfo.widgetTitle);
|
|
1494
1211
|
this.lockIconTitle = this.translateService.translate('Common.lockedfields');
|
|
1495
1212
|
this.lockIconFooter = this.translateService.translate('Common.lockedfieldseditinfo');
|
|
1496
1213
|
this.inapplicableIconTitle = this.translateService.translate('Common.InapplicableFilters');
|
|
@@ -1511,32 +1228,19 @@
|
|
|
1511
1228
|
});
|
|
1512
1229
|
});
|
|
1513
1230
|
}
|
|
1514
|
-
if (this.widgetElement) {
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1231
|
+
if (this.widgetElement && changes.globalFilter && changes.globalFilter.currentValue != changes.globalFilter.previousValue) {
|
|
1232
|
+
var filterObj = this.getParsedConfig(this.globalFilter);
|
|
1233
|
+
if (filterObj.WidgetInstanceId) {
|
|
1234
|
+
if (this.data.widgetInfo.widgetInstanceId != filterObj.WidgetInstanceId)
|
|
1235
|
+
this.refreshWidget(this.data.widgetInfo);
|
|
1519
1236
|
}
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
var filterObj = this.getParsedConfig(this.globalFilter);
|
|
1523
|
-
if (filterObj.WidgetInstanceId) {
|
|
1524
|
-
if (this.data.widgetInfo.widgetInstanceId != filterObj.WidgetInstanceId)
|
|
1525
|
-
this.refreshWidget(this.data.widgetInfo);
|
|
1526
|
-
}
|
|
1527
|
-
else {
|
|
1528
|
-
//this.refreshWidget(this.data.widgetInfo);
|
|
1529
|
-
}
|
|
1530
|
-
}
|
|
1531
|
-
}
|
|
1532
|
-
if (changes.width && changes.width.currentValue != changes.width.previousValue ||
|
|
1533
|
-
(changes.height && changes.height.currentValue != changes.height.previousValue)) {
|
|
1534
|
-
this.invokeWidgetResizedEvent();
|
|
1237
|
+
else {
|
|
1238
|
+
this.refreshWidget(this.data.widgetInfo);
|
|
1535
1239
|
}
|
|
1536
1240
|
}
|
|
1537
|
-
if (changes.
|
|
1538
|
-
|
|
1539
|
-
|
|
1241
|
+
if (changes.width && changes.width.currentValue != changes.width.previousValue ||
|
|
1242
|
+
(changes.height && changes.height.currentValue != changes.height.previousValue)) {
|
|
1243
|
+
this.invokeWidgetResizedEvent();
|
|
1540
1244
|
}
|
|
1541
1245
|
};
|
|
1542
1246
|
RAWidgetContainer.prototype.invokeWidgetResizedEvent = function () {
|
|
@@ -1728,10 +1432,6 @@
|
|
|
1728
1432
|
_this.showPanel = true;
|
|
1729
1433
|
else
|
|
1730
1434
|
_this.showPanel = false;
|
|
1731
|
-
if (!_this.data.dataLoaded) {
|
|
1732
|
-
_this.data.dataLoaded = true;
|
|
1733
|
-
_this.dataLoaded.emit(_this.widgetElement);
|
|
1734
|
-
}
|
|
1735
1435
|
break;
|
|
1736
1436
|
case 'onConfigEditClicked':
|
|
1737
1437
|
_this.editWidget();
|
|
@@ -1804,9 +1504,7 @@
|
|
|
1804
1504
|
widgetConfigFilter.configChanges = this.getConfigChanges(false);
|
|
1805
1505
|
widgetConfigFilter.widgetInfo.widgetName = widgetInfo.widgetName;
|
|
1806
1506
|
widgetConfigFilter.globalFilter = this.globalFilter;
|
|
1807
|
-
|
|
1808
|
-
//this.widgetElement.loadContent(widgetConfigFilter);
|
|
1809
|
-
this.widgetLoaded.emit();
|
|
1507
|
+
this.widgetElement.loadContent(widgetConfigFilter);
|
|
1810
1508
|
return [4 /*yield*/, this.setLock(widgetConfigFilter.config)];
|
|
1811
1509
|
case 1:
|
|
1812
1510
|
_a.sent();
|
|
@@ -1889,8 +1587,7 @@
|
|
|
1889
1587
|
globalFilter: this.globalFilter,
|
|
1890
1588
|
appConfig: this.appConfig,
|
|
1891
1589
|
widgetInfo: widgetInfo,
|
|
1892
|
-
configChanges: this.getConfigChanges(configChanged)
|
|
1893
|
-
dashboardInfo: this.dashboardInfo
|
|
1590
|
+
configChanges: this.getConfigChanges(configChanged)
|
|
1894
1591
|
};
|
|
1895
1592
|
if (!widgetContainerContext.isWidgetLoaded) return [3 /*break*/, 3];
|
|
1896
1593
|
if (this.widgetElement && typeof (this.widgetElement.setConfigFilter) == 'function') {
|
|
@@ -2077,12 +1774,9 @@
|
|
|
2077
1774
|
var html = '<div id="ra-db-widget-menu"' + 'style="' + style + '" class="download-content dropdown-content widget-config-item dropdown-click" style="z-index: 1002;">';
|
|
2078
1775
|
var settings = '';
|
|
2079
1776
|
if (this.isWidgetMgmnt) {
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
settings += this.getHtmlForButton('wcCopyWidget', 'fal fa-copy', this.copyText);
|
|
2084
|
-
if (!this.data.widgetInfo.templateWidgetSettings || !this.data.widgetInfo.templateWidgetSettings.hideMove)
|
|
2085
|
-
settings += this.getHtmlForButton('wcMoveWidget', 'fal fa-arrows-alt', this.moveText);
|
|
1777
|
+
settings += this.getHtmlForButton('wcEditWidget', 'fal fa-edit', this.editText);
|
|
1778
|
+
settings += this.getHtmlForButton('wcCopyWidget', 'fal fa-copy', this.copyText);
|
|
1779
|
+
settings += this.getHtmlForButton('wcMoveWidget', 'fal fa-arrows-alt', this.moveText);
|
|
2086
1780
|
}
|
|
2087
1781
|
var customPageParams = false;
|
|
2088
1782
|
if (this.data.widgetInfo && this.data.widgetInfo.widgetSettings) {
|
|
@@ -2091,14 +1785,14 @@
|
|
|
2091
1785
|
customPageParams = true;
|
|
2092
1786
|
}
|
|
2093
1787
|
}
|
|
2094
|
-
if (
|
|
1788
|
+
if ((this.detailPageUrl || customPageParams) && this.checkVisitLinkVisiblity()) {
|
|
2095
1789
|
settings += '<a style="max-height: 30px;align-items: center;align-content: center; display: flex;" id="wcVisitWidget">';
|
|
2096
1790
|
settings += '<i style="padding-left: 4px;font-size: 27px !important;" class="fal fa-angle-right"></i> ';
|
|
2097
1791
|
settings += '<span style="padding-left: 11px;margin-top: 2px;" style="padding-left: 6px;">';
|
|
2098
1792
|
settings += this.translateService.translate('Common.visitpage');
|
|
2099
1793
|
settings += '</span></a>';
|
|
2100
1794
|
}
|
|
2101
|
-
if (
|
|
1795
|
+
if ((this.detailPageUrl && this.checkVisitLinkVisiblity()) || this.isWidgetMgmnt) {
|
|
2102
1796
|
html += '<div style="color: #9FA0A4;font-size: 12px;padding-top: 8px;padding-left: 12px;">';
|
|
2103
1797
|
html += this.translateService.translate('Common.settings') + '</div>';
|
|
2104
1798
|
html += settings;
|
|
@@ -2130,7 +1824,7 @@
|
|
|
2130
1824
|
if (this.isDownloadIconVisible && this.isWidgetMgmnt && this.showExcell) {
|
|
2131
1825
|
html += this.getHr();
|
|
2132
1826
|
}
|
|
2133
|
-
if (this.isWidgetMgmnt
|
|
1827
|
+
if (this.isWidgetMgmnt) {
|
|
2134
1828
|
html += '<a id="wcWidgetDelete"><i class="fal fa-times" style="padding-left: 3px;color: red;"></i><span>';
|
|
2135
1829
|
html += this.deleteText;
|
|
2136
1830
|
html += '</span></a>';
|
|
@@ -2211,6 +1905,22 @@
|
|
|
2211
1905
|
if (this.currentComponent)
|
|
2212
1906
|
this.popupInstance.removeMe(this.currentComponent);
|
|
2213
1907
|
};
|
|
1908
|
+
RAWidgetContainer.prototype.getwidgetTitleTranslation = function (item) {
|
|
1909
|
+
var rKey = 'DBW_' + this.translateService.makeCode(item);
|
|
1910
|
+
var translatedString = '';
|
|
1911
|
+
if (this.dashboardService.clientId) {
|
|
1912
|
+
var translationModule = this.dashboardService.clientId + '_DBW';
|
|
1913
|
+
translatedString = this.translateService.translate(translationModule + '.' + rKey);
|
|
1914
|
+
if (translatedString.toLowerCase() === rKey.toLowerCase()) {
|
|
1915
|
+
return item;
|
|
1916
|
+
}
|
|
1917
|
+
else {
|
|
1918
|
+
return translatedString;
|
|
1919
|
+
}
|
|
1920
|
+
}
|
|
1921
|
+
else
|
|
1922
|
+
return item;
|
|
1923
|
+
};
|
|
2214
1924
|
RAWidgetContainer.ctorParameters = function () { return [
|
|
2215
1925
|
{ type: RaDashboardService },
|
|
2216
1926
|
{ type: ngxUiLoader.NgxUiLoaderService },
|
|
@@ -2253,10 +1963,6 @@
|
|
|
2253
1963
|
core.Input('global-filter'),
|
|
2254
1964
|
__metadata("design:type", Object)
|
|
2255
1965
|
], RAWidgetContainer.prototype, "globalFilter", void 0);
|
|
2256
|
-
__decorate([
|
|
2257
|
-
core.Input('dashboard-info'),
|
|
2258
|
-
__metadata("design:type", Object)
|
|
2259
|
-
], RAWidgetContainer.prototype, "dashboardInfo", void 0);
|
|
2260
1966
|
__decorate([
|
|
2261
1967
|
core.Input('data'),
|
|
2262
1968
|
__metadata("design:type", Object)
|
|
@@ -2281,14 +1987,6 @@
|
|
|
2281
1987
|
core.Input('grid-cell-height'),
|
|
2282
1988
|
__metadata("design:type", Number)
|
|
2283
1989
|
], RAWidgetContainer.prototype, "gridCellHeight", void 0);
|
|
2284
|
-
__decorate([
|
|
2285
|
-
core.Input('bulk-action-data'),
|
|
2286
|
-
__metadata("design:type", Object)
|
|
2287
|
-
], RAWidgetContainer.prototype, "bulkActionData", void 0);
|
|
2288
|
-
__decorate([
|
|
2289
|
-
core.Input(),
|
|
2290
|
-
__metadata("design:type", Boolean)
|
|
2291
|
-
], RAWidgetContainer.prototype, "canLoadData", void 0);
|
|
2292
1990
|
__decorate([
|
|
2293
1991
|
core.Output(),
|
|
2294
1992
|
__metadata("design:type", Object)
|
|
@@ -2297,14 +1995,6 @@
|
|
|
2297
1995
|
core.Output(),
|
|
2298
1996
|
__metadata("design:type", Object)
|
|
2299
1997
|
], RAWidgetContainer.prototype, "updateAppliedFilters", void 0);
|
|
2300
|
-
__decorate([
|
|
2301
|
-
core.Output(),
|
|
2302
|
-
__metadata("design:type", Object)
|
|
2303
|
-
], RAWidgetContainer.prototype, "dataLoaded", void 0);
|
|
2304
|
-
__decorate([
|
|
2305
|
-
core.Output(),
|
|
2306
|
-
__metadata("design:type", Object)
|
|
2307
|
-
], RAWidgetContainer.prototype, "widgetLoaded", void 0);
|
|
2308
1998
|
__decorate([
|
|
2309
1999
|
core.Input('dom-resized'),
|
|
2310
2000
|
__metadata("design:type", Boolean),
|
|
@@ -5303,13 +4993,11 @@
|
|
|
5303
4993
|
function RaBaseDashboardTemplate(ngZone) {
|
|
5304
4994
|
var _this = this;
|
|
5305
4995
|
this.ngZone = ngZone;
|
|
5306
|
-
this.initialize = function (eventBus, userDashboardId, appConfig
|
|
4996
|
+
this.initialize = function (eventBus, userDashboardId, appConfig) {
|
|
5307
4997
|
_this.ngZone.run(function () {
|
|
5308
4998
|
_this.userDashboardId = userDashboardId;
|
|
5309
4999
|
_this.appConfig = appConfig;
|
|
5310
5000
|
_this.raDashboardEventBus = eventBus;
|
|
5311
|
-
_this.dashboardInfo = dashboardInfo;
|
|
5312
|
-
_this.templateConfig = templateConfig;
|
|
5313
5001
|
});
|
|
5314
5002
|
_this.init();
|
|
5315
5003
|
};
|