gamma-app-controller 1.1.27 → 1.1.28
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/template-module/bookmarked-template/bookmarked-dataset-call.service.mjs +364 -0
- package/esm2020/lib/template-module/bookmarked-template/bookmarked-layout.service.mjs +121 -0
- package/esm2020/lib/template-module/bookmarked-template/bookmarked-template.component.mjs +5 -5
- package/esm2020/lib/template-module/bookmarked-template/bookmarkedTemplate.module.mjs +5 -3
- package/esm2020/lib/template-module/defaulLandingComponent/defaultLandingComponent.module.mjs +5 -3
- package/esm2020/lib/template-module/defaulLandingComponent/landing-component.component.mjs +5 -5
- package/esm2020/lib/template-module/defaulLandingComponent/landing-component.service.mjs +121 -0
- package/esm2020/lib/template-module/defaulLandingComponent/landing-dataset-call.service.mjs +364 -0
- package/esm2020/lib/template-module/kpiWithMultiLayout/kpi-multi-layout.service.mjs +121 -0
- package/esm2020/lib/template-module/kpiWithMultiLayout/kpi-with-multilayout.component.mjs +5 -5
- package/esm2020/lib/template-module/kpiWithMultiLayout/kpiWithMultiayout.module.mjs +5 -3
- package/esm2020/lib/template-module/kpiWithMultiLayout/single-layout-dataset-call.service.mjs +364 -0
- package/esm2020/lib/template-module/kpiWithSingleLayout/kpi-single-layout.service.mjs +121 -0
- package/esm2020/lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component.mjs +5 -5
- package/esm2020/lib/template-module/kpiWithSingleLayout/kpiWithSingleLayout.module.mjs +5 -3
- package/esm2020/lib/template-module/kpiWithSingleLayout/multi-layout-dataset-call.service.mjs +364 -0
- package/esm2020/public-api.mjs +9 -1
- package/fesm2015/gamma-app-controller.mjs +4362 -2458
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +4330 -2442
- package/fesm2020/gamma-app-controller.mjs.map +1 -1
- package/lib/template-module/bookmarked-template/bookmarked-dataset-call.service.d.ts +24 -0
- package/lib/template-module/bookmarked-template/bookmarked-layout.service.d.ts +33 -0
- package/lib/template-module/bookmarked-template/bookmarked-template.component.d.ts +3 -3
- package/lib/template-module/defaulLandingComponent/landing-component.component.d.ts +3 -3
- package/lib/template-module/defaulLandingComponent/landing-component.service.d.ts +33 -0
- package/lib/template-module/defaulLandingComponent/landing-dataset-call.service.d.ts +24 -0
- package/lib/template-module/kpiWithMultiLayout/kpi-multi-layout.service.d.ts +33 -0
- package/lib/template-module/kpiWithMultiLayout/kpi-with-multilayout.component.d.ts +3 -3
- package/lib/template-module/kpiWithMultiLayout/single-layout-dataset-call.service.d.ts +24 -0
- package/lib/template-module/kpiWithSingleLayout/kpi-single-layout.service.d.ts +33 -0
- package/lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component.d.ts +3 -3
- package/lib/template-module/kpiWithSingleLayout/multi-layout-dataset-call.service.d.ts +24 -0
- package/package.json +1 -1
- package/public-api.d.ts +8 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ToastrService } from 'ngx-toastr';
|
|
2
|
+
import { kpicommonService } from '../../application-controller/kpi-service';
|
|
3
|
+
import { BookmarkedService } from './bookmarked-layout.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BookmarkedApplicationDatssetsCall {
|
|
6
|
+
private service;
|
|
7
|
+
private kpiService;
|
|
8
|
+
private toastr;
|
|
9
|
+
private environment;
|
|
10
|
+
uniqueDataSetObject: {};
|
|
11
|
+
constructor(service: BookmarkedService, kpiService: kpicommonService, toastr: ToastrService, environment: any);
|
|
12
|
+
getDataFromDataSet(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
13
|
+
getDataSetForMongo(dataset: any, datasetId: any): Promise<void>;
|
|
14
|
+
getDatasetForImpala(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
15
|
+
getFormatObjectForColumn(columns: any): any[];
|
|
16
|
+
transformDataForMFilter(filterdata: any, mapData: any): any[];
|
|
17
|
+
getDatasetForSimpleApiImpala(dataset: any, datasetId: string, filters: any): Promise<void>;
|
|
18
|
+
getDatasetForPlainJson(dataset: any, datasetId: any, filter: any): Promise<void>;
|
|
19
|
+
getDatasetForSqlTemplate(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
20
|
+
transformDataForMFilterForSQl(filterdata: any, mapData: any): any[];
|
|
21
|
+
getUniqueDataSetObject(): {};
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BookmarkedApplicationDatssetsCall, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BookmarkedApplicationDatssetsCall>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
2
|
+
import { Subject, Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BookmarkedService {
|
|
5
|
+
http: HttpClient;
|
|
6
|
+
private environment;
|
|
7
|
+
headers: HttpHeaders;
|
|
8
|
+
options: {
|
|
9
|
+
headers: HttpHeaders;
|
|
10
|
+
withCredentials: boolean;
|
|
11
|
+
};
|
|
12
|
+
_selectedKpiOnClick: Subject<any>;
|
|
13
|
+
_kpilist: Subject<any>;
|
|
14
|
+
_selectKpiFromDropDown: Subject<any>;
|
|
15
|
+
private _componentRegistry;
|
|
16
|
+
private kpiFilter;
|
|
17
|
+
constructor(http: HttpClient, environment: any);
|
|
18
|
+
handleError(error: any): Observable<Response>;
|
|
19
|
+
getlistKpiBrowser(): any;
|
|
20
|
+
getAppPageDetailConfig(pageId: any): any;
|
|
21
|
+
getAppPageConfigs(): any;
|
|
22
|
+
getAppDatasetConfigs(): any;
|
|
23
|
+
getAppDatasetConfig(datasetId: any): any;
|
|
24
|
+
getAppFilterConfig(filterId: any): any;
|
|
25
|
+
getAppViewConfigs(): any;
|
|
26
|
+
getData(body: any, requestID: any): any;
|
|
27
|
+
getSimpleApiPostRequest(requestApi: any, body: any): any;
|
|
28
|
+
getSimpleApiGetRequest(requestApi: any): any;
|
|
29
|
+
getJsonDatasetPayload(requestApi: any): any;
|
|
30
|
+
genericSqlQueryResponse(requestApi: any, body: any): any;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BookmarkedService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BookmarkedService>;
|
|
33
|
+
}
|
|
@@ -8,9 +8,9 @@ import { GammaTableWithPercentageComponent } from '../../shared/advanced-compone
|
|
|
8
8
|
import { GammSingleNumberCardComponent } from '../../shared/advanced-component/gamm-single-number-card/gamm-single-number-card.component';
|
|
9
9
|
import { GammaAdvanceOperatorTableComponent } from '../../shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component';
|
|
10
10
|
import { AdvanceWidgetHeaderFilterComponent } from '../../shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component';
|
|
11
|
-
import {
|
|
12
|
-
import { ApplicationDatssetsCall } from '../../application-controller/application-dataset-call.service';
|
|
11
|
+
import { BookmarkedApplicationDatssetsCall } from './bookmarked-dataset-call.service';
|
|
13
12
|
import { ToastrService } from 'ngx-toastr';
|
|
13
|
+
import { BookmarkedService } from './bookmarked-layout.service';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class BookmarkedTemplateComponent implements OnInit {
|
|
16
16
|
commonService: CommonService;
|
|
@@ -78,7 +78,7 @@ export declare class BookmarkedTemplateComponent implements OnInit {
|
|
|
78
78
|
globalDefaultFilter: any;
|
|
79
79
|
pageId: any;
|
|
80
80
|
kpi_breadcrumbs_container: any;
|
|
81
|
-
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service:
|
|
81
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: BookmarkedService, toastr: ToastrService, router: Router, datasetService: BookmarkedApplicationDatssetsCall);
|
|
82
82
|
ngOnInit(): void;
|
|
83
83
|
getFiltersForTemplate(filter: any): Promise<void>;
|
|
84
84
|
getPadeDataSource(context: any): Promise<void>;
|
|
@@ -8,9 +8,9 @@ import { GammaTableWithPercentageComponent } from '../../shared/advanced-compone
|
|
|
8
8
|
import { GammSingleNumberCardComponent } from '../../shared/advanced-component/gamm-single-number-card/gamm-single-number-card.component';
|
|
9
9
|
import { GammaAdvanceOperatorTableComponent } from '../../shared/advanced-component/gamma-advance-operator-table/gamma-advance-operator-table.component';
|
|
10
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
11
|
import { ToastrService } from 'ngx-toastr';
|
|
12
|
+
import { LandingComponentService } from './landing-component.service';
|
|
13
|
+
import { LandingApplicationDatssetsCall } from './landing-dataset-call.service';
|
|
14
14
|
import * as i0 from "@angular/core";
|
|
15
15
|
export declare class LandingComponentComponent implements OnInit {
|
|
16
16
|
commonService: CommonService;
|
|
@@ -78,7 +78,7 @@ export declare class LandingComponentComponent implements OnInit {
|
|
|
78
78
|
globalDefaultFilter: any;
|
|
79
79
|
pageId: any;
|
|
80
80
|
kpi_breadcrumbs_container: any;
|
|
81
|
-
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service:
|
|
81
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: LandingComponentService, toastr: ToastrService, router: Router, datasetService: LandingApplicationDatssetsCall);
|
|
82
82
|
ngOnInit(): void;
|
|
83
83
|
getFiltersForTemplate(filter: any): Promise<void>;
|
|
84
84
|
getPadeDataSource(context: any): Promise<void>;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
2
|
+
import { Subject, Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LandingComponentService {
|
|
5
|
+
http: HttpClient;
|
|
6
|
+
private environment;
|
|
7
|
+
headers: HttpHeaders;
|
|
8
|
+
options: {
|
|
9
|
+
headers: HttpHeaders;
|
|
10
|
+
withCredentials: boolean;
|
|
11
|
+
};
|
|
12
|
+
_selectedKpiOnClick: Subject<any>;
|
|
13
|
+
_kpilist: Subject<any>;
|
|
14
|
+
_selectKpiFromDropDown: Subject<any>;
|
|
15
|
+
private _componentRegistry;
|
|
16
|
+
private kpiFilter;
|
|
17
|
+
constructor(http: HttpClient, environment: any);
|
|
18
|
+
handleError(error: any): Observable<Response>;
|
|
19
|
+
getlistKpiBrowser(): any;
|
|
20
|
+
getAppPageDetailConfig(pageId: any): any;
|
|
21
|
+
getAppPageConfigs(): any;
|
|
22
|
+
getAppDatasetConfigs(): any;
|
|
23
|
+
getAppDatasetConfig(datasetId: any): any;
|
|
24
|
+
getAppFilterConfig(filterId: any): any;
|
|
25
|
+
getAppViewConfigs(): any;
|
|
26
|
+
getData(body: any, requestID: any): any;
|
|
27
|
+
getSimpleApiPostRequest(requestApi: any, body: any): any;
|
|
28
|
+
getSimpleApiGetRequest(requestApi: any): any;
|
|
29
|
+
getJsonDatasetPayload(requestApi: any): any;
|
|
30
|
+
genericSqlQueryResponse(requestApi: any, body: any): any;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LandingComponentService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LandingComponentService>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ToastrService } from 'ngx-toastr';
|
|
2
|
+
import { kpicommonService } from '../../application-controller/kpi-service';
|
|
3
|
+
import { LandingComponentService } from './landing-component.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LandingApplicationDatssetsCall {
|
|
6
|
+
private service;
|
|
7
|
+
private kpiService;
|
|
8
|
+
private toastr;
|
|
9
|
+
private environment;
|
|
10
|
+
uniqueDataSetObject: {};
|
|
11
|
+
constructor(service: LandingComponentService, kpiService: kpicommonService, toastr: ToastrService, environment: any);
|
|
12
|
+
getDataFromDataSet(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
13
|
+
getDataSetForMongo(dataset: any, datasetId: any): Promise<void>;
|
|
14
|
+
getDatasetForImpala(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
15
|
+
getFormatObjectForColumn(columns: any): any[];
|
|
16
|
+
transformDataForMFilter(filterdata: any, mapData: any): any[];
|
|
17
|
+
getDatasetForSimpleApiImpala(dataset: any, datasetId: string, filters: any): Promise<void>;
|
|
18
|
+
getDatasetForPlainJson(dataset: any, datasetId: any, filter: any): Promise<void>;
|
|
19
|
+
getDatasetForSqlTemplate(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
20
|
+
transformDataForMFilterForSQl(filterdata: any, mapData: any): any[];
|
|
21
|
+
getUniqueDataSetObject(): {};
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LandingApplicationDatssetsCall, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LandingApplicationDatssetsCall>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
2
|
+
import { Subject, Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class KpiWithMultiLayoutService {
|
|
5
|
+
http: HttpClient;
|
|
6
|
+
private environment;
|
|
7
|
+
headers: HttpHeaders;
|
|
8
|
+
options: {
|
|
9
|
+
headers: HttpHeaders;
|
|
10
|
+
withCredentials: boolean;
|
|
11
|
+
};
|
|
12
|
+
_selectedKpiOnClick: Subject<any>;
|
|
13
|
+
_kpilist: Subject<any>;
|
|
14
|
+
_selectKpiFromDropDown: Subject<any>;
|
|
15
|
+
private _componentRegistry;
|
|
16
|
+
private kpiFilter;
|
|
17
|
+
constructor(http: HttpClient, environment: any);
|
|
18
|
+
handleError(error: any): Observable<Response>;
|
|
19
|
+
getlistKpiBrowser(): any;
|
|
20
|
+
getAppPageDetailConfig(pageId: any): any;
|
|
21
|
+
getAppPageConfigs(): any;
|
|
22
|
+
getAppDatasetConfigs(): any;
|
|
23
|
+
getAppDatasetConfig(datasetId: any): any;
|
|
24
|
+
getAppFilterConfig(filterId: any): any;
|
|
25
|
+
getAppViewConfigs(): any;
|
|
26
|
+
getData(body: any, requestID: any): any;
|
|
27
|
+
getSimpleApiPostRequest(requestApi: any, body: any): any;
|
|
28
|
+
getSimpleApiGetRequest(requestApi: any): any;
|
|
29
|
+
getJsonDatasetPayload(requestApi: any): any;
|
|
30
|
+
genericSqlQueryResponse(requestApi: any, body: any): any;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KpiWithMultiLayoutService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<KpiWithMultiLayoutService>;
|
|
33
|
+
}
|
|
@@ -11,8 +11,8 @@ import { GammaAdvanceOperatorTableComponent } from '../../shared/advanced-compon
|
|
|
11
11
|
import { AdvanceWidgetHeaderFilterComponent } from '../../shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component';
|
|
12
12
|
import { GammaGeoChartComponent } from '../../shared/advanced-component/gamma-geo-chart/gamma-geo-chart.component';
|
|
13
13
|
import { GammaHeatChartComponent } from '../../shared/advanced-component/gamma-heatmap/gamma-heatmap.component';
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
14
|
+
import { SingleLayoutApplicationDatssetsCall } from './single-layout-dataset-call.service';
|
|
15
|
+
import { KpiWithMultiLayoutService } from './kpi-multi-layout.service';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class KpiWithMultilayoutSetTestComponent implements OnInit {
|
|
18
18
|
commonService: CommonService;
|
|
@@ -83,7 +83,7 @@ export declare class KpiWithMultilayoutSetTestComponent implements OnInit {
|
|
|
83
83
|
pageId: any;
|
|
84
84
|
kpi_breadcrumbs_container: any;
|
|
85
85
|
operatorName: any;
|
|
86
|
-
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service:
|
|
86
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: KpiWithMultiLayoutService, toastr: ToastrService, router: Router, datasetService: SingleLayoutApplicationDatssetsCall);
|
|
87
87
|
ngOnInit(): void;
|
|
88
88
|
getFiltersForTemplate(filter: any): Promise<void>;
|
|
89
89
|
getPadeDataSource(context: any): Promise<void>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ToastrService } from 'ngx-toastr';
|
|
2
|
+
import { kpicommonService } from '../../application-controller/kpi-service';
|
|
3
|
+
import { KpiWithMultiLayoutService } from './kpi-multi-layout.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SingleLayoutApplicationDatssetsCall {
|
|
6
|
+
private service;
|
|
7
|
+
private kpiService;
|
|
8
|
+
private toastr;
|
|
9
|
+
private environment;
|
|
10
|
+
uniqueDataSetObject: {};
|
|
11
|
+
constructor(service: KpiWithMultiLayoutService, kpiService: kpicommonService, toastr: ToastrService, environment: any);
|
|
12
|
+
getDataFromDataSet(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
13
|
+
getDataSetForMongo(dataset: any, datasetId: any): Promise<void>;
|
|
14
|
+
getDatasetForImpala(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
15
|
+
getFormatObjectForColumn(columns: any): any[];
|
|
16
|
+
transformDataForMFilter(filterdata: any, mapData: any): any[];
|
|
17
|
+
getDatasetForSimpleApiImpala(dataset: any, datasetId: string, filters: any): Promise<void>;
|
|
18
|
+
getDatasetForPlainJson(dataset: any, datasetId: any, filter: any): Promise<void>;
|
|
19
|
+
getDatasetForSqlTemplate(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
20
|
+
transformDataForMFilterForSQl(filterdata: any, mapData: any): any[];
|
|
21
|
+
getUniqueDataSetObject(): {};
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SingleLayoutApplicationDatssetsCall, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SingleLayoutApplicationDatssetsCall>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { HttpClient, HttpHeaders } from '@angular/common/http';
|
|
2
|
+
import { Subject, Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class KpiWithSingleLayoutService {
|
|
5
|
+
http: HttpClient;
|
|
6
|
+
private environment;
|
|
7
|
+
headers: HttpHeaders;
|
|
8
|
+
options: {
|
|
9
|
+
headers: HttpHeaders;
|
|
10
|
+
withCredentials: boolean;
|
|
11
|
+
};
|
|
12
|
+
_selectedKpiOnClick: Subject<any>;
|
|
13
|
+
_kpilist: Subject<any>;
|
|
14
|
+
_selectKpiFromDropDown: Subject<any>;
|
|
15
|
+
private _componentRegistry;
|
|
16
|
+
private kpiFilter;
|
|
17
|
+
constructor(http: HttpClient, environment: any);
|
|
18
|
+
handleError(error: any): Observable<Response>;
|
|
19
|
+
getlistKpiBrowser(): any;
|
|
20
|
+
getAppPageDetailConfig(pageId: any): any;
|
|
21
|
+
getAppPageConfigs(): any;
|
|
22
|
+
getAppDatasetConfigs(): any;
|
|
23
|
+
getAppDatasetConfig(datasetId: any): any;
|
|
24
|
+
getAppFilterConfig(filterId: any): any;
|
|
25
|
+
getAppViewConfigs(): any;
|
|
26
|
+
getData(body: any, requestID: any): any;
|
|
27
|
+
getSimpleApiPostRequest(requestApi: any, body: any): any;
|
|
28
|
+
getSimpleApiGetRequest(requestApi: any): any;
|
|
29
|
+
getJsonDatasetPayload(requestApi: any): any;
|
|
30
|
+
genericSqlQueryResponse(requestApi: any, body: any): any;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KpiWithSingleLayoutService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<KpiWithSingleLayoutService>;
|
|
33
|
+
}
|
|
@@ -11,8 +11,8 @@ import { GammaAdvanceOperatorTableComponent } from '../../shared/advanced-compon
|
|
|
11
11
|
import { AdvanceWidgetHeaderFilterComponent } from '../../shared/advanced-component/advance-widget-header-filter/advance-widget-header-filter.component';
|
|
12
12
|
import { GammaGeoChartComponent } from '../../shared/advanced-component/gamma-geo-chart/gamma-geo-chart.component';
|
|
13
13
|
import { GammaHeatChartComponent } from '../../shared/advanced-component/gamma-heatmap/gamma-heatmap.component';
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
14
|
+
import { MultilayoutApplicationDatssetsCall } from './multi-layout-dataset-call.service';
|
|
15
|
+
import { KpiWithSingleLayoutService } from './kpi-single-layout.service';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export declare class KpiWithDataSetTestComponent implements OnInit {
|
|
18
18
|
commonService: CommonService;
|
|
@@ -87,7 +87,7 @@ export declare class KpiWithDataSetTestComponent implements OnInit {
|
|
|
87
87
|
defaultViewIds: any;
|
|
88
88
|
isPopupView: boolean;
|
|
89
89
|
modalConfigs: any;
|
|
90
|
-
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service:
|
|
90
|
+
constructor(commonService: CommonService, activatedRoute: ActivatedRoute, viewContainerRef: ViewContainerRef, componentFactoryResolver: ComponentFactoryResolver, service: KpiWithSingleLayoutService, toastr: ToastrService, router: Router, datasetService: MultilayoutApplicationDatssetsCall);
|
|
91
91
|
ngOnInit(): void;
|
|
92
92
|
getFiltersForTemplate(filter: any): Promise<void>;
|
|
93
93
|
getPadeDataSource(context: any): Promise<void>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ToastrService } from 'ngx-toastr';
|
|
2
|
+
import { KpiWithSingleLayoutService } from './kpi-single-layout.service';
|
|
3
|
+
import { kpicommonService } from '../../application-controller/kpi-service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MultilayoutApplicationDatssetsCall {
|
|
6
|
+
private service;
|
|
7
|
+
private kpiService;
|
|
8
|
+
private toastr;
|
|
9
|
+
private environment;
|
|
10
|
+
uniqueDataSetObject: {};
|
|
11
|
+
constructor(service: KpiWithSingleLayoutService, kpiService: kpicommonService, toastr: ToastrService, environment: any);
|
|
12
|
+
getDataFromDataSet(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
13
|
+
getDataSetForMongo(dataset: any, datasetId: any): Promise<void>;
|
|
14
|
+
getDatasetForImpala(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
15
|
+
getFormatObjectForColumn(columns: any): any[];
|
|
16
|
+
transformDataForMFilter(filterdata: any, mapData: any): any[];
|
|
17
|
+
getDatasetForSimpleApiImpala(dataset: any, datasetId: string, filters: any): Promise<void>;
|
|
18
|
+
getDatasetForPlainJson(dataset: any, datasetId: any, filter: any): Promise<void>;
|
|
19
|
+
getDatasetForSqlTemplate(dataset: any, datasetId: any, filters: any): Promise<void>;
|
|
20
|
+
transformDataForMFilterForSQl(filterdata: any, mapData: any): any[];
|
|
21
|
+
getUniqueDataSetObject(): {};
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultilayoutApplicationDatssetsCall, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MultilayoutApplicationDatssetsCall>;
|
|
24
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -73,10 +73,18 @@ export * from './lib/template-module/KpiCreationModule/treeview/components/space
|
|
|
73
73
|
export * from './lib/template-module/kpiWithSingleLayout/kpiWithSingleLayout.module';
|
|
74
74
|
export * from './lib/template-module/kpiWithSingleLayout/kpi-with-dataset.component';
|
|
75
75
|
export * from './lib/template-module/kpiWithSingleLayout/dynamin-modal.component';
|
|
76
|
+
export * from './lib/template-module/kpiWithSingleLayout/kpi-single-layout.service';
|
|
77
|
+
export * from './lib/template-module/kpiWithSingleLayout/kpi-single-layout.service';
|
|
76
78
|
export * from './lib/template-module/kpiWithMultiLayout/dynamin-modal-multi.component';
|
|
77
79
|
export * from './lib/template-module/kpiWithMultiLayout/kpi-with-multilayout.component';
|
|
78
80
|
export * from './lib/template-module/kpiWithMultiLayout/kpiWithMultiayout.module';
|
|
81
|
+
export * from './lib/template-module/kpiWithMultiLayout/kpi-multi-layout.service';
|
|
82
|
+
export * from './lib/template-module/kpiWithMultiLayout/single-layout-dataset-call.service';
|
|
79
83
|
export * from './lib/template-module/defaulLandingComponent/landing-component.component';
|
|
80
84
|
export * from './lib/template-module/defaulLandingComponent/defaultLandingComponent.module';
|
|
85
|
+
export * from './lib/template-module/defaulLandingComponent/landing-component.service';
|
|
86
|
+
export * from './lib/template-module/defaulLandingComponent/landing-dataset-call.service';
|
|
81
87
|
export * from './lib/template-module/bookmarked-template/bookmarked-template.component';
|
|
82
88
|
export * from './lib/template-module/bookmarked-template/bookmarkedTemplate.module';
|
|
89
|
+
export * from './lib/template-module/bookmarked-template/bookmarked-layout.service';
|
|
90
|
+
export * from './lib/template-module/bookmarked-template/bookmarked-dataset-call.service';
|