{ "version": 3, "sources": ["src/app/features/employer/worksource-center/worksource-center.component.ts", "src/app/features/employer/worksource-center/worksource-center.component.html"], "sourcesContent": ["import { Component } from '@angular/core';\r\nimport { AppMonitorService } from 'src/app/services/app-monitor.service';\r\nimport { ProfileService } from 'src/app/services/profile.service';\r\nimport { UserInfoService } from 'src/app/services/userclaims/userinfo.service';\r\n\r\n@Component({\r\n selector: 'app-worksource-center',\r\n templateUrl: './worksource-center.component.html',\r\n styleUrl: './worksource-center.component.css',\r\n})\r\nexport class WorksourceCenterComponent {\r\n constructor(\r\n private appMonitorService: AppMonitorService,\r\n private profileSerice: ProfileService\r\n ) {}\r\n\r\n openPage(page: string, url: string): void {\r\n var userClaims = this.profileSerice.getUserClaims();\r\n this.appMonitorService.trackEvent('page', [\r\n { url: url },\r\n { user: `${userClaims.firstName} ${userClaims.lastName}` },\r\n { email: userClaims.email },\r\n ]);\r\n\r\n this.appMonitorService.trackPageView(page, url);\r\n window.open(url, '_blank');\r\n }\r\n}\r\n", "
\r\n\r\n