@schneideress/dashboardframework 0.0.273 → 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 +122 -430
- 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 -164
- package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +35 -64
- 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 -166
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +35 -64
- 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 +100 -254
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +101 -257
- 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,12 +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
|
-
if (location.href.indexOf('/kiosk/') > -1)
|
|
1006
|
-
this.initialWidgetCount = 1000;
|
|
1007
|
-
this.currentLoadedIndex = 0;
|
|
1008
|
-
this.loading = false;
|
|
1009
793
|
var widgetInfo = {
|
|
1010
794
|
dashboardId: userDashboarId.toString(),
|
|
1011
795
|
dashboardAreaKey: areaKey
|
|
@@ -1024,8 +808,9 @@
|
|
|
1024
808
|
});
|
|
1025
809
|
_this.checkPAMWidgets();
|
|
1026
810
|
if (widgets && widgets.length > 0) {
|
|
1027
|
-
_this.
|
|
1028
|
-
_this.
|
|
811
|
+
_this.dashboardService.clientId = widgets[0].clientId;
|
|
812
|
+
_this.widgetList = _this.mapObjectListToGridsterItemList(widgets);
|
|
813
|
+
_this.setAreaHeight();
|
|
1029
814
|
_this.raDashboardEventBus.publish(exports.RAEvent.HideDashboardBanner, false);
|
|
1030
815
|
}
|
|
1031
816
|
else {
|
|
@@ -1034,45 +819,6 @@
|
|
|
1034
819
|
}
|
|
1035
820
|
});
|
|
1036
821
|
};
|
|
1037
|
-
RADashboardArea.prototype.loadWidgetsDelta = function () {
|
|
1038
|
-
var _this = this;
|
|
1039
|
-
var _a;
|
|
1040
|
-
if (!this.loading) {
|
|
1041
|
-
this.loading = true;
|
|
1042
|
-
var widgets = this.mapObjectListToGridsterItemList(this.userWidgets.slice(this.currentLoadedIndex, (this.currentLoadedIndex + this.initialWidgetCount)));
|
|
1043
|
-
this.currentLoadedIndex += this.initialWidgetCount;
|
|
1044
|
-
(_a = this.widgetList).push.apply(_a, __spread(widgets));
|
|
1045
|
-
this.setAreaHeight();
|
|
1046
|
-
setTimeout(function () {
|
|
1047
|
-
_this.loading = false;
|
|
1048
|
-
});
|
|
1049
|
-
}
|
|
1050
|
-
};
|
|
1051
|
-
RADashboardArea.prototype.dataLoaded = function (widgetElement) {
|
|
1052
|
-
this.loadNext();
|
|
1053
|
-
};
|
|
1054
|
-
RADashboardArea.prototype.loadNext = function () {
|
|
1055
|
-
if (this.divBottom) {
|
|
1056
|
-
if (this.elementInViewport(this.divBottom.nativeElement)) {
|
|
1057
|
-
this.loadWidgetsDelta();
|
|
1058
|
-
}
|
|
1059
|
-
}
|
|
1060
|
-
};
|
|
1061
|
-
RADashboardArea.prototype.elementInViewport = function (el) {
|
|
1062
|
-
var top = el.offsetTop;
|
|
1063
|
-
var left = el.offsetLeft;
|
|
1064
|
-
var width = el.offsetWidth;
|
|
1065
|
-
var height = el.offsetHeight;
|
|
1066
|
-
while (el.offsetParent) {
|
|
1067
|
-
el = el.offsetParent;
|
|
1068
|
-
top += el.offsetTop;
|
|
1069
|
-
left += el.offsetLeft;
|
|
1070
|
-
}
|
|
1071
|
-
return (top >= window.scrollY &&
|
|
1072
|
-
left >= window.scrollX &&
|
|
1073
|
-
(top + height) <= (window.scrollY + window.innerHeight) &&
|
|
1074
|
-
(left + width) <= (window.scrollX + window.innerWidth));
|
|
1075
|
-
};
|
|
1076
822
|
/** To set Area(Gridster) height dynamically as widgets are added/removed */
|
|
1077
823
|
RADashboardArea.prototype.setAreaHeight = function () {
|
|
1078
824
|
var _this = this;
|
|
@@ -1116,22 +862,22 @@
|
|
|
1116
862
|
/** To remove a widget instance from dashboard and to save info in database */
|
|
1117
863
|
RADashboardArea.prototype.deleteWidget = function (widgetInstanceId, isalertDisabled) {
|
|
1118
864
|
if (isalertDisabled === void 0) { isalertDisabled = false; }
|
|
1119
|
-
var widget = this.userWidgets.filter(function (item) {
|
|
1120
|
-
return item.widgetInstanceId === widgetInstanceId;
|
|
1121
|
-
});
|
|
1122
|
-
if (widget.length > 0) {
|
|
1123
|
-
this.userWidgets.splice(this.userWidgets.indexOf(widget[0]), 1);
|
|
1124
|
-
}
|
|
1125
|
-
if (this.PAMWidgets.length > 0) {
|
|
1126
|
-
var indx = this.PAMWidgets.indexOf(widgetInstanceId);
|
|
1127
|
-
if (indx > -1)
|
|
1128
|
-
this.PAMWidgets.splice(indx, 1);
|
|
1129
|
-
this.checkPAMWidgets();
|
|
1130
|
-
}
|
|
1131
865
|
var gridsterItem = this.widgetList.filter(function (item) {
|
|
1132
866
|
return item.widgetInfo.widgetInstanceId === widgetInstanceId;
|
|
1133
867
|
});
|
|
1134
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
|
+
}
|
|
1135
881
|
this.widgetList.splice(this.widgetList.indexOf(gridsterItem[0]), 1);
|
|
1136
882
|
this.setAreaHeight();
|
|
1137
883
|
if (!isalertDisabled) {
|
|
@@ -1146,15 +892,11 @@
|
|
|
1146
892
|
/**To rearrange widgets position in the dashboard, compactLeft&Up,compactLeft,compactUp,etc*/
|
|
1147
893
|
RADashboardArea.prototype.rearrangeWidgets = function () {
|
|
1148
894
|
var _this = this;
|
|
1149
|
-
this.currentLoadedIndex = 0;
|
|
1150
|
-
this.loading = false;
|
|
1151
895
|
for (var i = 0; i < this.userWidgets.length; i++) {
|
|
1152
896
|
this.userWidgets[i].position_x = 0;
|
|
1153
897
|
this.userWidgets[i].position_y = 0;
|
|
1154
898
|
}
|
|
1155
|
-
this.widgetList =
|
|
1156
|
-
this.loadWidgetsDelta();
|
|
1157
|
-
this.raDashboardEventBus.publish(exports.RAEvent.HideDashboardBanner, false);
|
|
899
|
+
this.widgetList = this.mapObjectListToGridsterItemList(this.userWidgets);
|
|
1158
900
|
if (this.widgetList.length > 0)
|
|
1159
901
|
this.updateWidgetPosition(this.widgetList[0].widgetInfo.widgetInstanceId);
|
|
1160
902
|
setTimeout(function () {
|
|
@@ -1187,32 +929,30 @@
|
|
|
1187
929
|
this.ngxService.start();
|
|
1188
930
|
this.dashboardService.addWidget(data, this.appConfig).subscribe(function (widget) {
|
|
1189
931
|
_this.userWidgets.push(widget);
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
_this.gridcellHeight = curRowHeight;
|
|
1199
|
-
}
|
|
1200
|
-
}
|
|
1201
|
-
var widgetInstanceId = 0;
|
|
1202
|
-
if (widget && widget.widgetInstanceId) {
|
|
1203
|
-
widgetInstanceId = widget.widgetInstanceId;
|
|
1204
|
-
/**To save added widget position in db */
|
|
1205
|
-
if (_this.responsiveService.IsDesktopView) {
|
|
1206
|
-
setTimeout(function () {
|
|
1207
|
-
_this.updateWidgetPosition(widgetInstanceId);
|
|
1208
|
-
});
|
|
1209
|
-
}
|
|
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;
|
|
1210
940
|
}
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
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
|
+
});
|
|
1214
950
|
}
|
|
1215
951
|
}
|
|
952
|
+
if (widget.settings && widget.settings.isPAMWidget) {
|
|
953
|
+
_this.PAMWidgets.push(widget.widgetInstanceId);
|
|
954
|
+
_this.checkPAMWidgets();
|
|
955
|
+
}
|
|
1216
956
|
_this.raDashboardEventBus.publish(exports.RAEvent.WidgetAdded, widget);
|
|
1217
957
|
});
|
|
1218
958
|
};
|
|
@@ -1241,14 +981,12 @@
|
|
|
1241
981
|
});
|
|
1242
982
|
}
|
|
1243
983
|
this.userWidgets.push(data);
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
this.checkPAMWidgets();
|
|
1251
|
-
}
|
|
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();
|
|
1252
990
|
}
|
|
1253
991
|
};
|
|
1254
992
|
RADashboardArea.prototype.mapObjectListToGridsterItemList = function (widgetList) {
|
|
@@ -1277,11 +1015,8 @@
|
|
|
1277
1015
|
});
|
|
1278
1016
|
return widgetListArray;
|
|
1279
1017
|
};
|
|
1280
|
-
RADashboardArea.prototype.
|
|
1281
|
-
|
|
1282
|
-
this.raDashboardEventBus.publish(exports.RAEvent.AddNewWidgetToDashboard, null);
|
|
1283
|
-
else if (this.emptyDashboardButtonAction == "filter")
|
|
1284
|
-
this.raDashboardEventBus.publish(exports.RAEvent.GlobalFilterClick, null);
|
|
1018
|
+
RADashboardArea.prototype.addNewWidget = function () {
|
|
1019
|
+
this.raDashboardEventBus.publish(exports.RAEvent.AddNewWidgetToDashboard, null);
|
|
1285
1020
|
};
|
|
1286
1021
|
RADashboardArea.prototype.updateAppliedFilters = function (data) {
|
|
1287
1022
|
this.raDashboardEventBus.publish(exports.RAEvent.UpdateAppledFiterForInapplicableFilter, data);
|
|
@@ -1331,14 +1066,6 @@
|
|
|
1331
1066
|
core.Input('app-config'),
|
|
1332
1067
|
__metadata("design:type", Object)
|
|
1333
1068
|
], RADashboardArea.prototype, "appConfig", void 0);
|
|
1334
|
-
__decorate([
|
|
1335
|
-
core.Input('dashboard-info'),
|
|
1336
|
-
__metadata("design:type", Object)
|
|
1337
|
-
], RADashboardArea.prototype, "dashboardInfo", void 0);
|
|
1338
|
-
__decorate([
|
|
1339
|
-
core.Input(),
|
|
1340
|
-
__metadata("design:type", Object)
|
|
1341
|
-
], RADashboardArea.prototype, "templateConfig", void 0);
|
|
1342
1069
|
__decorate([
|
|
1343
1070
|
core.Output(),
|
|
1344
1071
|
__metadata("design:type", Object)
|
|
@@ -1347,15 +1074,11 @@
|
|
|
1347
1074
|
core.ViewChild('gridWrapper', { static: false }),
|
|
1348
1075
|
__metadata("design:type", core.ElementRef)
|
|
1349
1076
|
], RADashboardArea.prototype, "gridWrapper", void 0);
|
|
1350
|
-
__decorate([
|
|
1351
|
-
core.ViewChild('divBottom', { static: false }),
|
|
1352
|
-
__metadata("design:type", core.ElementRef)
|
|
1353
|
-
], RADashboardArea.prototype, "divBottom", void 0);
|
|
1354
1077
|
RADashboardArea = __decorate([
|
|
1355
1078
|
core.Component({
|
|
1356
1079
|
selector: 'ra-dashboard-area',
|
|
1357
|
-
template: "<div #gridWrapper class=\"wrap gridster gridster-mobile\"
|
|
1358
|
-
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}}"]
|
|
1359
1082
|
}),
|
|
1360
1083
|
__metadata("design:paramtypes", [RaDashboardService,
|
|
1361
1084
|
core.NgZone,
|
|
@@ -1458,11 +1181,8 @@
|
|
|
1458
1181
|
this.showExcell = true;
|
|
1459
1182
|
this.hideTitle = false;
|
|
1460
1183
|
this.inapplicableFilters = [];
|
|
1461
|
-
this.canLoadData = false;
|
|
1462
1184
|
this.widgetDeleted = new core.EventEmitter();
|
|
1463
1185
|
this.updateAppliedFilters = new core.EventEmitter();
|
|
1464
|
-
this.dataLoaded = new core.EventEmitter();
|
|
1465
|
-
this.widgetLoaded = new core.EventEmitter();
|
|
1466
1186
|
this.isWidgetStateApplicable = false;
|
|
1467
1187
|
this.widgetEmptyState = '';
|
|
1468
1188
|
this.lockVisible = false;
|
|
@@ -1487,7 +1207,7 @@
|
|
|
1487
1207
|
configurable: true
|
|
1488
1208
|
});
|
|
1489
1209
|
RAWidgetContainer.prototype.ngOnInit = function () {
|
|
1490
|
-
this.WidgetDisplayName = this.
|
|
1210
|
+
this.WidgetDisplayName = this.getwidgetTitleTranslation(this.data.widgetInfo.widgetTitle);
|
|
1491
1211
|
this.lockIconTitle = this.translateService.translate('Common.lockedfields');
|
|
1492
1212
|
this.lockIconFooter = this.translateService.translate('Common.lockedfieldseditinfo');
|
|
1493
1213
|
this.inapplicableIconTitle = this.translateService.translate('Common.InapplicableFilters');
|
|
@@ -1508,32 +1228,19 @@
|
|
|
1508
1228
|
});
|
|
1509
1229
|
});
|
|
1510
1230
|
}
|
|
1511
|
-
if (this.widgetElement) {
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
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);
|
|
1516
1236
|
}
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
var filterObj = this.getParsedConfig(this.globalFilter);
|
|
1520
|
-
if (filterObj.WidgetInstanceId) {
|
|
1521
|
-
if (this.data.widgetInfo.widgetInstanceId != filterObj.WidgetInstanceId)
|
|
1522
|
-
this.refreshWidget(this.data.widgetInfo);
|
|
1523
|
-
}
|
|
1524
|
-
else {
|
|
1525
|
-
//this.refreshWidget(this.data.widgetInfo);
|
|
1526
|
-
}
|
|
1527
|
-
}
|
|
1528
|
-
}
|
|
1529
|
-
if (changes.width && changes.width.currentValue != changes.width.previousValue ||
|
|
1530
|
-
(changes.height && changes.height.currentValue != changes.height.previousValue)) {
|
|
1531
|
-
this.invokeWidgetResizedEvent();
|
|
1237
|
+
else {
|
|
1238
|
+
this.refreshWidget(this.data.widgetInfo);
|
|
1532
1239
|
}
|
|
1533
1240
|
}
|
|
1534
|
-
if (changes.
|
|
1535
|
-
|
|
1536
|
-
|
|
1241
|
+
if (changes.width && changes.width.currentValue != changes.width.previousValue ||
|
|
1242
|
+
(changes.height && changes.height.currentValue != changes.height.previousValue)) {
|
|
1243
|
+
this.invokeWidgetResizedEvent();
|
|
1537
1244
|
}
|
|
1538
1245
|
};
|
|
1539
1246
|
RAWidgetContainer.prototype.invokeWidgetResizedEvent = function () {
|
|
@@ -1725,10 +1432,6 @@
|
|
|
1725
1432
|
_this.showPanel = true;
|
|
1726
1433
|
else
|
|
1727
1434
|
_this.showPanel = false;
|
|
1728
|
-
if (!_this.data.dataLoaded) {
|
|
1729
|
-
_this.data.dataLoaded = true;
|
|
1730
|
-
_this.dataLoaded.emit(_this.widgetElement);
|
|
1731
|
-
}
|
|
1732
1435
|
break;
|
|
1733
1436
|
case 'onConfigEditClicked':
|
|
1734
1437
|
_this.editWidget();
|
|
@@ -1801,9 +1504,7 @@
|
|
|
1801
1504
|
widgetConfigFilter.configChanges = this.getConfigChanges(false);
|
|
1802
1505
|
widgetConfigFilter.widgetInfo.widgetName = widgetInfo.widgetName;
|
|
1803
1506
|
widgetConfigFilter.globalFilter = this.globalFilter;
|
|
1804
|
-
|
|
1805
|
-
//this.widgetElement.loadContent(widgetConfigFilter);
|
|
1806
|
-
this.widgetLoaded.emit();
|
|
1507
|
+
this.widgetElement.loadContent(widgetConfigFilter);
|
|
1807
1508
|
return [4 /*yield*/, this.setLock(widgetConfigFilter.config)];
|
|
1808
1509
|
case 1:
|
|
1809
1510
|
_a.sent();
|
|
@@ -2073,12 +1774,9 @@
|
|
|
2073
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;">';
|
|
2074
1775
|
var settings = '';
|
|
2075
1776
|
if (this.isWidgetMgmnt) {
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
settings += this.getHtmlForButton('wcCopyWidget', 'fal fa-copy', this.copyText);
|
|
2080
|
-
if (!this.data.widgetInfo.templateWidgetSettings || !this.data.widgetInfo.templateWidgetSettings.hideMove)
|
|
2081
|
-
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);
|
|
2082
1780
|
}
|
|
2083
1781
|
var customPageParams = false;
|
|
2084
1782
|
if (this.data.widgetInfo && this.data.widgetInfo.widgetSettings) {
|
|
@@ -2087,14 +1785,14 @@
|
|
|
2087
1785
|
customPageParams = true;
|
|
2088
1786
|
}
|
|
2089
1787
|
}
|
|
2090
|
-
if (
|
|
1788
|
+
if ((this.detailPageUrl || customPageParams) && this.checkVisitLinkVisiblity()) {
|
|
2091
1789
|
settings += '<a style="max-height: 30px;align-items: center;align-content: center; display: flex;" id="wcVisitWidget">';
|
|
2092
1790
|
settings += '<i style="padding-left: 4px;font-size: 27px !important;" class="fal fa-angle-right"></i> ';
|
|
2093
1791
|
settings += '<span style="padding-left: 11px;margin-top: 2px;" style="padding-left: 6px;">';
|
|
2094
1792
|
settings += this.translateService.translate('Common.visitpage');
|
|
2095
1793
|
settings += '</span></a>';
|
|
2096
1794
|
}
|
|
2097
|
-
if (
|
|
1795
|
+
if ((this.detailPageUrl && this.checkVisitLinkVisiblity()) || this.isWidgetMgmnt) {
|
|
2098
1796
|
html += '<div style="color: #9FA0A4;font-size: 12px;padding-top: 8px;padding-left: 12px;">';
|
|
2099
1797
|
html += this.translateService.translate('Common.settings') + '</div>';
|
|
2100
1798
|
html += settings;
|
|
@@ -2126,7 +1824,7 @@
|
|
|
2126
1824
|
if (this.isDownloadIconVisible && this.isWidgetMgmnt && this.showExcell) {
|
|
2127
1825
|
html += this.getHr();
|
|
2128
1826
|
}
|
|
2129
|
-
if (this.isWidgetMgmnt
|
|
1827
|
+
if (this.isWidgetMgmnt) {
|
|
2130
1828
|
html += '<a id="wcWidgetDelete"><i class="fal fa-times" style="padding-left: 3px;color: red;"></i><span>';
|
|
2131
1829
|
html += this.deleteText;
|
|
2132
1830
|
html += '</span></a>';
|
|
@@ -2207,6 +1905,22 @@
|
|
|
2207
1905
|
if (this.currentComponent)
|
|
2208
1906
|
this.popupInstance.removeMe(this.currentComponent);
|
|
2209
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
|
+
};
|
|
2210
1924
|
RAWidgetContainer.ctorParameters = function () { return [
|
|
2211
1925
|
{ type: RaDashboardService },
|
|
2212
1926
|
{ type: ngxUiLoader.NgxUiLoaderService },
|
|
@@ -2249,10 +1963,6 @@
|
|
|
2249
1963
|
core.Input('global-filter'),
|
|
2250
1964
|
__metadata("design:type", Object)
|
|
2251
1965
|
], RAWidgetContainer.prototype, "globalFilter", void 0);
|
|
2252
|
-
__decorate([
|
|
2253
|
-
core.Input('dashboard-info'),
|
|
2254
|
-
__metadata("design:type", Object)
|
|
2255
|
-
], RAWidgetContainer.prototype, "dashboardInfo", void 0);
|
|
2256
1966
|
__decorate([
|
|
2257
1967
|
core.Input('data'),
|
|
2258
1968
|
__metadata("design:type", Object)
|
|
@@ -2277,14 +1987,6 @@
|
|
|
2277
1987
|
core.Input('grid-cell-height'),
|
|
2278
1988
|
__metadata("design:type", Number)
|
|
2279
1989
|
], RAWidgetContainer.prototype, "gridCellHeight", void 0);
|
|
2280
|
-
__decorate([
|
|
2281
|
-
core.Input('bulk-action-data'),
|
|
2282
|
-
__metadata("design:type", Object)
|
|
2283
|
-
], RAWidgetContainer.prototype, "bulkActionData", void 0);
|
|
2284
|
-
__decorate([
|
|
2285
|
-
core.Input(),
|
|
2286
|
-
__metadata("design:type", Boolean)
|
|
2287
|
-
], RAWidgetContainer.prototype, "canLoadData", void 0);
|
|
2288
1990
|
__decorate([
|
|
2289
1991
|
core.Output(),
|
|
2290
1992
|
__metadata("design:type", Object)
|
|
@@ -2293,14 +1995,6 @@
|
|
|
2293
1995
|
core.Output(),
|
|
2294
1996
|
__metadata("design:type", Object)
|
|
2295
1997
|
], RAWidgetContainer.prototype, "updateAppliedFilters", void 0);
|
|
2296
|
-
__decorate([
|
|
2297
|
-
core.Output(),
|
|
2298
|
-
__metadata("design:type", Object)
|
|
2299
|
-
], RAWidgetContainer.prototype, "dataLoaded", void 0);
|
|
2300
|
-
__decorate([
|
|
2301
|
-
core.Output(),
|
|
2302
|
-
__metadata("design:type", Object)
|
|
2303
|
-
], RAWidgetContainer.prototype, "widgetLoaded", void 0);
|
|
2304
1998
|
__decorate([
|
|
2305
1999
|
core.Input('dom-resized'),
|
|
2306
2000
|
__metadata("design:type", Boolean),
|
|
@@ -5299,13 +4993,11 @@
|
|
|
5299
4993
|
function RaBaseDashboardTemplate(ngZone) {
|
|
5300
4994
|
var _this = this;
|
|
5301
4995
|
this.ngZone = ngZone;
|
|
5302
|
-
this.initialize = function (eventBus, userDashboardId, appConfig
|
|
4996
|
+
this.initialize = function (eventBus, userDashboardId, appConfig) {
|
|
5303
4997
|
_this.ngZone.run(function () {
|
|
5304
4998
|
_this.userDashboardId = userDashboardId;
|
|
5305
4999
|
_this.appConfig = appConfig;
|
|
5306
5000
|
_this.raDashboardEventBus = eventBus;
|
|
5307
|
-
_this.dashboardInfo = dashboardInfo;
|
|
5308
|
-
_this.templateConfig = templateConfig;
|
|
5309
5001
|
});
|
|
5310
5002
|
_this.init();
|
|
5311
5003
|
};
|