import { Component, OnInit, HostBinding } from '@angular/core'; import { Router } from '@angular/router'; import { BreakpointObserver, Breakpoints, BreakpointState } from '@angular/cdk/layout'; import { AuthService } from 'app/core/services/auth.service'; import { AutoupdateService } from 'app/core/services/autoupdate.service'; import { OperatorService } from 'app/core/services/operator.service'; import { TranslateService } from '@ngx-translate/core'; //showcase import { BaseComponent } from 'app/base.component'; import { pageTransition, navItemAnim } from 'app/shared/animations'; import { MatDialog } from '@angular/material'; import { LegalnoticeDialogComponent } from '../shared/components/legal-notice/legal-notice.dialog.component'; import { PrivacyPolicyDialogComponent } from '../shared/components/privacy-policy/privacy-policy.dialog.component'; @Component({ selector: 'app-site', animations: [pageTransition, navItemAnim], templateUrl: './site.component.html', styleUrls: ['./site.component.scss'] }) export class SiteComponent extends BaseComponent implements OnInit { /** * Get the username from the operator (should be known already) */ username = this.operator.username; /** * True if Viewport equals mobile or small resolution. Set by breakpointObserver. */ isMobile = false; /** * Constructor * * @param authService * @param autoupdateService * @param operator * @param router * @param breakpointObserver * @param translate * @param dialog */ constructor( private authService: AuthService, private autoupdateService: AutoupdateService, private operator: OperatorService, private router: Router, private breakpointObserver: BreakpointObserver, protected translate: TranslateService, public dialog: MatDialog ) { super(); } /** * Initialize the site component */ ngOnInit() { this.breakpointObserver .observe([Breakpoints.Small, Breakpoints.HandsetPortrait]) .subscribe((state: BreakpointState) => { if (state.matches) { this.isMobile = true; } else { this.isMobile = false; } }); //get a translation via code: use the translation service this.translate.get('Motions').subscribe((res: string) => { console.log('translation of motions in the target language: ' + res); }); //start autoupdate if the user is logged in: this.operator.whoAmI().subscribe(resp => { if (resp.user) { this.autoupdateService.startAutoupdate(); } else { //if whoami is not sucsessfull, forward to login again this.operator.clear(); this.router.navigate(['/login']); } }); } /** * Let the user change the language * @param lang the desired language (en, de, fr, ...) */ selectLang(lang: string): void { console.log('selected langauge: ', lang); console.log('get Langs : ', this.translate.getLangs()); this.translate.use(lang).subscribe(res => { console.log('language changed : ', res); }); } /** * Function to log out the current user */ logOutButton() { this.authService.logout().subscribe(); this.router.navigate(['/login']); } /** * Opens the legal notice as dialog */ openLegalNotice() { const dialogRef = this.dialog.open(LegalnoticeDialogComponent); } /** * Opens the privacy Policy as dialog */ openPrivacyPolicy() { const dialogRef = this.dialog.open(PrivacyPolicyDialogComponent); } }