import { Component, isDevMode} from '@angular/core'; import {LoginService} from './services/login.service'; import {Router} from '@angular/router'; // TODO: add multiple samples at once // TODO: validation: DPT: filename // TODO: filter by not completely filled/no measurements // TODO: validation of samples // TODO: get rid of chart.js (+moment.js) @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'] }) export class AppComponent { constructor( public loginService: LoginService, private router: Router ) { } get devMode() { return isDevMode(); } logout() { this.loginService.logout(); this.router.navigate(['/']); } }