@schneideress/dashboardframework 0.0.275 → 0.0.276
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 +17 -9
- package/bundles/schneideress-dashboardframework.umd.js.map +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js +2 -2
- package/bundles/schneideress-dashboardframework.umd.min.js.map +1 -1
- package/esm2015/lib/ra-dashboard-area/ra.dashboard.area.js +15 -6
- package/esm5/lib/ra-dashboard-area/ra.dashboard.area.js +15 -6
- package/fesm2015/schneideress-dashboardframework.js +14 -5
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +14 -5
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/lib/ra-dashboard-area/ra.dashboard.area.d.ts +3 -1
- package/package.json +1 -1
- package/schneideress-dashboardframework.metadata.json +1 -1
|
@@ -5,6 +5,7 @@ import { BaseService, RATranslateService, RAPermissionService, DomService, RACom
|
|
|
5
5
|
import { filter, map } from 'rxjs/operators';
|
|
6
6
|
import { NgxUiLoaderService, NgxUiLoaderModule } from 'ngx-ui-loader';
|
|
7
7
|
import { NotifierService, NotifierModule } from 'angular-notifier';
|
|
8
|
+
import { Router } from '@angular/router';
|
|
8
9
|
import { RaWidgetlockStatus, WidgetViewState, RADownloadType, RADownloadOption } from '@schneideress/widgetframework';
|
|
9
10
|
import { BrowserModule } from '@angular/platform-browser';
|
|
10
11
|
import { HttpClientModule } from '@angular/common/http';
|
|
@@ -394,7 +395,7 @@ var RADashboardResponsiveService = /** @class */ (function () {
|
|
|
394
395
|
}());
|
|
395
396
|
|
|
396
397
|
var RADashboardArea = /** @class */ (function () {
|
|
397
|
-
function RADashboardArea(dashboardService, ngZone, ngxService, translateService, notifier, responsiveService, permissionService) {
|
|
398
|
+
function RADashboardArea(dashboardService, ngZone, ngxService, translateService, notifier, responsiveService, permissionService, router) {
|
|
398
399
|
this.dashboardService = dashboardService;
|
|
399
400
|
this.ngZone = ngZone;
|
|
400
401
|
this.ngxService = ngxService;
|
|
@@ -402,6 +403,7 @@ var RADashboardArea = /** @class */ (function () {
|
|
|
402
403
|
this.notifier = notifier;
|
|
403
404
|
this.responsiveService = responsiveService;
|
|
404
405
|
this.permissionService = permissionService;
|
|
406
|
+
this.router = router;
|
|
405
407
|
this.widgetList = Array();
|
|
406
408
|
this.gridheight = 300;
|
|
407
409
|
this.gridcellHeight = 0;
|
|
@@ -579,9 +581,14 @@ var RADashboardArea = /** @class */ (function () {
|
|
|
579
581
|
/** To retrieve widgets based on userDashboardid and area name */
|
|
580
582
|
RADashboardArea.prototype.loadWidgets = function (userDashboarId, areaKey) {
|
|
581
583
|
var _this = this;
|
|
584
|
+
var currentUrl = this.router.url;
|
|
585
|
+
var IsTypeIndicator = false;
|
|
586
|
+
if (currentUrl.includes('indicatorDashboard'))
|
|
587
|
+
IsTypeIndicator = true;
|
|
582
588
|
var widgetInfo = {
|
|
583
589
|
dashboardId: userDashboarId.toString(),
|
|
584
|
-
dashboardAreaKey: areaKey
|
|
590
|
+
dashboardAreaKey: areaKey,
|
|
591
|
+
IsTypeIndicator: IsTypeIndicator
|
|
585
592
|
};
|
|
586
593
|
this.widgetList = [];
|
|
587
594
|
this.dashboardService.getWidgetsByDashboardArea(widgetInfo, this.appConfig).subscribe(function (widgets) {
|
|
@@ -825,7 +832,8 @@ var RADashboardArea = /** @class */ (function () {
|
|
|
825
832
|
{ type: RATranslateService },
|
|
826
833
|
{ type: NotifierService },
|
|
827
834
|
{ type: RADashboardResponsiveService },
|
|
828
|
-
{ type: RAPermissionService }
|
|
835
|
+
{ type: RAPermissionService },
|
|
836
|
+
{ type: Router }
|
|
829
837
|
]; };
|
|
830
838
|
__decorate([
|
|
831
839
|
Input('user-dashboard-id'),
|
|
@@ -867,7 +875,7 @@ var RADashboardArea = /** @class */ (function () {
|
|
|
867
875
|
Component({
|
|
868
876
|
selector: 'ra-dashboard-area',
|
|
869
877
|
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>",
|
|
870
|
-
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
|
|
878
|
+
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: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}}"]
|
|
871
879
|
}),
|
|
872
880
|
__metadata("design:paramtypes", [RaDashboardService,
|
|
873
881
|
NgZone,
|
|
@@ -875,7 +883,8 @@ var RADashboardArea = /** @class */ (function () {
|
|
|
875
883
|
RATranslateService,
|
|
876
884
|
NotifierService,
|
|
877
885
|
RADashboardResponsiveService,
|
|
878
|
-
RAPermissionService
|
|
886
|
+
RAPermissionService,
|
|
887
|
+
Router])
|
|
879
888
|
], RADashboardArea);
|
|
880
889
|
return RADashboardArea;
|
|
881
890
|
}());
|