1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-12-14 11:23:17 +02:00
pigallery2/frontend/app/admin/admin.component.ts

45 lines
1.2 KiB
TypeScript
Raw Normal View History

2016-05-04 17:20:21 +02:00
import {Component, OnInit} from "@angular/core";
2016-12-27 00:36:38 +02:00
import {AuthenticationService} from "../model/network/authentication.service";
2016-12-27 17:09:47 +02:00
import {UserRoles} from "../../../common/entities/UserDTO";
2017-07-09 14:23:50 +02:00
import {NotificationService} from "../model/notification.service";
import {NotificationType} from "../../../common/entities/NotificationDTO";
2017-07-15 12:47:11 +02:00
import {NavigationService} from "../model/navigation.service";
@Component({
selector: 'admin',
templateUrl: './admin.component.html',
styleUrls: ['./admin.component.css']
})
export class AdminComponent implements OnInit {
2017-07-15 17:29:40 +02:00
simplifiedMode = true;
2017-07-09 14:23:50 +02:00
constructor(private _authService: AuthenticationService,
2017-07-15 12:47:11 +02:00
private _navigation: NavigationService,
2017-07-09 14:23:50 +02:00
public notificationService: NotificationService) {
}
ngOnInit() {
2017-07-08 12:43:42 +02:00
if (!this._authService.isAuthenticated()
|| this._authService.user.value.role < UserRoles.Admin) {
2017-07-15 12:47:11 +02:00
this._navigation.toLogin();
return;
}
}
2017-07-14 09:28:52 +02:00
public getCss(type: NotificationType) {
switch (type) {
case NotificationType.error:
return "danger";
case NotificationType.warning:
return "warning";
case NotificationType.info:
return "info";
}
return "info";
}
}