1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/frame/frame.component.ts
2018-10-23 00:33:17 +02:00

47 lines
1.4 KiB
TypeScript

import {Component, ElementRef, ViewChild, ViewEncapsulation} from '@angular/core';
import {RouterLink} from '@angular/router';
import {AuthenticationService} from '../model/network/authentication.service';
import {UserDTO, UserRoles} from '../../../common/entities/UserDTO';
import {Config} from '../../../common/config/public/Config';
import {BehaviorSubject} from 'rxjs';
import {NotificationService} from '../model/notification.service';
import {ShareService} from '../gallery/share.service';
import {QueryService} from '../model/query.service';
@Component({
selector: 'app-frame',
templateUrl: './frame.component.html',
styleUrls: ['./frame.component.css'],
providers: [RouterLink],
encapsulation: ViewEncapsulation.Emulated
})
export class FrameComponent {
user: BehaviorSubject<UserDTO>;
authenticationRequired = false;
public title: string;
collapsed = true;
constructor(private _authService: AuthenticationService,
public notificationService: NotificationService,
public queryService: QueryService) {
this.user = this._authService.user;
this.authenticationRequired = Config.Client.authenticationRequired;
this.title = Config.Client.applicationTitle;
}
toggleState() { // click handler
this.collapsed = !this.collapsed;
}
isAdmin() {
return this.user.value && this.user.value.role >= UserRoles.Admin;
}
logout() {
this._authService.logout();
}
}