{ "version": 3, "sources": ["src/app/shared/components/data-description/data-description.component.ts", "src/app/shared/components/data-description/data-description.component.html", "src/app/shared/services/sidebar.service.ts"], "sourcesContent": ["import {Component, Input, OnInit} from '@angular/core';\nimport {ActivatedRoute, RouterLink} from '@angular/router';\nimport {TranslateModule} from '@ngx-translate/core';\nimport {NgForOf, NgIf} from '@angular/common';\n\ninterface DataDescription {\n title: string;\n icon: string;\n desc: string;\n}\n\nconst HEALTH_DATA_DESC: DataDescription = {\n title: 'healthData',\n icon: 'pi-health-data',\n desc: 'weProcessYourHealthData',\n};\nconst PERSONAL_DATA_DESC: DataDescription = {\n title: 'releasedData',\n icon: 'pi-provided-data',\n desc: 'weProcessYourPersonalData',\n};\nconst GENERAL_PERSONAL_DATA: DataDescription = {\n title: 'generalPersonalData',\n icon: 'pi-general-data',\n desc: 'weProcessYourGeneralPersonalData',\n};\nconst PRODUCT_DEVELOPMENT_DATA: DataDescription = {\n title: 'productDevelopment',\n icon: 'pi-product-development',\n desc: 'weUseYourPersonalDataToDevelop',\n};\nconst STATISTICAL_ANALYSIS_DATA: DataDescription = {\n title: 'statisticalAnalysis',\n icon: 'far fa-question-circle',\n desc: 'weUseYourAnonymizedData',\n};\nconst DESTINATION_MARKETING_DATA: DataDescription = {\n title: 'destinationMarketing',\n icon: 'pi-marketing',\n desc: 'weUseDataForMarketing',\n};\n\n@Component({\n selector: 'app-data-description',\n templateUrl: './data-description.component.html',\n styleUrls: ['./data-description.component.scss'],\n standalone: true,\n imports: [TranslateModule, NgIf, RouterLink, NgForOf],\n})\nexport class DataDescriptionComponent implements OnInit {\n @Input() public text: string = '';\n\n private readonly descriptionTexts: {[key: string]: DataDescription[]} = {\n basicData: [GENERAL_PERSONAL_DATA, PERSONAL_DATA_DESC],\n fellowTravelers: [GENERAL_PERSONAL_DATA, PERSONAL_DATA_DESC],\n personalInformation: [HEALTH_DATA_DESC, PERSONAL_DATA_DESC],\n productDevelopment: [PRODUCT_DEVELOPMENT_DATA],\n statisticalAnalysis: [STATISTICAL_ANALYSIS_DATA],\n destinationMarketing: [DESTINATION_MARKETING_DATA],\n };\n public currentText: string = '';\n public isMobileDevice: boolean = false;\n public descriptionList: DataDescription[] = [];\n\n constructor(private route: ActivatedRoute) {}\n\n public ngOnInit(): void {\n if (!this.text) {\n this.currentText = this.route.snapshot.params.text;\n this.isMobileDevice = true;\n } else {\n this.currentText = this.text;\n }\n this.descriptionList = this.descriptionTexts[this.currentText];\n }\n}\n", "