2018-08-24 13:05:03 +02:00
|
|
|
import { Component, OnInit, ViewChild } from '@angular/core';
|
2018-06-19 16:55:50 +02:00
|
|
|
|
|
|
|
import { AuthService } from 'app/core/services/auth.service';
|
2018-07-06 09:38:25 +02:00
|
|
|
import { OperatorService } from 'app/core/services/operator.service';
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-08-29 13:21:25 +02:00
|
|
|
import { TranslateService } from '@ngx-translate/core';
|
2018-07-04 17:51:31 +02:00
|
|
|
import { BaseComponent } from 'app/base.component';
|
2018-07-31 15:46:55 +02:00
|
|
|
import { pageTransition, navItemAnim } from 'app/shared/animations';
|
2018-08-23 16:49:51 +02:00
|
|
|
import { MatDialog, MatSidenav } from '@angular/material';
|
|
|
|
import { ViewportService } from '../core/services/viewport.service';
|
2018-07-03 11:52:16 +02:00
|
|
|
|
2018-06-13 18:34:10 +02:00
|
|
|
@Component({
|
2018-09-03 17:57:20 +02:00
|
|
|
selector: 'os-site',
|
2018-07-31 15:46:55 +02:00
|
|
|
animations: [pageTransition, navItemAnim],
|
2018-06-16 18:05:46 +02:00
|
|
|
templateUrl: './site.component.html',
|
2018-07-26 16:40:34 +02:00
|
|
|
styleUrls: ['./site.component.scss']
|
2018-06-13 18:34:10 +02:00
|
|
|
})
|
2018-07-04 17:51:31 +02:00
|
|
|
export class SiteComponent extends BaseComponent implements OnInit {
|
2018-08-02 16:39:08 +02:00
|
|
|
/**
|
2018-08-23 16:49:51 +02:00
|
|
|
* HTML element of the side panel
|
2018-08-02 16:39:08 +02:00
|
|
|
*/
|
2018-08-29 13:21:25 +02:00
|
|
|
@ViewChild('sideNav') public sideNav: MatSidenav;
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-08-02 16:39:08 +02:00
|
|
|
/**
|
2018-08-23 16:49:51 +02:00
|
|
|
* Get the username from the operator (should be known already)
|
2018-08-02 16:39:08 +02:00
|
|
|
*/
|
2018-08-28 11:07:10 +02:00
|
|
|
public username: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* is the user logged in, or the anonymous is active.
|
|
|
|
*/
|
|
|
|
public isLoggedIn: boolean;
|
2018-08-07 12:30:21 +02:00
|
|
|
|
2018-08-02 16:39:08 +02:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param authService
|
|
|
|
* @param operator
|
2018-08-28 11:07:10 +02:00
|
|
|
* @param vp
|
2018-08-02 16:39:08 +02:00
|
|
|
* @param translate
|
|
|
|
* @param dialog
|
|
|
|
*/
|
2018-08-29 13:21:25 +02:00
|
|
|
public constructor(
|
2018-06-25 17:03:52 +02:00
|
|
|
private authService: AuthService,
|
2018-08-29 13:21:25 +02:00
|
|
|
operator: OperatorService,
|
2018-08-23 16:49:51 +02:00
|
|
|
public vp: ViewportService,
|
2018-08-07 12:30:21 +02:00
|
|
|
public translate: TranslateService,
|
2018-08-28 11:07:10 +02:00
|
|
|
public dialog: MatDialog
|
2018-07-04 17:51:31 +02:00
|
|
|
) {
|
|
|
|
super();
|
2018-08-28 11:07:10 +02:00
|
|
|
|
|
|
|
operator.getObservable().subscribe(user => {
|
|
|
|
if (user) {
|
|
|
|
this.username = user.full_name;
|
|
|
|
} else {
|
|
|
|
this.username = translate.instant('Guest');
|
|
|
|
}
|
|
|
|
this.isLoggedIn = !!user;
|
|
|
|
});
|
2018-07-04 17:51:31 +02:00
|
|
|
}
|
2018-06-25 17:03:52 +02:00
|
|
|
|
2018-08-02 16:39:08 +02:00
|
|
|
/**
|
|
|
|
* Initialize the site component
|
|
|
|
*/
|
2018-08-29 13:21:25 +02:00
|
|
|
public ngOnInit() {
|
2018-08-23 16:49:51 +02:00
|
|
|
this.vp.checkForChange();
|
2018-06-28 17:11:04 +02:00
|
|
|
|
2018-08-22 16:03:49 +02:00
|
|
|
// get a translation via code: use the translation service
|
2018-08-16 17:03:39 +02:00
|
|
|
// this.translate.get('Motions').subscribe((res: string) => {
|
2018-08-22 16:03:49 +02:00
|
|
|
// console.log('translation of motions in the target language: ' + res);
|
|
|
|
// });
|
2018-08-24 13:05:03 +02:00
|
|
|
}
|
|
|
|
|
2018-08-23 16:49:51 +02:00
|
|
|
/**
|
|
|
|
* Closes the sidenav in mobile view
|
|
|
|
*/
|
2018-08-29 13:21:25 +02:00
|
|
|
public toggleSideNav() {
|
2018-08-23 16:49:51 +02:00
|
|
|
if (this.vp.isMobile) {
|
|
|
|
this.sideNav.toggle();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-02 16:39:08 +02:00
|
|
|
/**
|
|
|
|
* Let the user change the language
|
|
|
|
* @param lang the desired language (en, de, fr, ...)
|
|
|
|
*/
|
2018-08-29 13:21:25 +02:00
|
|
|
public selectLang(selection: string): void {
|
2018-08-07 12:30:21 +02:00
|
|
|
this.translate.use(selection).subscribe();
|
|
|
|
}
|
2018-06-29 17:24:44 +02:00
|
|
|
|
2018-08-07 12:30:21 +02:00
|
|
|
/**
|
|
|
|
* Get the name of a Language by abbreviation.
|
|
|
|
*/
|
2018-08-29 13:21:25 +02:00
|
|
|
public getLangName(abbreviation: string): string {
|
2018-08-07 12:30:21 +02:00
|
|
|
if (abbreviation === 'en') {
|
|
|
|
return this.translate.instant('English');
|
|
|
|
} else if (abbreviation === 'de') {
|
|
|
|
return this.translate.instant('German');
|
|
|
|
} else if (abbreviation === 'fr') {
|
|
|
|
return this.translate.instant('French');
|
|
|
|
}
|
2018-06-25 17:03:52 +02:00
|
|
|
}
|
2018-06-13 18:34:10 +02:00
|
|
|
|
2018-08-28 11:07:10 +02:00
|
|
|
// TODO: Implement this
|
2018-08-29 13:21:25 +02:00
|
|
|
public editProfile() {}
|
2018-08-28 11:07:10 +02:00
|
|
|
|
|
|
|
// TODO: Implement this
|
2018-08-29 13:21:25 +02:00
|
|
|
public changePassword() {}
|
2018-08-28 11:07:10 +02:00
|
|
|
|
2018-08-02 16:39:08 +02:00
|
|
|
/**
|
|
|
|
* Function to log out the current user
|
|
|
|
*/
|
2018-08-29 13:21:25 +02:00
|
|
|
public logout() {
|
2018-08-28 11:07:10 +02:00
|
|
|
this.authService.logout();
|
2018-06-19 16:55:50 +02:00
|
|
|
}
|
2018-06-13 18:34:10 +02:00
|
|
|
}
|