[develop]: Monitor base component delete chartsActiveType
This commit is contained in:
parent
0fb20de588
commit
e91830f2f8
|
@ -53,7 +53,6 @@ export abstract class MonitorIndicatorStakeholderBaseComponent extends Indicator
|
|||
minYear = Dates.currentYear - 20;
|
||||
maxYear = Dates.currentYear;
|
||||
public numberResults: Map<string, number> = new Map<string, number>();
|
||||
public chartsActiveType: Map<string, IndicatorPath> = new Map<string, IndicatorPath>();
|
||||
public clipboard;
|
||||
|
||||
/** Services */
|
||||
|
@ -259,7 +258,6 @@ export abstract class MonitorIndicatorStakeholderBaseComponent extends Indicator
|
|||
section.indicators.forEach((indicator, j) => {
|
||||
indicator.indicatorPaths.forEach((indicatorPath, k) => {
|
||||
indicator.indicatorPaths[k].safeResourceUrl = this.getUrlByStakeHolder(indicator.indicatorPaths[k]);
|
||||
this.chartsActiveType.set(i + '-' + j + '-' + k, indicator.indicatorPaths[k]);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
@ -273,10 +271,12 @@ export abstract class MonitorIndicatorStakeholderBaseComponent extends Indicator
|
|||
this.indicatorUtils.getChartUrl(indicatorPath.source, this.getFullUrl(indicatorPath)));
|
||||
}
|
||||
|
||||
public setActiveChart(i: number, j: number, type: string) {
|
||||
let activeChart = this.activeSubCategory.charts[i].indicators[j].indicatorPaths.filter(indicatorPath => indicatorPath.type === type)[0];
|
||||
activeChart.safeResourceUrl = this.getUrlByStakeHolder(activeChart);
|
||||
this.chartsActiveType.set(i + '-' + j, activeChart);
|
||||
public getActiveIndicatorPath(indicator: Indicator) {
|
||||
if(indicator.activePath) {
|
||||
return indicator.indicatorPaths[indicator.activePath];
|
||||
} else {
|
||||
return indicator.indicatorPaths[0];
|
||||
}
|
||||
}
|
||||
|
||||
public filter() {
|
||||
|
|
Loading…
Reference in New Issue