gamma-app-controller 1.1.25 → 1.1.27
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/esm2020/lib/application-controller/application-controller.module.mjs +20 -20
- package/esm2020/lib/application-controller/application-dataset-component/application-dataset/application-dataset.component.mjs +1 -1
- package/esm2020/lib/application-controller/application-dataset-component/create-dataset/create-dataset.component.mjs +1 -1
- package/esm2020/lib/application-controller/application-filter/application-filter.component.mjs +1 -1
- package/esm2020/lib/application-controller/application-menu-controller/application-menus/application-menus.component.mjs +1 -1
- package/esm2020/lib/application-controller/application-metric-config/all-metrics-config/all-metrics-config.component.mjs +1 -1
- package/esm2020/lib/application-controller/application-metric-config/create-metrics/create-metrics.component.mjs +1 -1
- package/esm2020/lib/application-controller/application-view-components/application-views/application-views.component.mjs +1 -1
- package/esm2020/lib/application-controller/application-view-components/create-comp-view/create-comp-view.component.mjs +1 -1
- package/esm2020/lib/application-controller/page-controller/page-config/page-config.component.mjs +11 -11
- package/esm2020/lib/application-controller/page-controller/page-config-multi-layout/page-config-multi-layout.component.mjs +10 -10
- package/esm2020/lib/application-controller/page-controller/page-controller/page-controller.component.mjs +1 -1
- package/esm2020/lib/application-controller/support-components/dash-chart/dash-chart.component.mjs +1 -1
- package/esm2020/lib/application-controller/support-components/dash-table/dash-table.component.mjs +1 -1
- package/esm2020/lib/application-controller/support-components/dash-today-previous/dash-today-previous.component.mjs +1 -1
- package/esm2020/lib/application-controller/support-components/geo-map/geo-map.component.mjs +2 -2
- package/esm2020/lib/application-controller/support-components/heat-map/heat-map.component.mjs +1 -1
- package/esm2020/lib/application-controller/support-components/single-card/single-card.component.mjs +1 -1
- package/esm2020/lib/application-controller/support-components/table-with-bar/table-with-bar.component.mjs +2 -2
- package/esm2020/lib/shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component.mjs +116 -0
- package/esm2020/lib/shared/advanced-component/app-advance-header/app-header.component.mjs +306 -0
- package/esm2020/lib/shared/advanced-component/gamm-single-number-card/gamm-single-number-card.component.mjs +80 -0
- package/esm2020/lib/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.mjs +379 -0
- package/esm2020/lib/shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component.mjs +188 -0
- package/esm2020/lib/shared/advanced-component/gamma-geo-chart/gamma-geo-chart.component.mjs +435 -0
- package/esm2020/lib/shared/advanced-component/gamma-heatmap/gamma-heatmap.component.mjs +334 -0
- package/esm2020/lib/shared/advanced-component/gamma-table-clumn-bar-chart/gamma-table-clumn-bar-chart.component.mjs +155 -0
- package/esm2020/lib/shared/advanced-component/gamma-table-with-percentage/contentSafeHtml.mjs +20 -0
- package/esm2020/lib/shared/advanced-component/gamma-table-with-percentage/gamma-table-with-percentage.component.mjs +187 -0
- package/esm2020/lib/shared/advanced-component/gamma-today-previous/gamma-today-previous.component.mjs +86 -0
- package/esm2020/lib/shared/advanced-component/google-geo-map/google-geo-map.component.mjs +439 -0
- package/esm2020/lib/shared/app-title/app-title.component.mjs +67 -0
- package/esm2020/lib/shared/gamam-widget/gamam-widget.component.mjs +35 -0
- package/esm2020/lib/shared/gamma-advance-filter/gamma-advance-filter.component.mjs +273 -0
- package/esm2020/lib/shared/gamma-bread-crumbs/bread-crumbs.component.mjs +142 -0
- package/esm2020/lib/shared/kpi-comon-service.mjs +537 -0
- package/esm2020/lib/{application-controller/shared → shared}/loader/loader.component.mjs +1 -1
- package/esm2020/lib/{application-controller/shared → shared}/loading/loading.component.mjs +1 -1
- package/esm2020/lib/shared/loading/loadingModule.mjs +28 -0
- package/esm2020/lib/shared/safeHtmlPipe.mjs +20 -0
- package/esm2020/lib/template-module/KpiCreationModule/create-kpi-tree.component.mjs +381 -0
- package/esm2020/lib/template-module/KpiCreationModule/createKpi.service.mjs +90 -0
- package/esm2020/lib/template-module/KpiCreationModule/kpiCreation.module.mjs +184 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/animation.mjs +15 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/animations/defaults.mjs +12 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/animations/expand-collapse.mjs +16 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/animations/fade.mjs +160 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/animations/shake.mjs +58 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/animations/slide.mjs +116 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/animations/zoom.mjs +36 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/components/aside/aside.component.mjs +85 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/components/basic/basic.component.mjs +118 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/components/collapsable/collapsable.component.mjs +159 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/components/divider/divider.component.mjs +27 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/components/group/group.component.mjs +37 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/components/spacer/spacer.component.mjs +27 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/moment-helper.mjs +4 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/treeview-navigation.service.mjs +2 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/treeview-shared.service.mjs +16 -0
- package/esm2020/lib/template-module/KpiCreationModule/treeview/treeview.component.mjs +134 -0
- package/esm2020/lib/template-module/bookmarked-template/bookmarked-template.component.mjs +816 -0
- package/esm2020/lib/template-module/bookmarked-template/bookmarkedTemplate.module.mjs +149 -0
- package/esm2020/lib/template-module/cdrConfigModule/cdr-config.component.mjs +1 -1
- package/esm2020/lib/template-module/cdrConfigModule/cdrConfig.module.mjs +2 -2
- package/esm2020/lib/template-module/defaulLandingComponent/defaultLandingComponent.module.mjs +149 -0
- package/esm2020/lib/template-module/defaulLandingComponent/landing-component.component.mjs +870 -0
- package/esm2020/lib/template-module/exceptionConfigModule/exception-operation.component.mjs +1 -1
- package/esm2020/lib/template-module/exceptionConfigModule/exceptionConfig.module.mjs +2 -2
- package/esm2020/lib/template-module/kpiWithMultiLayout/dynamin-modal-multi.component.mjs +180 -0
- package/esm2020/lib/template-module/kpiWithMultiLayout/kpi-with-multilayout.component.mjs +992 -0
- package/esm2020/lib/template-module/kpiWithMultiLayout/kpiWithMultiayout.module.mjs +154 -0
- package/esm2020/lib/template-module/kpiWithSingleLayout/dynamin-modal.component.mjs +180 -0
- package/esm2020/lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component.mjs +1046 -0
- package/esm2020/lib/template-module/kpiWithSingleLayout/kpiWithSingleLayout.module.mjs +154 -0
- package/esm2020/public-api.mjs +39 -20
- package/fesm2015/gamma-app-controller.mjs +6750 -475
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +6709 -475
- package/fesm2020/gamma-app-controller.mjs.map +1 -1
- package/lib/application-controller/application-controller.module.d.ts +19 -19
- package/lib/application-controller/page-controller/page-config/page-config.component.d.ts +9 -9
- package/lib/application-controller/page-controller/page-config-multi-layout/page-config-multi-layout.component.d.ts +8 -8
- package/lib/{application-controller/shared → shared}/advanced-component/app-advance-header/app-header.component.d.ts +18 -2
- package/lib/{application-controller/shared → shared}/advanced-component/gamm-single-number-card/gamm-single-number-card.component.d.ts +3 -5
- package/lib/{application-controller/shared → shared}/advanced-component/gamma-advance-chart/gamma-advance-chart.component.d.ts +3 -1
- package/lib/{application-controller/shared → shared}/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component.d.ts +4 -2
- package/lib/{application-controller/shared → shared}/advanced-component/gamma-geo-chart/gamma-geo-chart.component.d.ts +1 -1
- package/lib/{application-controller/shared → shared}/advanced-component/gamma-heatmap/gamma-heatmap.component.d.ts +1 -1
- package/lib/{application-controller/shared → shared}/advanced-component/gamma-table-clumn-bar-chart/gamma-table-clumn-bar-chart.component.d.ts +1 -1
- package/lib/{application-controller/shared → shared}/advanced-component/gamma-table-with-percentage/gamma-table-with-percentage.component.d.ts +6 -2
- package/lib/{application-controller/shared → shared}/advanced-component/gamma-today-previous/gamma-today-previous.component.d.ts +1 -1
- package/lib/{application-controller/shared → shared}/advanced-component/google-geo-map/google-geo-map.component.d.ts +1 -1
- package/lib/{application-controller/shared → shared}/app-title/app-title.component.d.ts +1 -1
- package/lib/{application-controller/shared → shared}/gamam-widget/gamam-widget.component.d.ts +1 -1
- package/lib/{application-controller/shared → shared}/gamma-advance-filter/gamma-advance-filter.component.d.ts +3 -2
- package/lib/{application-controller/shared → shared}/gamma-bread-crumbs/bread-crumbs.component.d.ts +1 -1
- package/lib/{application-controller/shared → shared}/kpi-comon-service.d.ts +1 -1
- package/lib/template-module/KpiCreationModule/create-kpi-tree.component.d.ts +75 -0
- package/lib/template-module/KpiCreationModule/createKpi.service.d.ts +32 -0
- package/lib/template-module/KpiCreationModule/kpiCreation.module.d.ts +23 -0
- package/lib/template-module/KpiCreationModule/treeview/animation.d.ts +1 -0
- package/lib/template-module/KpiCreationModule/treeview/animations/defaults.d.ts +11 -0
- package/lib/template-module/KpiCreationModule/treeview/animations/expand-collapse.d.ts +2 -0
- package/lib/template-module/KpiCreationModule/treeview/animations/fade.d.ts +11 -0
- package/lib/template-module/KpiCreationModule/treeview/animations/shake.d.ts +2 -0
- package/lib/template-module/KpiCreationModule/treeview/animations/slide.d.ts +9 -0
- package/lib/template-module/KpiCreationModule/treeview/animations/zoom.d.ts +3 -0
- package/lib/template-module/KpiCreationModule/treeview/components/aside/aside.component.d.ts +26 -0
- package/lib/template-module/KpiCreationModule/treeview/components/basic/basic.component.d.ts +29 -0
- package/lib/template-module/KpiCreationModule/treeview/components/collapsable/collapsable.component.d.ts +37 -0
- package/lib/template-module/KpiCreationModule/treeview/components/divider/divider.component.d.ts +13 -0
- package/lib/template-module/KpiCreationModule/treeview/components/group/group.component.d.ts +17 -0
- package/lib/template-module/KpiCreationModule/treeview/components/spacer/spacer.component.d.ts +13 -0
- package/lib/template-module/KpiCreationModule/treeview/moment-helper.d.ts +3 -0
- package/lib/template-module/KpiCreationModule/treeview/treeview-navigation.service.d.ts +39 -0
- package/lib/template-module/KpiCreationModule/treeview/treeview-shared.service.d.ts +8 -0
- package/lib/template-module/KpiCreationModule/treeview/treeview.component.d.ts +52 -0
- package/lib/template-module/bookmarked-template/bookmarked-template.component.d.ts +109 -0
- package/lib/template-module/bookmarked-template/bookmarkedTemplate.module.d.ts +16 -0
- package/lib/template-module/cdrConfigModule/cdrConfig.module.d.ts +1 -1
- package/lib/template-module/defaulLandingComponent/defaultLandingComponent.module.d.ts +16 -0
- package/lib/template-module/defaulLandingComponent/landing-component.component.d.ts +109 -0
- package/lib/template-module/exceptionConfigModule/exceptionConfig.module.d.ts +1 -1
- package/lib/template-module/kpiWithMultiLayout/dynamin-modal-multi.component.d.ts +42 -0
- package/lib/template-module/kpiWithMultiLayout/kpi-with-multilayout.component.d.ts +117 -0
- package/lib/template-module/kpiWithMultiLayout/kpiWithMultiayout.module.d.ts +17 -0
- package/lib/template-module/kpiWithSingleLayout/dynamin-modal.component.d.ts +42 -0
- package/lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component.d.ts +122 -0
- package/lib/template-module/kpiWithSingleLayout/kpiWithSingleLayout.module.d.ts +17 -0
- package/package.json +1 -1
- package/public-api.d.ts +38 -19
- package/esm2020/lib/application-controller/shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component.mjs +0 -124
- package/esm2020/lib/application-controller/shared/advanced-component/app-advance-header/app-header.component.mjs +0 -220
- package/esm2020/lib/application-controller/shared/advanced-component/gamm-single-number-card/gamm-single-number-card.component.mjs +0 -95
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.mjs +0 -362
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component.mjs +0 -177
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-geo-chart/gamma-geo-chart.component.mjs +0 -441
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-heatmap/gamma-heatmap.component.mjs +0 -328
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-table-clumn-bar-chart/gamma-table-clumn-bar-chart.component.mjs +0 -155
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-table-with-percentage/contentSafeHtml.mjs +0 -20
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-table-with-percentage/gamma-table-with-percentage.component.mjs +0 -157
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-today-previous/gamma-today-previous.component.mjs +0 -85
- package/esm2020/lib/application-controller/shared/advanced-component/google-geo-map/google-geo-map.component.mjs +0 -439
- package/esm2020/lib/application-controller/shared/app-title/app-title.component.mjs +0 -67
- package/esm2020/lib/application-controller/shared/gamam-widget/gamam-widget.component.mjs +0 -35
- package/esm2020/lib/application-controller/shared/gamma-advance-filter/gamma-advance-filter.component.mjs +0 -237
- package/esm2020/lib/application-controller/shared/gamma-bread-crumbs/bread-crumbs.component.mjs +0 -142
- package/esm2020/lib/application-controller/shared/kpi-comon-service.mjs +0 -537
- package/esm2020/lib/application-controller/shared/loading/loadingModule.mjs +0 -28
- package/esm2020/lib/application-controller/shared/safeHtmlPipe.mjs +0 -20
- /package/lib/{application-controller/shared → shared}/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component.d.ts +0 -0
- /package/lib/{application-controller/shared → shared}/advanced-component/gamma-table-with-percentage/contentSafeHtml.d.ts +0 -0
- /package/lib/{application-controller/shared → shared}/loader/loader.component.d.ts +0 -0
- /package/lib/{application-controller/shared → shared}/loading/loading.component.d.ts +0 -0
- /package/lib/{application-controller/shared → shared}/loading/loadingModule.d.ts +0 -0
- /package/lib/{application-controller/shared → shared}/safeHtmlPipe.d.ts +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { IsActiveMatchOptions, Router } from '@angular/router';
|
|
3
|
+
import { CreateKpIService } from '../../../createKpi.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TreeViewBasicItemComponent implements OnInit, OnDestroy {
|
|
6
|
+
private _changeDetectorRef;
|
|
7
|
+
private _treeviewService;
|
|
8
|
+
private route;
|
|
9
|
+
item: any;
|
|
10
|
+
name: string | undefined;
|
|
11
|
+
internalRoute: string | undefined;
|
|
12
|
+
isEditIcon: boolean;
|
|
13
|
+
treeId: any;
|
|
14
|
+
editableKpiBasicData: EventEmitter<any>;
|
|
15
|
+
isActiveMatchOptions: IsActiveMatchOptions;
|
|
16
|
+
private _unsubscribeAll;
|
|
17
|
+
G_DEFAULT_START_DATE: any;
|
|
18
|
+
G_DEFAULT_END_DATE: any;
|
|
19
|
+
constructor(_changeDetectorRef: ChangeDetectorRef, _treeviewService: CreateKpIService, route: Router);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
ngOnDestroy(): void;
|
|
22
|
+
getKPIDataOnclick(kpiData: any, event: any): void;
|
|
23
|
+
getNavigateToKpi(data: any): void;
|
|
24
|
+
getNavigateKpi(data: any, kpiId: any, startDate: any, endDate: any): void;
|
|
25
|
+
getNavigateKpiByPageID(data: any, kpiId: any, pageId: any): void;
|
|
26
|
+
getEditTreeData(item: any): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewBasicItemComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeViewBasicItemComponent, "treeview-basic-item", never, { "item": "item"; "name": "name"; "internalRoute": "internalRoute"; "isEditIcon": "isEditIcon"; "treeId": "treeId"; }, { "editableKpiBasicData": "editableKpiBasicData"; }, never, never, false>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
4
|
+
import { TreeviewSharedService } from '../../treeview-shared.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TreeViewCollapsableItemComponent implements OnInit, OnDestroy {
|
|
7
|
+
private _changeDetectorRef;
|
|
8
|
+
private _router;
|
|
9
|
+
private _treeviewService;
|
|
10
|
+
static ngAcceptInputType_autoCollapse: BooleanInput;
|
|
11
|
+
autoCollapse: boolean;
|
|
12
|
+
item: any;
|
|
13
|
+
name: string;
|
|
14
|
+
treeId: string;
|
|
15
|
+
internalRoute: string;
|
|
16
|
+
isEditIcon: boolean;
|
|
17
|
+
isCollapsed: boolean;
|
|
18
|
+
editableKpiData: EventEmitter<any>;
|
|
19
|
+
isExpanded: boolean;
|
|
20
|
+
private _unsubscribeAll;
|
|
21
|
+
constructor(_changeDetectorRef: ChangeDetectorRef, _router: Router, _treeviewService: TreeviewSharedService);
|
|
22
|
+
get classList(): any;
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
ngOnDestroy(): void;
|
|
25
|
+
collapse(): void;
|
|
26
|
+
expand(): void;
|
|
27
|
+
toggleCollapsable(): void;
|
|
28
|
+
trackByFn(index: number, item: any): any;
|
|
29
|
+
private _hasActiveChild;
|
|
30
|
+
findActiveChild(item: any, treeId: any): any;
|
|
31
|
+
private _isChildrenOf;
|
|
32
|
+
getKpiEditKpiData(item: any): void;
|
|
33
|
+
getEditTreeData(item: any): void;
|
|
34
|
+
getKpiEditKpiBasicData(item: any): void;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewCollapsableItemComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeViewCollapsableItemComponent, "treeview-collapsable-item", never, { "autoCollapse": "autoCollapse"; "item": "item"; "name": "name"; "treeId": "treeId"; "internalRoute": "internalRoute"; "isEditIcon": "isEditIcon"; }, { "editableKpiData": "editableKpiData"; }, never, never, false>;
|
|
37
|
+
}
|
package/lib/template-module/KpiCreationModule/treeview/components/divider/divider.component.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TreeViewDividerItemComponent implements OnInit, OnDestroy {
|
|
4
|
+
private _changeDetectorRef;
|
|
5
|
+
item: any;
|
|
6
|
+
name: string;
|
|
7
|
+
private _unsubscribeAll;
|
|
8
|
+
constructor(_changeDetectorRef: ChangeDetectorRef);
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
ngOnDestroy(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewDividerItemComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeViewDividerItemComponent, "treeview-divider-item", never, { "item": "item"; "name": "name"; }, {}, never, never, false>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TreeViewGroupItemComponent implements OnInit, OnDestroy {
|
|
5
|
+
private _changeDetectorRef;
|
|
6
|
+
static ngAcceptInputType_autoCollapse: BooleanInput;
|
|
7
|
+
autoCollapse: boolean;
|
|
8
|
+
item: any;
|
|
9
|
+
name: string;
|
|
10
|
+
private _unsubscribeAll;
|
|
11
|
+
constructor(_changeDetectorRef: ChangeDetectorRef);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
trackByFn(index: number, item: any): any;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewGroupItemComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeViewGroupItemComponent, "treeview-group-item", never, { "autoCollapse": "autoCollapse"; "item": "item"; "name": "name"; }, {}, never, never, false>;
|
|
17
|
+
}
|
package/lib/template-module/KpiCreationModule/treeview/components/spacer/spacer.component.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TreeViewSpacerItemComponent implements OnInit, OnDestroy {
|
|
4
|
+
private _changeDetectorRef;
|
|
5
|
+
item: any;
|
|
6
|
+
name: string;
|
|
7
|
+
private _unsubscribeAll;
|
|
8
|
+
constructor(_changeDetectorRef: ChangeDetectorRef);
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
ngOnDestroy(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeViewSpacerItemComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeViewSpacerItemComponent, "treeview-spacer-item", never, { "item": "item"; "name": "name"; }, {}, never, never, false>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { IsActiveMatchOptions, Params, QueryParamsHandling } from '@angular/router';
|
|
2
|
+
export interface TreeViewItem {
|
|
3
|
+
id?: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
subtitle?: string;
|
|
6
|
+
type: 'aside' | 'basic' | 'collapsable' | 'divider' | 'group' | 'spacer';
|
|
7
|
+
hidden?: (item: TreeViewItem) => boolean;
|
|
8
|
+
active?: boolean;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
tooltip?: string;
|
|
11
|
+
link?: string;
|
|
12
|
+
fragment?: string;
|
|
13
|
+
preserveFragment?: boolean;
|
|
14
|
+
queryParams?: Params | null;
|
|
15
|
+
queryParamsHandling?: QueryParamsHandling | null;
|
|
16
|
+
externalLink?: boolean;
|
|
17
|
+
target?: '_blank' | '_self' | '_parent' | '_top' | string;
|
|
18
|
+
exactMatch?: boolean;
|
|
19
|
+
isActiveMatchOptions?: IsActiveMatchOptions;
|
|
20
|
+
function?: (item: TreeViewItem) => void;
|
|
21
|
+
classes?: {
|
|
22
|
+
title?: string;
|
|
23
|
+
subtitle?: string;
|
|
24
|
+
icon?: string;
|
|
25
|
+
wrapper?: string;
|
|
26
|
+
};
|
|
27
|
+
icon?: string;
|
|
28
|
+
badge?: {
|
|
29
|
+
title?: string;
|
|
30
|
+
classes?: string;
|
|
31
|
+
};
|
|
32
|
+
children?: TreeViewItem[];
|
|
33
|
+
meta?: any;
|
|
34
|
+
class?: any;
|
|
35
|
+
url?: any;
|
|
36
|
+
}
|
|
37
|
+
export declare type TreeViewItemAppearance = 'default' | 'compact' | 'dense' | 'thin';
|
|
38
|
+
export declare type TreeViewItemMode = 'over' | 'side';
|
|
39
|
+
export declare type TreeViewItemPosition = 'left' | 'right';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TreeviewSharedService {
|
|
4
|
+
onCollapsableItemCollapsed: Subject<any>;
|
|
5
|
+
onCollapsableItemExpanded: Subject<any>;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeviewSharedService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TreeviewSharedService>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { EventEmitter, OnDestroy, OnInit, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import { Router } from '@angular/router';
|
|
3
|
+
import { ScrollStrategyOptions } from '@angular/cdk/overlay';
|
|
4
|
+
import { ReplaySubject } from 'rxjs';
|
|
5
|
+
import { BooleanInput } from '@angular/cdk/coercion';
|
|
6
|
+
import { TreeViewItem } from './treeview-navigation.service';
|
|
7
|
+
import { ViewportScroller } from '@angular/common';
|
|
8
|
+
import { TreeviewSharedService } from './treeview-shared.service';
|
|
9
|
+
import { CreateKpIService } from '../createKpi.service';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class TreeviewComponent implements OnInit, OnDestroy {
|
|
12
|
+
private _router;
|
|
13
|
+
private _scrollStrategyOptions;
|
|
14
|
+
private _treeviewservice;
|
|
15
|
+
private _changeDetectorRef;
|
|
16
|
+
private scroller;
|
|
17
|
+
private _treeviewService;
|
|
18
|
+
static ngAcceptInputType_inner: BooleanInput;
|
|
19
|
+
static ngAcceptInputType_opened: BooleanInput;
|
|
20
|
+
static ngAcceptInputType_transparentOverlay: BooleanInput;
|
|
21
|
+
autoCollapse: boolean;
|
|
22
|
+
inner: boolean;
|
|
23
|
+
navigation: any;
|
|
24
|
+
opened: boolean;
|
|
25
|
+
isEditIcon: boolean;
|
|
26
|
+
isSearchBox: boolean;
|
|
27
|
+
transparentOverlay: boolean;
|
|
28
|
+
treeListForSearchBox: any;
|
|
29
|
+
name: string;
|
|
30
|
+
openTreeId: any;
|
|
31
|
+
routeKey: any;
|
|
32
|
+
activeAsideItemId: string | null;
|
|
33
|
+
onCollapsableItemCollapsed: ReplaySubject<TreeViewItem>;
|
|
34
|
+
onCollapsableItemExpanded: ReplaySubject<TreeViewItem>;
|
|
35
|
+
onRefreshed: ReplaySubject<boolean>;
|
|
36
|
+
private _animationsEnabled;
|
|
37
|
+
private _hovered;
|
|
38
|
+
private _scrollStrategy;
|
|
39
|
+
private _fuseScrollbarDirectivesSubscription;
|
|
40
|
+
private _unsubscribeAll;
|
|
41
|
+
editableKpiData: EventEmitter<any>;
|
|
42
|
+
constructor(_router: Router, _scrollStrategyOptions: ScrollStrategyOptions, _treeviewservice: CreateKpIService, _changeDetectorRef: ChangeDetectorRef, scroller: ViewportScroller, _treeviewService: TreeviewSharedService);
|
|
43
|
+
ngOnInit(): void;
|
|
44
|
+
ngOnDestroy(): void;
|
|
45
|
+
getKpiName(data: any, relativePath: any): void;
|
|
46
|
+
selectedKpiNameFromSearchKpi(event: any): void;
|
|
47
|
+
getSelectedKpiforSearch(data: any, kpiId: any): void;
|
|
48
|
+
getEditKpiData(data: any): void;
|
|
49
|
+
getBasicEditKpiData(data: any): void;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeviewComponent, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeviewComponent, "treeview", never, { "autoCollapse": "autoCollapse"; "inner": "inner"; "navigation": "navigation"; "opened": "opened"; "isEditIcon": "isEditIcon"; "isSearchBox": "isSearchBox"; "transparentOverlay": "transparentOverlay"; "treeListForSearchBox": "treeListForSearchBox"; "name": "name"; "openTreeId": "openTreeId"; "routeKey": "routeKey"; }, { "editableKpiData": "editableKpiData"; }, never, never, false>;
|
|
52
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { ComponentFactoryResolver, ComponentRef, ElementRef, OnInit, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { CommonService } from '../../application-controller/common';
|
|
4
|
+
import { GammaAdvanceChartComponent } from '../../shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component';
|
|
5
|
+
import { GammaTodayPreviousComponent } from '../../shared/advanced-component/gamma-today-previous/gamma-today-previous.component';
|
|
6
|
+
import { AppAdvanceHeaderComponent } from '../../shared/advanced-component/app-advance-header/app-header.component';
|
|
7
|
+
import { GammaTableWithPercentageComponent } from '../../shared/advanced-component/gamma-table-with-percentage/gamma-table-with-percentage.component';
|
|
8
|
+
import { GammSingleNumberCardComponent } from '../../shared/advanced-component/gamm-single-number-card/gamm-single-number-card.component';
|
|
9
|
+
import { GammaAdvanceOperatorTableComponent } from '../../shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component';
|
|
10
|
+
import { AdvanceWidgetHeaderFilterComponent } from '../../shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component';
|
|
11
|
+
import { ApplicationContentService } from '../../application-controller/application-content.service';
|
|
12
|
+
import { ApplicationDatssetsCall } from '../../application-controller/application-dataset-call.service';
|
|
13
|
+
import { ToastrService } from 'ngx-toastr';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
15
|
+
export declare class BookmarkedTemplateComponent implements OnInit {
|
|
16
|
+
commonService: CommonService;
|
|
17
|
+
private activatedRoute;
|
|
18
|
+
private viewContainerRef;
|
|
19
|
+
private componentFactoryResolver;
|
|
20
|
+
private service;
|
|
21
|
+
private toastr;
|
|
22
|
+
private router;
|
|
23
|
+
private datasetService;
|
|
24
|
+
dashbord_container: any;
|
|
25
|
+
selected_width: any;
|
|
26
|
+
widget_width: string[];
|
|
27
|
+
loadingModal: boolean;
|
|
28
|
+
page_title: string;
|
|
29
|
+
defaultStartDate: any;
|
|
30
|
+
defaultEndDate: any;
|
|
31
|
+
dynamicComponentContainer: ViewContainerRef;
|
|
32
|
+
containerRef: ViewContainerRef;
|
|
33
|
+
dynamicContainer: ElementRef;
|
|
34
|
+
dynamicComponentRefs: ComponentRef<any>[];
|
|
35
|
+
CompRefs: ComponentRef<any>;
|
|
36
|
+
componentClassMap: {
|
|
37
|
+
GammaAdvanceChartComponent: typeof GammaAdvanceChartComponent;
|
|
38
|
+
GammaTodayPreviousComponent: typeof GammaTodayPreviousComponent;
|
|
39
|
+
AppAdvanceHeaderComponent: typeof AppAdvanceHeaderComponent;
|
|
40
|
+
GammaTableWithPercentageComponent: typeof GammaTableWithPercentageComponent;
|
|
41
|
+
GammSingleNumberCardComponent: typeof GammSingleNumberCardComponent;
|
|
42
|
+
GammaAdvanceOperatorTableComponent: typeof GammaAdvanceOperatorTableComponent;
|
|
43
|
+
AdvanceWidgetHeaderFilterComponent: typeof AdvanceWidgetHeaderFilterComponent;
|
|
44
|
+
};
|
|
45
|
+
dataSourceMataData: any;
|
|
46
|
+
queryType: string;
|
|
47
|
+
dataSetModal: any;
|
|
48
|
+
componentConfigDataSource: any;
|
|
49
|
+
selescedDataSource: any;
|
|
50
|
+
dataSourceModal: any;
|
|
51
|
+
isDashBoardContent: boolean;
|
|
52
|
+
selectedViewFormComponent: any;
|
|
53
|
+
addedwidGetConfig: {
|
|
54
|
+
display: boolean;
|
|
55
|
+
widgetTitle: string;
|
|
56
|
+
width: string;
|
|
57
|
+
height: string;
|
|
58
|
+
};
|
|
59
|
+
dashBoardWidgetConfig: any;
|
|
60
|
+
isWidgetCreationContent: boolean;
|
|
61
|
+
selectedWidth: any;
|
|
62
|
+
selectedHeight: any;
|
|
63
|
+
newWidgetIndex: any;
|
|
64
|
+
selectedIndexObjForChart: any;
|
|
65
|
+
selectedContainerObjectForChart: any;
|
|
66
|
+
dataSettableDataSource: any;
|
|
67
|
+
uniqueDataSetObject: {};
|
|
68
|
+
isDashBoardContentTypeView: boolean;
|
|
69
|
+
filters: any;
|
|
70
|
+
allWidgetByDataset: any[];
|
|
71
|
+
pageTitle: any;
|
|
72
|
+
stateDataSource: Map<any, any>;
|
|
73
|
+
mainPageDivElement: any;
|
|
74
|
+
contextMenuDataSource: any;
|
|
75
|
+
havingDataObject: any;
|
|
76
|
+
isWidgetFilters: boolean;
|
|
77
|
+
nodeproperticeFilterDataSource: any;
|
|
78
|
+
globalDefaultFilter: any;
|
|
79
|
+
pageId: any;
|
|
80
|
+
kpi_breadcrumbs_container: any;
|
|
81
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: ApplicationContentService, toastr: ToastrService, router: Router, datasetService: ApplicationDatssetsCall);
|
|
82
|
+
ngOnInit(): void;
|
|
83
|
+
getFiltersForTemplate(filter: any): Promise<void>;
|
|
84
|
+
getPadeDataSource(context: any): Promise<void>;
|
|
85
|
+
getComponentConfigSet(): void;
|
|
86
|
+
getDataSet(): void;
|
|
87
|
+
createDivElements(datasetById: any, context: any): Promise<void>;
|
|
88
|
+
loadWidgetNodes(div: any, mainItemDiv: any, datasetById: any): void;
|
|
89
|
+
loadSingleWidgetNode(item: any, containerElement: HTMLElement, datasetById: any): void;
|
|
90
|
+
getWidgetTitleDiv(item: any): HTMLDivElement;
|
|
91
|
+
loadDynamicComponent(data: any, indexObj: any, containerElement: any): any;
|
|
92
|
+
loadFilterComponent(indexObj: any, containerElement: any, filterItems: any): void;
|
|
93
|
+
loadWidgetFilterComponent(indexObj: any, containerElement: any, filterItems: any, viewIds: any): void;
|
|
94
|
+
getContextClick(event: any): void;
|
|
95
|
+
getRowClick(event: any): void;
|
|
96
|
+
getViewByRowCLickForHourlyChart(event: any, node: any): void;
|
|
97
|
+
getViewByRowCLick(event: any, view: any, deletedViewIds: any, node: any): void;
|
|
98
|
+
scrollToBottom(container: HTMLElement): void;
|
|
99
|
+
findWidgetById(configs: any[], id: string): any | undefined;
|
|
100
|
+
updateOperatorData(key_name: string[], value_data: any): any;
|
|
101
|
+
getElementOfCurrentView(node: any, viewId: any): any;
|
|
102
|
+
getHourlyData(node: any): any;
|
|
103
|
+
getSetOperatorFilter(objectData: any, previousViewStates: any): {};
|
|
104
|
+
getRearchResultFromInputBox(inputValue: any, viewConfig: any, filterObject: any): void;
|
|
105
|
+
submitFilter(): void;
|
|
106
|
+
getWidgetFilterForTemplate(value: any): void;
|
|
107
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BookmarkedTemplateComponent, never>;
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BookmarkedTemplateComponent, "app-bookmarked-template", never, {}, {}, never, never, false>;
|
|
109
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./bookmarked-template.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../shared/loading/loadingModule";
|
|
5
|
+
import * as i4 from "devextreme-angular";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
import * as i6 from "@angular/material/icon";
|
|
8
|
+
import * as i7 from "@angular/material/tooltip";
|
|
9
|
+
import * as i8 from "@angular/material/button";
|
|
10
|
+
import * as i9 from "@angular/material/divider";
|
|
11
|
+
import * as i10 from "@angular/material/menu";
|
|
12
|
+
export declare class BookMarkedTemplatemodule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BookMarkedTemplatemodule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BookMarkedTemplatemodule, [typeof i1.BookmarkedTemplateComponent], [typeof i2.CommonModule, typeof i3.LoadingModule, typeof i2.CommonModule, typeof i4.DevExtremeModule, typeof i4.DxButtonModule, typeof i4.DxCheckBoxModule, typeof i4.DxNumberBoxModule, typeof i4.DxDataGridModule, typeof i4.DxDropDownBoxModule, typeof i4.DxTreeViewModule, typeof i4.DxScrollViewModule, typeof i4.DxFormModule, typeof i4.DxAccordionModule, typeof i5.FormsModule, typeof i4.DxTagBoxModule, typeof i5.ReactiveFormsModule, typeof i6.MatIconModule, typeof i4.DxHtmlEditorModule, typeof i4.DxBulletModule, typeof i4.DxChartModule, typeof i4.DxDateBoxModule, typeof i4.DxLoadPanelModule, typeof i4.DxLookupModule, typeof i4.DxPivotGridModule, typeof i4.DxTemplateModule, typeof i4.DxTextAreaModule, typeof i4.DxValidationSummaryModule, typeof i4.DxValidatorModule, typeof i4.DxCalendarModule, typeof i4.DxTooltipModule, typeof i4.DxContextMenuModule, typeof i4.DxLoadIndicatorModule, typeof i4.DxPieChartModule, typeof i7.MatTooltipModule, typeof i4.DxPopupModule, typeof i4.DxSelectBoxModule, typeof i4.DxTextBoxModule, typeof i4.DxTreeViewModule, typeof i8.MatButtonModule, typeof i9.MatDividerModule, typeof i10.MatMenuModule, typeof i6.MatIconModule, typeof i3.LoadingModule], [typeof i1.BookmarkedTemplateComponent]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BookMarkedTemplatemodule>;
|
|
16
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./cdr-config.component";
|
|
3
|
-
import * as i2 from "../../
|
|
3
|
+
import * as i2 from "../../shared/loading/loadingModule";
|
|
4
4
|
import * as i3 from "@angular/common";
|
|
5
5
|
import * as i4 from "devextreme-angular";
|
|
6
6
|
import * as i5 from "@angular/forms";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./landing-component.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../shared/loading/loadingModule";
|
|
5
|
+
import * as i4 from "devextreme-angular";
|
|
6
|
+
import * as i5 from "@angular/forms";
|
|
7
|
+
import * as i6 from "@angular/material/icon";
|
|
8
|
+
import * as i7 from "@angular/material/tooltip";
|
|
9
|
+
import * as i8 from "@angular/material/button";
|
|
10
|
+
import * as i9 from "@angular/material/divider";
|
|
11
|
+
import * as i10 from "@angular/material/menu";
|
|
12
|
+
export declare class DefaultLandingComponenttModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultLandingComponenttModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DefaultLandingComponenttModule, [typeof i1.LandingComponentComponent], [typeof i2.CommonModule, typeof i3.LoadingModule, typeof i2.CommonModule, typeof i4.DevExtremeModule, typeof i4.DxButtonModule, typeof i4.DxCheckBoxModule, typeof i4.DxNumberBoxModule, typeof i4.DxDataGridModule, typeof i4.DxDropDownBoxModule, typeof i4.DxTreeViewModule, typeof i4.DxScrollViewModule, typeof i4.DxFormModule, typeof i4.DxAccordionModule, typeof i5.FormsModule, typeof i4.DxTagBoxModule, typeof i5.ReactiveFormsModule, typeof i6.MatIconModule, typeof i4.DxHtmlEditorModule, typeof i4.DxBulletModule, typeof i4.DxChartModule, typeof i4.DxDateBoxModule, typeof i4.DxLoadPanelModule, typeof i4.DxLookupModule, typeof i4.DxPivotGridModule, typeof i4.DxTemplateModule, typeof i4.DxTextAreaModule, typeof i4.DxValidationSummaryModule, typeof i4.DxValidatorModule, typeof i4.DxCalendarModule, typeof i4.DxTooltipModule, typeof i4.DxContextMenuModule, typeof i4.DxLoadIndicatorModule, typeof i4.DxPieChartModule, typeof i7.MatTooltipModule, typeof i4.DxPopupModule, typeof i4.DxSelectBoxModule, typeof i4.DxTextBoxModule, typeof i4.DxTreeViewModule, typeof i8.MatButtonModule, typeof i9.MatDividerModule, typeof i10.MatMenuModule, typeof i6.MatIconModule, typeof i3.LoadingModule], [typeof i1.LandingComponentComponent]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DefaultLandingComponenttModule>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { ComponentFactoryResolver, ComponentRef, ElementRef, OnInit, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { CommonService } from '../../application-controller/common';
|
|
4
|
+
import { GammaAdvanceChartComponent } from '../../shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component';
|
|
5
|
+
import { GammaTodayPreviousComponent } from '../../shared/advanced-component/gamma-today-previous/gamma-today-previous.component';
|
|
6
|
+
import { AppAdvanceHeaderComponent } from '../../shared/advanced-component/app-advance-header/app-header.component';
|
|
7
|
+
import { GammaTableWithPercentageComponent } from '../../shared/advanced-component/gamma-table-with-percentage/gamma-table-with-percentage.component';
|
|
8
|
+
import { GammSingleNumberCardComponent } from '../../shared/advanced-component/gamm-single-number-card/gamm-single-number-card.component';
|
|
9
|
+
import { GammaAdvanceOperatorTableComponent } from '../../shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component';
|
|
10
|
+
import { AdvanceWidgetHeaderFilterComponent } from '../../shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component';
|
|
11
|
+
import { ApplicationContentService } from '../../application-controller/application-content.service';
|
|
12
|
+
import { ApplicationDatssetsCall } from '../../application-controller/application-dataset-call.service';
|
|
13
|
+
import { ToastrService } from 'ngx-toastr';
|
|
14
|
+
import * as i0 from "@angular/core";
|
|
15
|
+
export declare class LandingComponentComponent implements OnInit {
|
|
16
|
+
commonService: CommonService;
|
|
17
|
+
private activatedRoute;
|
|
18
|
+
private viewContainerRef;
|
|
19
|
+
private componentFactoryResolver;
|
|
20
|
+
private service;
|
|
21
|
+
private toastr;
|
|
22
|
+
private router;
|
|
23
|
+
private datasetService;
|
|
24
|
+
dashbord_container: any;
|
|
25
|
+
selected_width: any;
|
|
26
|
+
widget_width: string[];
|
|
27
|
+
loadingModal: boolean;
|
|
28
|
+
page_title: string;
|
|
29
|
+
defaultStartDate: any;
|
|
30
|
+
defaultEndDate: any;
|
|
31
|
+
dynamicComponentContainer: ViewContainerRef;
|
|
32
|
+
containerRef: ViewContainerRef;
|
|
33
|
+
dynamicContainer: ElementRef;
|
|
34
|
+
dynamicComponentRefs: ComponentRef<any>[];
|
|
35
|
+
CompRefs: ComponentRef<any>;
|
|
36
|
+
componentClassMap: {
|
|
37
|
+
GammaAdvanceChartComponent: typeof GammaAdvanceChartComponent;
|
|
38
|
+
GammaTodayPreviousComponent: typeof GammaTodayPreviousComponent;
|
|
39
|
+
AppAdvanceHeaderComponent: typeof AppAdvanceHeaderComponent;
|
|
40
|
+
GammaTableWithPercentageComponent: typeof GammaTableWithPercentageComponent;
|
|
41
|
+
GammSingleNumberCardComponent: typeof GammSingleNumberCardComponent;
|
|
42
|
+
GammaAdvanceOperatorTableComponent: typeof GammaAdvanceOperatorTableComponent;
|
|
43
|
+
AdvanceWidgetHeaderFilterComponent: typeof AdvanceWidgetHeaderFilterComponent;
|
|
44
|
+
};
|
|
45
|
+
dataSourceMataData: any;
|
|
46
|
+
queryType: string;
|
|
47
|
+
dataSetModal: any;
|
|
48
|
+
componentConfigDataSource: any;
|
|
49
|
+
selescedDataSource: any;
|
|
50
|
+
dataSourceModal: any;
|
|
51
|
+
isDashBoardContent: boolean;
|
|
52
|
+
selectedViewFormComponent: any;
|
|
53
|
+
addedwidGetConfig: {
|
|
54
|
+
display: boolean;
|
|
55
|
+
widgetTitle: string;
|
|
56
|
+
width: string;
|
|
57
|
+
height: string;
|
|
58
|
+
};
|
|
59
|
+
dashBoardWidgetConfig: any;
|
|
60
|
+
isWidgetCreationContent: boolean;
|
|
61
|
+
selectedWidth: any;
|
|
62
|
+
selectedHeight: any;
|
|
63
|
+
newWidgetIndex: any;
|
|
64
|
+
selectedIndexObjForChart: any;
|
|
65
|
+
selectedContainerObjectForChart: any;
|
|
66
|
+
dataSettableDataSource: any;
|
|
67
|
+
uniqueDataSetObject: {};
|
|
68
|
+
isDashBoardContentTypeView: boolean;
|
|
69
|
+
filters: any;
|
|
70
|
+
allWidgetByDataset: any[];
|
|
71
|
+
pageTitle: any;
|
|
72
|
+
stateDataSource: Map<any, any>;
|
|
73
|
+
mainPageDivElement: any;
|
|
74
|
+
contextMenuDataSource: any;
|
|
75
|
+
havingDataObject: any;
|
|
76
|
+
isWidgetFilters: boolean;
|
|
77
|
+
nodeproperticeFilterDataSource: any;
|
|
78
|
+
globalDefaultFilter: any;
|
|
79
|
+
pageId: any;
|
|
80
|
+
kpi_breadcrumbs_container: any;
|
|
81
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: ApplicationContentService, toastr: ToastrService, router: Router, datasetService: ApplicationDatssetsCall);
|
|
82
|
+
ngOnInit(): void;
|
|
83
|
+
getFiltersForTemplate(filter: any): Promise<void>;
|
|
84
|
+
getPadeDataSource(context: any): Promise<void>;
|
|
85
|
+
getComponentConfigSet(): void;
|
|
86
|
+
getDataSet(): void;
|
|
87
|
+
createDivElements(datasetById: any, context: any): Promise<void>;
|
|
88
|
+
loadWidgetNodes(div: any, mainItemDiv: any, datasetById: any): void;
|
|
89
|
+
loadSingleWidgetNode(item: any, containerElement: HTMLElement, datasetById: any): void;
|
|
90
|
+
getWidgetTitleDiv(item: any): HTMLDivElement;
|
|
91
|
+
loadDynamicComponent(data: any, indexObj: any, containerElement: any): any;
|
|
92
|
+
loadFilterComponent(indexObj: any, containerElement: any, filterItems: any, context_filter: any): void;
|
|
93
|
+
loadWidgetFilterComponent(indexObj: any, containerElement: any, filterItems: any, viewIds: any): void;
|
|
94
|
+
getContextClick(event: any): void;
|
|
95
|
+
getRowClick(event: any): Promise<void>;
|
|
96
|
+
getViewByRowCLickForHourlyChart(event: any, node: any): void;
|
|
97
|
+
getViewByRowCLick(event: any, view: any): Promise<void>;
|
|
98
|
+
scrollToBottom(container: HTMLElement): void;
|
|
99
|
+
findWidgetById(configs: any[], id: string): any | undefined;
|
|
100
|
+
updateOperatorData(key_name: string[], value_data: any): any;
|
|
101
|
+
getElementOfCurrentView(node: any, viewId: any): any;
|
|
102
|
+
getHourlyData(node: any): any;
|
|
103
|
+
getSetOperatorFilter(objectData: any, previousViewStates: any): {};
|
|
104
|
+
getRearchResultFromInputBox(inputValue: any, viewConfig: any, filterObject: any): void;
|
|
105
|
+
submitFilter(): void;
|
|
106
|
+
getWidgetFilterForTemplate(value: any): void;
|
|
107
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LandingComponentComponent, never>;
|
|
108
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LandingComponentComponent, "app-landing-component", never, {}, {}, never, never, false>;
|
|
109
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./exception-operation.component";
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../../
|
|
4
|
+
import * as i3 from "../../shared/loading/loadingModule";
|
|
5
5
|
import * as i4 from "devextreme-angular";
|
|
6
6
|
import * as i5 from "@angular/forms";
|
|
7
7
|
import * as i6 from "@angular/material/icon";
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { OnInit, ElementRef, ComponentRef, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { GammaAdvanceChartComponent } from '../../shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component';
|
|
3
|
+
import { GammaTodayPreviousComponent } from '../../shared/advanced-component/gamma-today-previous/gamma-today-previous.component';
|
|
4
|
+
import { AppAdvanceHeaderComponent } from '../../shared/advanced-component/app-advance-header/app-header.component';
|
|
5
|
+
import { GammaTableWithPercentageComponent } from '../../shared/advanced-component/gamma-table-with-percentage/gamma-table-with-percentage.component';
|
|
6
|
+
import { GammSingleNumberCardComponent } from '../../shared/advanced-component/gamm-single-number-card/gamm-single-number-card.component';
|
|
7
|
+
import { GammaAdvanceOperatorTableComponent } from '../../shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component';
|
|
8
|
+
import { AdvanceWidgetHeaderFilterComponent } from '../../shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component';
|
|
9
|
+
import { GammaGeoChartComponent } from '../../shared/advanced-component/gamma-geo-chart/gamma-geo-chart.component';
|
|
10
|
+
import { GammaHeatChartComponent } from '../../shared/advanced-component/gamma-heatmap/gamma-heatmap.component';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class DynamicWidgetForMultilayoutComponent implements OnInit {
|
|
13
|
+
private viewContainerRef;
|
|
14
|
+
popupContainer: ElementRef;
|
|
15
|
+
view: any;
|
|
16
|
+
datasetById: any;
|
|
17
|
+
contextMenuDataSource: any;
|
|
18
|
+
isWidgetFilters: boolean;
|
|
19
|
+
dynamicComponentRefs: ComponentRef<any>[];
|
|
20
|
+
nodeproperticeFilterDataSource: any;
|
|
21
|
+
uniqueDataSetObject: any;
|
|
22
|
+
CompRefs: ComponentRef<any>;
|
|
23
|
+
componentClassMap: {
|
|
24
|
+
GammaAdvanceChartComponent: typeof GammaAdvanceChartComponent;
|
|
25
|
+
GammaTodayPreviousComponent: typeof GammaTodayPreviousComponent;
|
|
26
|
+
AppAdvanceHeaderComponent: typeof AppAdvanceHeaderComponent;
|
|
27
|
+
GammaTableWithPercentageComponent: typeof GammaTableWithPercentageComponent;
|
|
28
|
+
GammSingleNumberCardComponent: typeof GammSingleNumberCardComponent;
|
|
29
|
+
GammaAdvanceOperatorTableComponent: typeof GammaAdvanceOperatorTableComponent;
|
|
30
|
+
AdvanceWidgetHeaderFilterComponent: typeof AdvanceWidgetHeaderFilterComponent;
|
|
31
|
+
GammaGeoChartComponent: typeof GammaGeoChartComponent;
|
|
32
|
+
GammaHeatChartComponent: typeof GammaHeatChartComponent;
|
|
33
|
+
};
|
|
34
|
+
set modalConfigs(value: any);
|
|
35
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
36
|
+
ngOnInit(): void;
|
|
37
|
+
loadDynamicComponent(data: any, containerElement: any): any;
|
|
38
|
+
getWidgetTitleDiv(item: any): HTMLDivElement;
|
|
39
|
+
loadWidgetFilterComponent(indexObj: any, containerElement: any, filterItems: any, viewIds: any): void;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicWidgetForMultilayoutComponent, never>;
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicWidgetForMultilayoutComponent, "app-dynamic-widget", never, { "view": "view"; "datasetById": "datasetById"; "contextMenuDataSource": "contextMenuDataSource"; "modalConfigs": "modalConfigs"; }, {}, never, never, false>;
|
|
42
|
+
}
|