{ "version": 3, "sources": ["src/app/site/home/home-page/home-page.component.ts", "src/app/site/home/home-page/home-page.component.html", "src/app/site/home/home-routing.module.ts", "src/app/site/home/home.module.ts"], "sourcesContent": ["import { Component, Inject, OnInit } from '@angular/core';\r\nimport { Router } from '@angular/router';\r\nimport { ThemeService } from '../../../service/theme.service';\r\n\r\n@Component({\r\n\tselector: 'app-home-page',\r\n\ttemplateUrl: './home-page.component.html',\r\n\tstyleUrls: ['./home-page.component.scss']\r\n})\r\nexport class HomePageComponent implements OnInit {\r\n\r\n\tconstructor(private router: Router,\r\n\t\t\t\tprivate themeService: ThemeService,\r\n\t\t\t\t@Inject('dashboardUrl') private dashboardUrl: string,\r\n\t\t\t\t@Inject('markingUrl') private markingUrl: string) { }\r\n\r\n\tpublic ngOnInit(): void {\r\n\t\tthis.themeService.setLoginTheme();\r\n\t}\r\n\r\n\tpublic goToLogin(): void {\r\n\t\tthis.router.navigateByUrl('login');\r\n\t}\r\n\r\n\r\n\tpublic goToDashboard(): void {\r\n\t\twindow.location.href = this.dashboardUrl;\r\n\t}\r\n\r\n\tpublic goToMocks(): void {\r\n\t\tthis.router.navigateByUrl('/mock/units');\r\n\t}\r\n\r\n\tpublic goToTutorial(): void {\r\n\t\tthis.router.navigateByUrl('/tutorial/choice');\r\n\t}\r\n\r\n\tpublic goToMockResults(): void {\r\n\t\twindow.location.href = `${this.markingUrl}/mock`;\r\n\t}\r\n\r\n\tpublic goToConnection(): void {\r\n\t\tthis.router.navigateByUrl('/connection');\r\n\t}\r\n}\r\n", "
Please select from the following options:
\r\n \r\n \r\n