import {ChangeDetectorRef, Component, Input, OnChanges, OnInit, SimpleChanges, ViewChild} from "@angular/core"; import {SideBarService} from "../library/sharedComponents/sidebar/sideBar.service"; import {Indicator, IndicatorPath, Stakeholder} from "../utils/entities/stakeholder"; import {IndicatorUtils} from "../utils/indicator-utils"; import {FormArray, FormBuilder, FormGroup, Validators} from "@angular/forms"; import {AlertModal} from "../openaireLibrary/utils/modal/alert"; import {StatisticsService} from "../utils/services/statistics.service"; import {HelperFunctions} from "../openaireLibrary/utils/HelperFunctions.class"; import {DomSanitizer} from "@angular/platform-browser"; @Component({ selector: 'indicators', templateUrl: './indicators.component.html' }) export class IndicatorsComponent implements OnInit, OnChanges { @Input() public topicIndex: number = 0; @Input() public categoryIndex: number = 0; @Input() public subcategoryIndex: number = 0; @Input() public stakeholder: Stakeholder = null; public indicatorUtils: IndicatorUtils = new IndicatorUtils(); public indicatorFb: FormGroup; public editIndicatorFb: FormGroup; /** * Editable indicator */ public indicator: Indicator; /** * All charts and numbers */ public charts: Indicator[] = []; public numbers: Indicator[] = []; /** * Displayed chart and numbers base on Top filters */ public displayCharts: Indicator[] = []; public displayNumbers: Indicator[] = []; /** * Top filters */ public chartType: string = 'all'; public privacy: string = 'all'; public status: string = 'all'; public keyword: string = null; /** * Grid or List View */ public grid: boolean = true; @ViewChild('createIndicatorModal') createIndicatorModal: AlertModal; @ViewChild('editIndicatorModal') editIndicatorModal: AlertModal; constructor(private sideBarService: SideBarService, private statisticsService: StatisticsService, private fb: FormBuilder, private sanitizer: DomSanitizer) { } ngOnInit(): void { } ngOnChanges(changes: SimpleChanges): void { if (this.canEdit) { this.charts = this.stakeholder.topics[this.topicIndex].categories[this.categoryIndex].subCategories[this.subcategoryIndex].charts; this.displayCharts = this.filterChartType(this.filterPrivacy( this.filterStatus(this.filterByKeyword(this.charts, this.keyword), this.status), this.privacy), this.chartType ); this.numbers = this.stakeholder.topics[this.topicIndex].categories[this.categoryIndex].subCategories[this.subcategoryIndex].numbers; this.displayNumbers = this.filterPrivacy(this.filterStatus( this.filterByKeyword(this.numbers, this.keyword), this.status), this.privacy); } } public toggleOpen(event = null) { if (!event) { this.sideBarService.setOpen(!this.open); } else if (event && event['value'] === true) { this.sideBarService.setOpen(false); } } public changeGrid(value) { this.grid = value; } onChartTypeChange(value) { this.displayCharts = this.filterChartType(this.charts, value); } onPrivacyChange(value) { this.displayCharts = this.filterPrivacy(this.charts, value); this.displayNumbers = this.filterPrivacy(this.numbers, value); } onStatusChange(value) { this.displayCharts = this.filterStatus(this.charts, value); this.displayNumbers = this.filterStatus(this.numbers, value); } onKeywordChange(value) { this.displayCharts = this.filterByKeyword(this.charts, value); this.displayNumbers = this.filterByKeyword(this.numbers, value); } private filterChartType(indicators: Indicator[], value): Indicator[] { if (value === 'all') { return indicators; } else { return indicators.filter(indicator => indicator.indicatorPaths.filter(indicatorPath => indicatorPath.type === value).length > 0); } } private filterPrivacy(indicators: Indicator[], value): Indicator[] { if (value === 'all') { return indicators; } else { return indicators.filter(indicator => indicator.isPublic === (value === 'public')); } } private filterStatus(indicators: Indicator[], value): Indicator[] { if (value === 'all') { return indicators; } else { return indicators.filter(indicator => indicator.isActive === (value === 'active')); } } private filterByKeyword(indicators: Indicator[], value): Indicator[] { if (value === null || value === '') { return indicators; } else { return indicators.filter(indicator => indicator.name.includes(value) || indicator.description.includes(value)); } } get open(): boolean { return this.sideBarService.open; } get canEdit() { return this.stakeholder && this.stakeholder.topics[this.topicIndex] && this.stakeholder.topics[this.topicIndex].categories[this.categoryIndex] && this.stakeholder.topics[this.topicIndex].categories[this.categoryIndex].subCategories[this.subcategoryIndex]; } public get urls(): FormArray { return this.indicatorFb.get('urls') as FormArray; } private getUrlByStakeHolder(indicatorPath: IndicatorPath) { return this.sanitizer.bypassSecurityTrustResourceUrl( this.statisticsService.getChartUrl(indicatorPath.source, this.indicatorUtils.getFullUrl(indicatorPath))); } public addUrl() { this.urls.push(this.fb.control('', [Validators.required, Validators.pattern('https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|www\.' + '[a-zA-Z0-9][a-zA-Z0-9-]+[a-zA-Z0-9]\.[^\s]{2,}|https?:\/\/(?:www\.|(?!www))[a-zA-Z0-9]+\.[^\s]{2,}|www\.' + '[a-zA-Z0-9]+\.[^\s]{2,}')]) ); } public createIndicatorOpen() { this.indicatorFb = this.fb.group({ name: this.fb.control('', Validators.required), description: this.fb.control(''), width: this.fb.control('small', Validators.required), urls: this.fb.array([]), }); this.addUrl(); this.createIndicatorModal.alertTitle = 'Create a new chart Indicator'; this.createIndicatorModal.cancelButtonText = 'Cancel'; this.createIndicatorModal.okButtonText = 'Create'; this.createIndicatorModal.okButtonLeft = false; this.createIndicatorModal.alertMessage = false; this.createIndicatorModal.open(); } public createIndicator() { this.indicator = new Indicator( this.indicatorFb.value.name, this.indicatorFb.value.description, 'chart', this.indicatorFb.value.width, false, false, [] ); this.indicatorFb.value.urls.forEach(url => { this.indicator.indicatorPaths.push( this.indicatorUtils.generateIndicatorByChartUrl(this.statisticsService.getChartSource(url), url)); }); let index = this.charts.push(this.indicator); this.editIndicatorOpen(index - 1); } public editIndicatorOpen(index: number) { this.indicator = HelperFunctions.copy(this.charts[index]); this.indicator.indicatorPaths.forEach(indicatorPath => { indicatorPath.safeResourceUrl = this.getUrlByStakeHolder(indicatorPath) console.log(indicatorPath.safeResourceUrl); }); let indicatorPaths = this.fb.array([]); this.indicator.indicatorPaths.forEach(indicatorPath => { let parameters = this.fb.array([]); indicatorPath.parameters.forEach((value, key) => { if (this.indicatorUtils.ignoredParameters.indexOf(key) === -1) { // TODO add Validators Map parameters.push(this.fb.group({ key: this.fb.control(key), value: this.fb.control(value, Validators.required) })); } }); indicatorPaths.push(this.fb.group({ parameters: parameters })); }); this.editIndicatorFb = this.fb.group({ name: this.fb.control(this.indicator.name, Validators.required), description: this.fb.control(this.indicator.description), isPublic: this.fb.control(this.indicator.isPublic), isActive: this.fb.control(this.indicator.isActive), indicatorPaths: indicatorPaths, width: this.fb.control(this.indicator.width, Validators.required), }); console.log(this.editIndicatorFb.value); this.editIndicatorModal.alertHeader = false; this.editIndicatorModal.cancelButtonText = 'Cancel'; this.editIndicatorModal.okButtonText = 'Save Changes'; this.editIndicatorModal.okButtonLeft = false; this.editIndicatorModal.alertMessage = false; this.editIndicatorModal.open(); } saveIndicator() { } focus(event: FocusEvent) { event.srcElement.parentElement.className = event.srcElement.parentElement.className + ' md-input-focus'; } }