gamma-app-controller 1.0.1
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/README.md +24 -0
- package/esm2020/gamma-app-controller.mjs +2 -0
- package/esm2020/lib/application-controller/app.http.service.mjs +24 -0
- package/esm2020/lib/application-controller/application-content.service.mjs +482 -0
- package/esm2020/lib/application-controller/application-controller.module.mjs +324 -0
- package/esm2020/lib/application-controller/application-dataset-call.service.mjs +321 -0
- package/esm2020/lib/application-controller/application-dataset-component/application-dataset/application-dataset.component.mjs +390 -0
- package/esm2020/lib/application-controller/application-dataset-component/create-dataset/create-dataset.component.mjs +349 -0
- package/esm2020/lib/application-controller/application-dataset-component/create-dataset-json/create-dataset-json.component.mjs +148 -0
- package/esm2020/lib/application-controller/application-dataset-component/create-dataset-sql/create-dataset-sql.component.mjs +167 -0
- package/esm2020/lib/application-controller/application-dataset-component/create-dataset-sql/sqlFormatter.mjs +17 -0
- package/esm2020/lib/application-controller/application-dataset-component/dataset-mongo/dataset-mongo.component.mjs +57 -0
- package/esm2020/lib/application-controller/application-dataset-component/dataset-query-bulder/dataset-query-bulder.component.mjs +409 -0
- package/esm2020/lib/application-controller/application-dataset-component/dataset-rest-api/dataset-rest-api.component.mjs +61 -0
- package/esm2020/lib/application-controller/application-filter/application-filter.component.mjs +186 -0
- package/esm2020/lib/application-controller/application-view-components/application-views/application-views.component.mjs +134 -0
- package/esm2020/lib/application-controller/application-view-components/create-comp-view/create-comp-view.component.mjs +559 -0
- package/esm2020/lib/application-controller/common-header/common-header.component.mjs +33 -0
- package/esm2020/lib/application-controller/common.mjs +1207 -0
- package/esm2020/lib/application-controller/environment.mjs +26 -0
- package/esm2020/lib/application-controller/kpi-comon-service.mjs +537 -0
- package/esm2020/lib/application-controller/kpi-service.mjs +108 -0
- package/esm2020/lib/application-controller/loading/loading.component.mjs +16 -0
- package/esm2020/lib/application-controller/loading/loadingModule.mjs +28 -0
- package/esm2020/lib/application-controller/moment-helper.mjs +4 -0
- package/esm2020/lib/application-controller/page-controller/page-config/page-config.component.mjs +977 -0
- package/esm2020/lib/application-controller/page-controller/page-controller/page-controller.component.mjs +172 -0
- package/esm2020/lib/application-controller/page-templates/cdr-config/cdr-config.component.mjs +227 -0
- package/esm2020/lib/application-controller/page-templates/dynamic-route-service.mjs +22 -0
- package/esm2020/lib/application-controller/shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component.mjs +118 -0
- package/esm2020/lib/application-controller/shared/advanced-component/app-advance-header/app-header.component.mjs +181 -0
- package/esm2020/lib/application-controller/shared/advanced-component/gamm-single-number-card/gamm-single-number-card.component.mjs +71 -0
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.mjs +266 -0
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component.mjs +159 -0
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-table-clumn-bar-chart/gamma-table-clumn-bar-chart.component.mjs +144 -0
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-table-with-percentage/contentSafeHtml.mjs +20 -0
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-table-with-percentage/gamma-table-with-percentage.component.mjs +168 -0
- package/esm2020/lib/application-controller/shared/advanced-component/gamma-today-previous/gamma-today-previous.component.mjs +74 -0
- package/esm2020/lib/application-controller/shared/advanced-component/google-geo-map/google-geo-map.component.mjs +118 -0
- package/esm2020/lib/application-controller/shared/api.service.mjs +117 -0
- package/esm2020/lib/application-controller/shared/app-title/app-title.component.mjs +67 -0
- package/esm2020/lib/application-controller/shared/gamam-widget/gamam-widget.component.mjs +37 -0
- package/esm2020/lib/application-controller/shared/gamma-advance-filter/gamma-advance-filter.component.mjs +229 -0
- package/esm2020/lib/application-controller/shared/gamma-bread-crumbs/bread-crumbs.component.mjs +144 -0
- package/esm2020/lib/application-controller/shared/kpi-comon-service.mjs +537 -0
- package/esm2020/lib/application-controller/shared/loader/loader.component.mjs +14 -0
- package/esm2020/lib/application-controller/shared/loading/loading.component.mjs +16 -0
- package/esm2020/lib/application-controller/shared/loading/loadingModule.mjs +28 -0
- package/esm2020/lib/application-controller/shared/safeHtmlPipe.mjs +20 -0
- package/esm2020/lib/application-controller/support-components/dash-chart/dash-chart.component.mjs +294 -0
- package/esm2020/lib/application-controller/support-components/dash-table/dash-table.component.mjs +287 -0
- package/esm2020/lib/application-controller/support-components/geo-map/geo-map.component.mjs +255 -0
- package/esm2020/lib/application-controller/support-components/table-with-bar/table-with-bar.component.mjs +269 -0
- package/esm2020/lib/gamma-app-controller.component.mjs +16 -0
- package/esm2020/lib/gamma-app-controller.module.mjs +43 -0
- package/esm2020/lib/gamma-app-controller.service.mjs +20 -0
- package/esm2020/lib/icons.module.mjs +23 -0
- package/esm2020/public-api.mjs +49 -0
- package/fesm2015/gamma-app-controller.mjs +10250 -0
- package/fesm2015/gamma-app-controller.mjs.map +1 -0
- package/fesm2020/gamma-app-controller.mjs +10248 -0
- package/fesm2020/gamma-app-controller.mjs.map +1 -0
- package/index.d.ts +2 -0
- package/lib/application-controller/app.http.service.d.ts +15 -0
- package/lib/application-controller/application-content.service.d.ts +79 -0
- package/lib/application-controller/application-controller.module.d.ts +51 -0
- package/lib/application-controller/application-dataset-call.service.d.ts +20 -0
- package/lib/application-controller/application-dataset-component/application-dataset/application-dataset.component.d.ts +55 -0
- package/lib/application-controller/application-dataset-component/create-dataset/create-dataset.component.d.ts +121 -0
- package/lib/application-controller/application-dataset-component/create-dataset-json/create-dataset-json.component.d.ts +38 -0
- package/lib/application-controller/application-dataset-component/create-dataset-sql/create-dataset-sql.component.d.ts +42 -0
- package/lib/application-controller/application-dataset-component/create-dataset-sql/sqlFormatter.d.ts +7 -0
- package/lib/application-controller/application-dataset-component/dataset-mongo/dataset-mongo.component.d.ts +21 -0
- package/lib/application-controller/application-dataset-component/dataset-query-bulder/dataset-query-bulder.component.d.ts +62 -0
- package/lib/application-controller/application-dataset-component/dataset-rest-api/dataset-rest-api.component.d.ts +22 -0
- package/lib/application-controller/application-filter/application-filter.component.d.ts +36 -0
- package/lib/application-controller/application-view-components/application-views/application-views.component.d.ts +47 -0
- package/lib/application-controller/application-view-components/create-comp-view/create-comp-view.component.d.ts +73 -0
- package/lib/application-controller/common-header/common-header.component.d.ts +15 -0
- package/lib/application-controller/common.d.ts +148 -0
- package/lib/application-controller/environment.d.ts +25 -0
- package/lib/application-controller/kpi-comon-service.d.ts +14 -0
- package/lib/application-controller/kpi-service.d.ts +6 -0
- package/lib/application-controller/loading/loading.component.d.ts +9 -0
- package/lib/application-controller/loading/loadingModule.d.ts +10 -0
- package/lib/application-controller/moment-helper.d.ts +3 -0
- package/lib/application-controller/page-controller/page-config/page-config.component.d.ts +188 -0
- package/lib/application-controller/page-controller/page-controller/page-controller.component.d.ts +47 -0
- package/lib/application-controller/page-templates/cdr-config/cdr-config.component.d.ts +44 -0
- package/lib/application-controller/page-templates/dynamic-route-service.d.ts +8 -0
- package/lib/application-controller/shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component.d.ts +33 -0
- package/lib/application-controller/shared/advanced-component/app-advance-header/app-header.component.d.ts +43 -0
- package/lib/application-controller/shared/advanced-component/gamm-single-number-card/gamm-single-number-card.component.d.ts +20 -0
- package/lib/application-controller/shared/advanced-component/gamma-advance-chart/gamma-advance-chart.component.d.ts +51 -0
- package/lib/application-controller/shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component.d.ts +32 -0
- package/lib/application-controller/shared/advanced-component/gamma-table-clumn-bar-chart/gamma-table-clumn-bar-chart.component.d.ts +31 -0
- package/lib/application-controller/shared/advanced-component/gamma-table-with-percentage/contentSafeHtml.d.ts +10 -0
- package/lib/application-controller/shared/advanced-component/gamma-table-with-percentage/gamma-table-with-percentage.component.d.ts +26 -0
- package/lib/application-controller/shared/advanced-component/gamma-today-previous/gamma-today-previous.component.d.ts +21 -0
- package/lib/application-controller/shared/advanced-component/google-geo-map/google-geo-map.component.d.ts +29 -0
- package/lib/application-controller/shared/api.service.d.ts +26 -0
- package/lib/application-controller/shared/app-title/app-title.component.d.ts +28 -0
- package/lib/application-controller/shared/gamam-widget/gamam-widget.component.d.ts +20 -0
- package/lib/application-controller/shared/gamma-advance-filter/gamma-advance-filter.component.d.ts +45 -0
- package/lib/application-controller/shared/gamma-bread-crumbs/bread-crumbs.component.d.ts +32 -0
- package/lib/application-controller/shared/kpi-comon-service.d.ts +14 -0
- package/lib/application-controller/shared/loader/loader.component.d.ts +8 -0
- package/lib/application-controller/shared/loading/loading.component.d.ts +9 -0
- package/lib/application-controller/shared/loading/loadingModule.d.ts +10 -0
- package/lib/application-controller/shared/safeHtmlPipe.d.ts +10 -0
- package/lib/application-controller/support-components/dash-chart/dash-chart.component.d.ts +83 -0
- package/lib/application-controller/support-components/dash-table/dash-table.component.d.ts +67 -0
- package/lib/application-controller/support-components/geo-map/geo-map.component.d.ts +70 -0
- package/lib/application-controller/support-components/table-with-bar/table-with-bar.component.d.ts +70 -0
- package/lib/gamma-app-controller.component.d.ts +5 -0
- package/lib/gamma-app-controller.module.d.ts +10 -0
- package/lib/gamma-app-controller.service.d.ts +7 -0
- package/lib/icons.module.d.ts +11 -0
- package/package.json +33 -0
- package/public-api.d.ts +48 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
|
+
import { KpiApiService } from '../../api.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AppAdvanceHeaderComponent implements OnInit {
|
|
6
|
+
private activatedRoute;
|
|
7
|
+
private route;
|
|
8
|
+
private service;
|
|
9
|
+
pageTitle: string;
|
|
10
|
+
bread_crumbs_container: any;
|
|
11
|
+
isEditButton: boolean;
|
|
12
|
+
isAdvanceButton: boolean;
|
|
13
|
+
selectedDates: any;
|
|
14
|
+
toggleEvent: EventEmitter<string>;
|
|
15
|
+
isAdvanceFilter: boolean;
|
|
16
|
+
browser_config: any;
|
|
17
|
+
kpi_id: any;
|
|
18
|
+
filterStartDate: any;
|
|
19
|
+
filterEndDate: any;
|
|
20
|
+
filterOptions: any;
|
|
21
|
+
autoload_button: boolean;
|
|
22
|
+
private time_out_id;
|
|
23
|
+
toolTipText: string;
|
|
24
|
+
daterange: any;
|
|
25
|
+
daterange_options: any;
|
|
26
|
+
srvTypeDataSource: any;
|
|
27
|
+
srvTypeDisplayValue: any;
|
|
28
|
+
selectedDetesforView: any;
|
|
29
|
+
selectedDateRangeOrServtype: EventEmitter<any>;
|
|
30
|
+
getFilterPageConfig: EventEmitter<any>;
|
|
31
|
+
filterItemsForFilter: any;
|
|
32
|
+
set filterItems(value: any);
|
|
33
|
+
constructor(activatedRoute: ActivatedRoute, route: Router, service: KpiApiService);
|
|
34
|
+
ngOnInit(): void;
|
|
35
|
+
pageAutoloadStopRun(): void;
|
|
36
|
+
callPageDocumentation(): void;
|
|
37
|
+
getDateOrServeTypeValueChange(node: any): void;
|
|
38
|
+
editKpi(): void;
|
|
39
|
+
advanceFilterKpi(): void;
|
|
40
|
+
getSerchFilter(filter: any): void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppAdvanceHeaderComponent, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppAdvanceHeaderComponent, "app-advance-header", never, { "pageTitle": "pageTitle"; "bread_crumbs_container": "bread_crumbs_container"; "isEditButton": "isEditButton"; "isAdvanceButton": "isAdvanceButton"; "selectedDates": "selectedDates"; "filterItems": "filterItems"; }, { "toggleEvent": "toggleEvent"; "selectedDateRangeOrServtype": "selectedDateRangeOrServtype"; "getFilterPageConfig": "getFilterPageConfig"; }, never, never, false>;
|
|
43
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ToastrService } from 'ngx-toastr';
|
|
3
|
+
import { CommonService } from '../../../common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class GammSingleNumberCardComponent implements OnInit {
|
|
6
|
+
commonService: CommonService;
|
|
7
|
+
private toastr;
|
|
8
|
+
subscriber_count: any;
|
|
9
|
+
page_config: any;
|
|
10
|
+
isLoader: boolean;
|
|
11
|
+
colors: string[];
|
|
12
|
+
randomColorClass: any;
|
|
13
|
+
constructor(commonService: CommonService, toastr: ToastrService);
|
|
14
|
+
set chartDataSource(value: any);
|
|
15
|
+
getDynamicValue(data: any): number | string | any;
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
getRandomColor(): string;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GammSingleNumberCardComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GammSingleNumberCardComponent, "app-gamm-single-number-card", never, { "chartDataSource": "chartDataSource"; }, {}, never, never, false>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import { ToastrService } from 'ngx-toastr';
|
|
3
|
+
import { KpiApiService } from '../../api.service';
|
|
4
|
+
import { kpicommonService } from '../../kpi-comon-service';
|
|
5
|
+
import { CommonService } from '../../../common';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class GammaAdvanceChartComponent implements OnInit {
|
|
8
|
+
private commonService;
|
|
9
|
+
private toastr;
|
|
10
|
+
private service;
|
|
11
|
+
private kpiService;
|
|
12
|
+
private renderer;
|
|
13
|
+
private el;
|
|
14
|
+
private cdr;
|
|
15
|
+
chartConfig: any;
|
|
16
|
+
page_config: any;
|
|
17
|
+
isLoader: boolean;
|
|
18
|
+
componentId: any;
|
|
19
|
+
kpi_name: any;
|
|
20
|
+
caption: any;
|
|
21
|
+
isChartvisible: boolean;
|
|
22
|
+
creatChartDataSource: any;
|
|
23
|
+
finalChartDataSource: any;
|
|
24
|
+
chartHeight: any;
|
|
25
|
+
isFullScreen: boolean;
|
|
26
|
+
constructor(commonService: CommonService, toastr: ToastrService, service: KpiApiService, kpiService: kpicommonService, renderer: Renderer2, el: ElementRef, cdr: ChangeDetectorRef);
|
|
27
|
+
set chartDataSource(value: any);
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
getHourChart(data: any, dataConfig: any): void;
|
|
30
|
+
getMonthlyChart(data: any, dataConfig: any): void;
|
|
31
|
+
getDailyChart(data: any, dataConfig: any): void;
|
|
32
|
+
getReconDailyChart(data: any, dataConfig: any): void;
|
|
33
|
+
getFinalData(mainData: any[], reconColumn: any[]): any[];
|
|
34
|
+
customizeTooltip: (info: any) => {
|
|
35
|
+
html: string;
|
|
36
|
+
};
|
|
37
|
+
calculateTotal(pieChart: any): any;
|
|
38
|
+
formatNumber(value: any): any;
|
|
39
|
+
pointClickHandler(arg: any): void;
|
|
40
|
+
getValue(contextKey: any, value: any): any;
|
|
41
|
+
hasDecimal(number: any): boolean;
|
|
42
|
+
toggleFullScreen(): void;
|
|
43
|
+
customizeText: ({ percentText, item: { argument } }: {
|
|
44
|
+
percentText: any;
|
|
45
|
+
item: {
|
|
46
|
+
argument: any;
|
|
47
|
+
};
|
|
48
|
+
}) => string;
|
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GammaAdvanceChartComponent, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GammaAdvanceChartComponent, "app-gamma-advance-chart", never, { "componentId": "componentId"; "kpi_name": "kpi_name"; "chartDataSource": "chartDataSource"; }, {}, never, never, false>;
|
|
51
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { CommonService } from '../../../common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GammaAdvanceOperatorTableComponent implements OnInit {
|
|
5
|
+
commonService: CommonService;
|
|
6
|
+
isJsonPreview: boolean;
|
|
7
|
+
dataSourseForTable: any;
|
|
8
|
+
jsaonDatasource: any;
|
|
9
|
+
configColume: any;
|
|
10
|
+
isLoader: boolean;
|
|
11
|
+
tableDataConfig: any;
|
|
12
|
+
enrichNameList: string[];
|
|
13
|
+
page_config: any;
|
|
14
|
+
page_parms: any;
|
|
15
|
+
page_selected_operator: any;
|
|
16
|
+
activeTab: string;
|
|
17
|
+
getTableConfigOutPut: EventEmitter<any>;
|
|
18
|
+
oRowClick: EventEmitter<any>;
|
|
19
|
+
onrightClickContextSelection: EventEmitter<any>;
|
|
20
|
+
rightClickEnable: boolean;
|
|
21
|
+
set chartDataSource(value: any);
|
|
22
|
+
constructor(commonService: CommonService);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
transformColumns(mainobj: any): any[];
|
|
25
|
+
getObjectKeys(obj: any): string[];
|
|
26
|
+
setActiveTab(tab: string): void;
|
|
27
|
+
onRowClick(e: any): void;
|
|
28
|
+
addMenuItems(e: any): void;
|
|
29
|
+
callServiceFunction(functionName: string, value: any): any;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GammaAdvanceOperatorTableComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GammaAdvanceOperatorTableComponent, "app-gamma-advance-operator-table", never, { "rightClickEnable": "rightClickEnable"; "chartDataSource": "chartDataSource"; }, { "getTableConfigOutPut": "getTableConfigOutPut"; "oRowClick": "oRowClick"; "onrightClickContextSelection": "onrightClickContextSelection"; }, never, never, false>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ToastrService } from 'ngx-toastr';
|
|
3
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
4
|
+
import { CommonService } from '../../../common';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class GammaTableClumnBarChartComponent {
|
|
7
|
+
commonService: CommonService;
|
|
8
|
+
private toastr;
|
|
9
|
+
private sanitizer;
|
|
10
|
+
dataConfig: any;
|
|
11
|
+
argumentValue: any;
|
|
12
|
+
percentageDataSource: any;
|
|
13
|
+
tableConfig: any;
|
|
14
|
+
page_config: any;
|
|
15
|
+
page_parms: any;
|
|
16
|
+
isLoader: boolean;
|
|
17
|
+
currentDateData: any;
|
|
18
|
+
getTableConfigOutPut: EventEmitter<any>;
|
|
19
|
+
oRowClick: EventEmitter<any>;
|
|
20
|
+
onrightClickContextSelection: EventEmitter<any>;
|
|
21
|
+
rightClickEnable: boolean;
|
|
22
|
+
set chartDataSource(value: any);
|
|
23
|
+
tableDataSource: any;
|
|
24
|
+
constructor(commonService: CommonService, toastr: ToastrService, sanitizer: DomSanitizer);
|
|
25
|
+
ngOnInit(): void;
|
|
26
|
+
loadDailyMscVoiceTable(data: any[], datacolumns: string[]): any[];
|
|
27
|
+
onRowClick(e: any): void;
|
|
28
|
+
addMenuItems(e: any): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GammaTableClumnBarChartComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GammaTableClumnBarChartComponent, "app-gamma-table-clumn-bar-chart", never, { "rightClickEnable": "rightClickEnable"; "chartDataSource": "chartDataSource"; }, { "getTableConfigOutPut": "getTableConfigOutPut"; "oRowClick": "oRowClick"; "onrightClickContextSelection": "onrightClickContextSelection"; }, never, never, false>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class contentSafeHtml implements PipeTransform {
|
|
5
|
+
private sanitizer;
|
|
6
|
+
constructor(sanitizer: DomSanitizer);
|
|
7
|
+
transform(html: any): import("@angular/platform-browser").SafeHtml;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<contentSafeHtml, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<contentSafeHtml, "contentSafeHtml", false>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ToastrService } from 'ngx-toastr';
|
|
3
|
+
import { CommonService } from '../../../common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class GammaTableWithPercentageComponent implements OnInit {
|
|
6
|
+
commonService: CommonService;
|
|
7
|
+
private toastr;
|
|
8
|
+
data: {
|
|
9
|
+
eventType: string;
|
|
10
|
+
access_cost_sar: number;
|
|
11
|
+
event_type: string;
|
|
12
|
+
ict_cost_sar: number;
|
|
13
|
+
margin_sar: number;
|
|
14
|
+
revenue: number;
|
|
15
|
+
}[];
|
|
16
|
+
isLoader: boolean;
|
|
17
|
+
currentDateData: any;
|
|
18
|
+
set chartDataSource(value: any);
|
|
19
|
+
tableDataSource: any;
|
|
20
|
+
constructor(commonService: CommonService, toastr: ToastrService);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
loadDailyMscVoiceTable(data: any): void;
|
|
23
|
+
getEventTypeName(key: any): "Voice" | "SMS" | "GPRS";
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GammaTableWithPercentageComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GammaTableWithPercentageComponent, "app-gamma-table-with-percentage", never, { "chartDataSource": "chartDataSource"; }, {}, never, never, false>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
+
import { CommonService } from '../../../common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GammaTodayPreviousComponent implements OnInit {
|
|
5
|
+
private cdr;
|
|
6
|
+
commonService: CommonService;
|
|
7
|
+
objectdataSource: any;
|
|
8
|
+
isChartvisible: boolean;
|
|
9
|
+
isLoader: boolean;
|
|
10
|
+
page_config: any;
|
|
11
|
+
currentDateData: any;
|
|
12
|
+
prevousDaysData: any;
|
|
13
|
+
calculatedValue: any;
|
|
14
|
+
constructor(cdr: ChangeDetectorRef, commonService: CommonService);
|
|
15
|
+
set chartDataSource(value: any);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
getDynamicValue(data: any): number | string | any;
|
|
18
|
+
formatNumber(value: any): any;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GammaTodayPreviousComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GammaTodayPreviousComponent, "app-gamma-today-previous", never, { "chartDataSource": "chartDataSource"; }, {}, never, never, false>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter } from "@angular/core";
|
|
2
|
+
import { CommonService } from "../../../common";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GoogleGeoMapComponent {
|
|
5
|
+
commonService: CommonService;
|
|
6
|
+
inRoamerGeoChart: ElementRef;
|
|
7
|
+
charData: any;
|
|
8
|
+
chartHeight: any;
|
|
9
|
+
bacgroundColor: any;
|
|
10
|
+
mapColors: any;
|
|
11
|
+
chartType: any;
|
|
12
|
+
tootTipColumn: any;
|
|
13
|
+
getTableConfigOutPut: EventEmitter<any>;
|
|
14
|
+
oRowClick: EventEmitter<any>;
|
|
15
|
+
onrightClickContextSelection: EventEmitter<any>;
|
|
16
|
+
rightClickEnable: boolean;
|
|
17
|
+
isLoader: boolean;
|
|
18
|
+
page_config: any;
|
|
19
|
+
page_parms: any;
|
|
20
|
+
set chartDataSource(value: any);
|
|
21
|
+
constructor(commonService: CommonService);
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
ngAfterViewInit(): void;
|
|
24
|
+
loadGoogleCharts(): void;
|
|
25
|
+
drawChart(): void;
|
|
26
|
+
getTooltip(data: any): string;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleGeoMapComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GoogleGeoMapComponent, "app-google-geo-map", never, { "rightClickEnable": "rightClickEnable"; "chartDataSource": "chartDataSource"; }, { "getTableConfigOutPut": "getTableConfigOutPut"; "oRowClick": "oRowClick"; "onrightClickContextSelection": "onrightClickContextSelection"; }, never, never, false>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { AppHttpService } from '../app.http.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class KpiApiService extends AppHttpService {
|
|
6
|
+
private httpClient;
|
|
7
|
+
constructor(httpClient: HttpClient);
|
|
8
|
+
private kpiFilter;
|
|
9
|
+
userkpiFilter$: Observable<any>;
|
|
10
|
+
getFilterForKpi(pins: any): void;
|
|
11
|
+
getCurrentKpiFilterValue(): any;
|
|
12
|
+
getData(body: any, requestID: any): any;
|
|
13
|
+
getDataByAPI(requestID: any, body: any): any;
|
|
14
|
+
getUniqueData(api: any): Observable<Response>;
|
|
15
|
+
getCdrData(api: any, url: any): any;
|
|
16
|
+
getMapData(body: any, requestID: any): any;
|
|
17
|
+
getfilterData(): any;
|
|
18
|
+
getSrvTypeDataSource(): any;
|
|
19
|
+
pagintedActivityLogs(parms: any, api: any): Observable<any>;
|
|
20
|
+
getApiData(): any;
|
|
21
|
+
getKpiBrowserConfigById(id: any): any;
|
|
22
|
+
getAppPageDetailConfig(pageId: any): any;
|
|
23
|
+
getDashBoardJson(): any;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KpiApiService, never>;
|
|
25
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<KpiApiService>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { OnInit, EventEmitter } from '@angular/core';
|
|
2
|
+
import { CommonService } from '../../common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AppTitleComponent implements OnInit {
|
|
5
|
+
commonService: CommonService;
|
|
6
|
+
isOperatorsvisible: boolean;
|
|
7
|
+
title: any;
|
|
8
|
+
multiple: boolean;
|
|
9
|
+
isFilterDisplay: boolean;
|
|
10
|
+
icon: boolean;
|
|
11
|
+
iconName: any;
|
|
12
|
+
displayType: string;
|
|
13
|
+
keyToPass: string;
|
|
14
|
+
fixOperationLevles: string;
|
|
15
|
+
onOperatorClick: EventEmitter<any>;
|
|
16
|
+
operatorsDatasource: any;
|
|
17
|
+
operator_display: any;
|
|
18
|
+
fixoperationValue: any;
|
|
19
|
+
isSearchModal: boolean;
|
|
20
|
+
set operators(value: any);
|
|
21
|
+
constructor(commonService: CommonService);
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
getCapitalize(item: string): any;
|
|
24
|
+
getOperator(item: any): void;
|
|
25
|
+
openSearchFilter(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppTitleComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppTitleComponent, "app-title", never, { "title": "title"; "multiple": "multiple"; "isFilterDisplay": "isFilterDisplay"; "icon": "icon"; "iconName": "iconName"; "displayType": "displayType"; "keyToPass": "keyToPass"; "fixOperationLevles": "fixOperationLevles"; "operators": "operators"; }, { "onOperatorClick": "onOperatorClick"; }, never, never, false>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ToastrService } from 'ngx-toastr';
|
|
3
|
+
import { KpiApiService } from '../api.service';
|
|
4
|
+
import { kpicommonService } from '../kpi-comon-service';
|
|
5
|
+
import { CommonService } from '../../common';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class GamamWidgetComponent implements OnInit {
|
|
8
|
+
commonService: CommonService;
|
|
9
|
+
private toastr;
|
|
10
|
+
private service;
|
|
11
|
+
private kpiService;
|
|
12
|
+
subscriber_count: any;
|
|
13
|
+
page_config: any;
|
|
14
|
+
isLoader: boolean;
|
|
15
|
+
constructor(commonService: CommonService, toastr: ToastrService, service: KpiApiService, kpiService: kpicommonService);
|
|
16
|
+
set widgetConfigSource(value: any);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GamamWidgetComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GamamWidgetComponent, "app-gamam-widget", never, { "widgetConfigSource": "widgetConfigSource"; }, {}, never, never, false>;
|
|
20
|
+
}
|
package/lib/application-controller/shared/gamma-advance-filter/gamma-advance-filter.component.d.ts
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { OnInit, EventEmitter, ElementRef } from '@angular/core';
|
|
2
|
+
import { ToastrService } from 'ngx-toastr';
|
|
3
|
+
import { kpicommonService } from '../kpi-comon-service';
|
|
4
|
+
import { ApplicationContentService } from '../../application-content.service';
|
|
5
|
+
import { CommonService } from '../../common';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class GammaAdvanceFilterComponent implements OnInit {
|
|
8
|
+
private service;
|
|
9
|
+
private kpiService;
|
|
10
|
+
private toastr;
|
|
11
|
+
commonService: CommonService;
|
|
12
|
+
kpiId: any;
|
|
13
|
+
filterStartDate: any;
|
|
14
|
+
filterEndDate: any;
|
|
15
|
+
browser_api_config: any;
|
|
16
|
+
isButtonDesiable: boolean;
|
|
17
|
+
filterDataObject: EventEmitter<any>;
|
|
18
|
+
menuIcon: ElementRef;
|
|
19
|
+
isDatesDropDown: boolean;
|
|
20
|
+
quickDateSelector: boolean;
|
|
21
|
+
kpiFilterData: any;
|
|
22
|
+
defaultStartDate: any;
|
|
23
|
+
defaultEndDate: any;
|
|
24
|
+
isLoader: boolean;
|
|
25
|
+
ranges: {
|
|
26
|
+
name: string;
|
|
27
|
+
value: import("moment").Moment[];
|
|
28
|
+
}[];
|
|
29
|
+
set filterOperatorData(value: any);
|
|
30
|
+
constructor(service: ApplicationContentService, kpiService: kpicommonService, toastr: ToastrService, commonService: CommonService);
|
|
31
|
+
ngOnInit(): void;
|
|
32
|
+
processFilterForData(): Promise<void>;
|
|
33
|
+
parseContentValue(contentvalue: any): any;
|
|
34
|
+
getIsMsisdn(context: any): boolean;
|
|
35
|
+
startDateChange(e: any): void;
|
|
36
|
+
endDateChange(e: any): void;
|
|
37
|
+
searchByFilter(): void;
|
|
38
|
+
reseteFilter(): void;
|
|
39
|
+
getDrildownDimentions(apiName: any): any;
|
|
40
|
+
getCapitalize(item: string): any;
|
|
41
|
+
getQuickDateClick(item: any): void;
|
|
42
|
+
onDocumentClick(event: MouseEvent): void;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GammaAdvanceFilterComponent, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GammaAdvanceFilterComponent, "app-gamma-advance-filter", never, { "kpiId": "kpiId"; "filterStartDate": "filterStartDate"; "filterEndDate": "filterEndDate"; "browser_api_config": "browser_api_config"; "isButtonDesiable": "isButtonDesiable"; "filterOperatorData": "filterOperatorData"; }, { "filterDataObject": "filterDataObject"; }, never, never, false>;
|
|
45
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { OnInit } from "@angular/core";
|
|
2
|
+
import { Router, ActivatedRoute } from "@angular/router";
|
|
3
|
+
import { Location } from "@angular/common";
|
|
4
|
+
import { HttpClient } from "@angular/common/http";
|
|
5
|
+
import { CommonService } from "../../common";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class BreadCrumbsComponent implements OnInit {
|
|
8
|
+
private location;
|
|
9
|
+
private router;
|
|
10
|
+
private http;
|
|
11
|
+
private activatedRoute;
|
|
12
|
+
private commonService;
|
|
13
|
+
breadcrumbList: any;
|
|
14
|
+
breadcrumbLinksList: any;
|
|
15
|
+
route: string;
|
|
16
|
+
count: number;
|
|
17
|
+
kpiListData: any;
|
|
18
|
+
kpi_structures: {};
|
|
19
|
+
kpi_names: {};
|
|
20
|
+
kpiUrlID: any;
|
|
21
|
+
data: any[];
|
|
22
|
+
kpiBrowserName: Boolean;
|
|
23
|
+
isBreadCrumbs: Boolean;
|
|
24
|
+
set kpi_data_container(value: any);
|
|
25
|
+
constructor(location: Location, router: Router, http: HttpClient, activatedRoute: ActivatedRoute, commonService: CommonService);
|
|
26
|
+
ngOnInit(): void;
|
|
27
|
+
getKpiName(data: any, relativePath: any): void;
|
|
28
|
+
getBreadCrumbsData(data: any): {};
|
|
29
|
+
loadBreadCrumbs(): void;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadCrumbsComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadCrumbsComponent, "gamma-bread-crumbs", never, { "kpi_data_container": "kpi_data_container"; }, {}, never, never, false>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { CommonService } from '../common';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class kpicommonService {
|
|
4
|
+
commonService: CommonService;
|
|
5
|
+
constructor(commonService: CommonService);
|
|
6
|
+
getAllSeviceApiJson(apiJsonObject: any): any;
|
|
7
|
+
filterOperationData(data: any, key: any): any;
|
|
8
|
+
dataprocessArrary(arrayOne: any, arrayTwo: any): any[];
|
|
9
|
+
processNetworkArray(arrayOne: any, arrayTwo: any): any[];
|
|
10
|
+
processNetworkArrayForFilter(arrayOne: any, arrayTwo: any): any[];
|
|
11
|
+
hasDecimal(number: any): boolean;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<kpicommonService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<kpicommonService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LoaderComponent implements OnInit {
|
|
4
|
+
constructor();
|
|
5
|
+
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "app-loader", never, {}, {}, never, never, false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LoadingComponent implements OnInit {
|
|
4
|
+
showLoadingModal: boolean;
|
|
5
|
+
constructor();
|
|
6
|
+
ngOnInit(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "app-loading", never, {}, {}, never, never, false>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./loading.component";
|
|
3
|
+
import * as i2 from "@angular/router";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
export declare class LoadingModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LoadingModule, [typeof i1.LoadingComponent], [typeof i2.RouterModule, typeof i3.CommonModule, typeof i4.FormsModule], [typeof i1.LoadingComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LoadingModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SafeHtmlPipe implements PipeTransform {
|
|
5
|
+
private sanitizer;
|
|
6
|
+
constructor(sanitizer: DomSanitizer);
|
|
7
|
+
transform(value: string): SafeHtml;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SafeHtmlPipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SafeHtmlPipe, "safeHtml", false>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { CommonService } from '../../common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DashChartComponent implements OnInit {
|
|
5
|
+
commonService: CommonService;
|
|
6
|
+
kpi_config: any;
|
|
7
|
+
kpi_columns: any;
|
|
8
|
+
chartConfig: any;
|
|
9
|
+
widGetConfig: any;
|
|
10
|
+
selectedChartType: any;
|
|
11
|
+
chartAccess: any;
|
|
12
|
+
componentName: any;
|
|
13
|
+
isJsonPreview: boolean;
|
|
14
|
+
dataSourseForChart: any;
|
|
15
|
+
chartAxisSource: {
|
|
16
|
+
name: string;
|
|
17
|
+
value: string;
|
|
18
|
+
}[];
|
|
19
|
+
mainChartCourceObject: {
|
|
20
|
+
kpiConfig: {
|
|
21
|
+
serviceId: string;
|
|
22
|
+
api: string;
|
|
23
|
+
displayType: string;
|
|
24
|
+
formate: string;
|
|
25
|
+
componentName: string;
|
|
26
|
+
dataConfig: {
|
|
27
|
+
title: string;
|
|
28
|
+
argumentField: string;
|
|
29
|
+
verticalAlignment: string;
|
|
30
|
+
horizontalAlignment: string;
|
|
31
|
+
size: string;
|
|
32
|
+
chartType: string;
|
|
33
|
+
chartAxis: string;
|
|
34
|
+
legendDisplay: boolean;
|
|
35
|
+
caption: string;
|
|
36
|
+
chart_config: any[];
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
widget_width: string[];
|
|
41
|
+
componentNamesForMultyAccess: {
|
|
42
|
+
compName: string;
|
|
43
|
+
item: string;
|
|
44
|
+
}[];
|
|
45
|
+
componentNamesForSingleAccess: {
|
|
46
|
+
compName: string;
|
|
47
|
+
item: string;
|
|
48
|
+
}[];
|
|
49
|
+
chartTypeSource: string[];
|
|
50
|
+
doughnut_color_palette: string[];
|
|
51
|
+
configColume: any;
|
|
52
|
+
jsaonDatasource: any;
|
|
53
|
+
chartType: any;
|
|
54
|
+
activeTab: string;
|
|
55
|
+
isEditWidget: boolean;
|
|
56
|
+
heatChartDataSource: any;
|
|
57
|
+
bubbleChartData: any;
|
|
58
|
+
getChartConfigOutPut: EventEmitter<any>;
|
|
59
|
+
set chartconfigData(value: any);
|
|
60
|
+
setActiveTab(tab: string): void;
|
|
61
|
+
constructor(commonService: CommonService);
|
|
62
|
+
ngOnInit(): void;
|
|
63
|
+
getChartAccessType(e: any): void;
|
|
64
|
+
getChartType(e: any): void;
|
|
65
|
+
addColumns(): void;
|
|
66
|
+
deleteColumns(i: any): void;
|
|
67
|
+
moveItem(index: number, direction: 'up' | 'down'): void;
|
|
68
|
+
getSaveChartConfig(): void;
|
|
69
|
+
customizeTooltip(arg: any): {
|
|
70
|
+
text: string;
|
|
71
|
+
};
|
|
72
|
+
calculateTotal(pieChart: any): string;
|
|
73
|
+
pointClickHandler(arg: any): void;
|
|
74
|
+
getHeatmapData(): void;
|
|
75
|
+
generateData(data: any, chartConfig: any): {
|
|
76
|
+
result: any[];
|
|
77
|
+
uniqueDates: unknown[];
|
|
78
|
+
};
|
|
79
|
+
getFormateDataByColorCode(filedata: any, valueField: any, minBubbleSize: any, maxBubbleSize: any): any;
|
|
80
|
+
mapRange(value: any, inMin: any, inMax: any, outMin: any, outMax: any): any;
|
|
81
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DashChartComponent, never>;
|
|
82
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DashChartComponent, "app-dash-chart", never, { "chartconfigData": "datasetmodal"; }, { "getChartConfigOutPut": "getChartConfigOutPut"; }, never, never, false>;
|
|
83
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ApplicationContentService } from '../../application-content.service';
|
|
3
|
+
import { ToastrService } from 'ngx-toastr';
|
|
4
|
+
import { CommonService } from '../../common';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class DashTableComponent implements OnInit {
|
|
7
|
+
commonService: CommonService;
|
|
8
|
+
private cdr;
|
|
9
|
+
private service;
|
|
10
|
+
private taostr;
|
|
11
|
+
isJsonPreview: boolean;
|
|
12
|
+
dataSourseForTable: any;
|
|
13
|
+
jsaonDatasource: any;
|
|
14
|
+
configColume: any;
|
|
15
|
+
allConfiguredViews: any;
|
|
16
|
+
viewProperties: any;
|
|
17
|
+
optionalDrilDownDataSource: any;
|
|
18
|
+
table_columns_config: {
|
|
19
|
+
kpiConfig: {
|
|
20
|
+
serviceId: string;
|
|
21
|
+
api: string;
|
|
22
|
+
displayType: string;
|
|
23
|
+
formate: string;
|
|
24
|
+
keyToPass: any[];
|
|
25
|
+
componentName: string;
|
|
26
|
+
dataConfig: {};
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
tableDataConfig: {
|
|
30
|
+
searchPanel: boolean;
|
|
31
|
+
file_name: string;
|
|
32
|
+
numberOfRow: number;
|
|
33
|
+
pageInfo: boolean;
|
|
34
|
+
allowedPageSizes: number[];
|
|
35
|
+
columns: any[];
|
|
36
|
+
commonConfig: {
|
|
37
|
+
title: string;
|
|
38
|
+
dataField: string;
|
|
39
|
+
checkedKey: string;
|
|
40
|
+
isSearchBox: boolean;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
enrichNameList: string[];
|
|
44
|
+
selectedTableViewType: any;
|
|
45
|
+
isLoader: boolean;
|
|
46
|
+
selectedViewConfigs: any;
|
|
47
|
+
constructor(commonService: CommonService, cdr: ChangeDetectorRef, service: ApplicationContentService, taostr: ToastrService);
|
|
48
|
+
activeTab: string;
|
|
49
|
+
getTableConfigOutPut: EventEmitter<any>;
|
|
50
|
+
set chartconfigData(value: any);
|
|
51
|
+
ngOnInit(): void;
|
|
52
|
+
addColumns(): void;
|
|
53
|
+
deleteColumns(i: any): void;
|
|
54
|
+
getEnrichClassName(e: any, item: any): void;
|
|
55
|
+
moveItemForColumns(index: number, direction: 'up' | 'down'): void;
|
|
56
|
+
getObjectKeys(obj: any): string[];
|
|
57
|
+
setActiveTab(tab: string): void;
|
|
58
|
+
getGroupColumns(columns: any): any;
|
|
59
|
+
geColumnsFromGroup(columns: any): any[];
|
|
60
|
+
getSaveChartConfig(): void;
|
|
61
|
+
deleteAssociatedParams(index: any): void;
|
|
62
|
+
addAssociatedParams(): void;
|
|
63
|
+
getSelectedEventType(e: any): void;
|
|
64
|
+
resetViewProprstise(): void;
|
|
65
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DashTableComponent, never>;
|
|
66
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DashTableComponent, "app-dash-table", never, { "chartconfigData": "datasetmodal"; }, { "getTableConfigOutPut": "getTableConfigOutPut"; }, never, never, false>;
|
|
67
|
+
}
|