gamma-app-controller 1.2.25 → 1.2.26
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/shared/gamma-bread-crumbs/bread-crumbs.component.mjs +8 -3
- package/fesm2015/gamma-app-controller.mjs +7 -2
- package/fesm2015/gamma-app-controller.mjs.map +1 -1
- package/fesm2020/gamma-app-controller.mjs +7 -2
- package/fesm2020/gamma-app-controller.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -8033,6 +8033,7 @@ class BreadCrumbsComponent {
|
|
|
8033
8033
|
return;
|
|
8034
8034
|
}
|
|
8035
8035
|
else {
|
|
8036
|
+
debugger;
|
|
8036
8037
|
let relativePath = 'rakpiBrowser';
|
|
8037
8038
|
this.getKpiName(value, relativePath);
|
|
8038
8039
|
setTimeout(() => {
|
|
@@ -8058,12 +8059,14 @@ class BreadCrumbsComponent {
|
|
|
8058
8059
|
'desc': result['desc'],
|
|
8059
8060
|
'relativePath': result['relativePath'],
|
|
8060
8061
|
'kpiId': result['id'],
|
|
8062
|
+
'pageId': result['pageId'],
|
|
8061
8063
|
'isBookmarked': result['isBookmarked'],
|
|
8062
8064
|
};
|
|
8063
8065
|
}
|
|
8064
8066
|
item['externalLink'] = relativePath + '/' + result['name'];
|
|
8065
8067
|
item['tid'] = result['tid'];
|
|
8066
8068
|
item['id'] = result['id'];
|
|
8069
|
+
item['pageId'] = result['pageId'];
|
|
8067
8070
|
item['name'] = result['name'];
|
|
8068
8071
|
this.kpiListData.push(item);
|
|
8069
8072
|
});
|
|
@@ -8074,11 +8077,13 @@ class BreadCrumbsComponent {
|
|
|
8074
8077
|
const item = {};
|
|
8075
8078
|
item["relativePath"] = result.relativePath;
|
|
8076
8079
|
item["name"] = result["name"];
|
|
8080
|
+
item["pageId"] = result["pageId"];
|
|
8077
8081
|
item["tid"] = result["tid"].trim();
|
|
8078
8082
|
if (result["nodes"] !== undefined) {
|
|
8079
8083
|
item["nodes"] = this.getBreadCrumbsData(result["nodes"]);
|
|
8080
8084
|
}
|
|
8081
|
-
|
|
8085
|
+
debugger;
|
|
8086
|
+
this.kpi_names[result["pageId"]] = item["tid"];
|
|
8082
8087
|
structures[result["tid"]] = item;
|
|
8083
8088
|
this.kpi_structures[result["tid"]] = item;
|
|
8084
8089
|
});
|
|
@@ -8093,7 +8098,7 @@ class BreadCrumbsComponent {
|
|
|
8093
8098
|
else {
|
|
8094
8099
|
kpiContainer = this.getBreadCrumbsData(this.commonService.allKpibrowserDetailContainer);
|
|
8095
8100
|
}
|
|
8096
|
-
const kpiId = this.activatedRoute.snapshot.queryParams['
|
|
8101
|
+
const kpiId = this.activatedRoute.snapshot.queryParams['pageId'];
|
|
8097
8102
|
const kpiTid = this.kpi_names[kpiId];
|
|
8098
8103
|
const props = this.kpi_structures[kpiTid];
|
|
8099
8104
|
const propsList = props["relativePath"] + "/" + props["name"];
|