55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
import {Component, Inject, Optional} from '@angular/core';
|
|
import {Router} from '@angular/router';
|
|
import {LoginService} from './services/login-service/login-service';
|
|
import {AUTH_ENABLED} from './app.tokens';
|
|
import {WarService} from "./services/war-service/war.service";
|
|
import {War} from "./models/model-interfaces";
|
|
import {PromotionService} from "./services/promotion-service/promotion.service";
|
|
import {AwardingService} from "./services/awarding-service/awarding.service";
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: 'app.component.html',
|
|
styleUrls: ['app.component.css']
|
|
})
|
|
export class AppComponent {
|
|
|
|
wars: War[] = [];
|
|
|
|
constructor(@Optional() @Inject(AUTH_ENABLED) public authEnabled,
|
|
private loginService: LoginService,
|
|
private warService: WarService,
|
|
private promotionService: PromotionService,
|
|
private awardingService: AwardingService,
|
|
private router: Router) {
|
|
}
|
|
|
|
|
|
ngOnInit() {
|
|
this.warService.getAllWars().subscribe((wars) => {
|
|
this.wars = wars;
|
|
});
|
|
if (this.loginService.hasPermission(2)) {
|
|
const fraction = this.loginService.getCurrentUser().squad.fraction;
|
|
this.promotionService.getUnconfirmedPromotions(fraction).subscribe((items) => {
|
|
if (items.length > 0) {
|
|
this.promotionService.hasUnprocessedPromotion = true;
|
|
}
|
|
});
|
|
this.awardingService.getUnconfirmedAwards(fraction).subscribe((items) => {
|
|
if (items.length > 0) {
|
|
this.awardingService.hasUnprocessedAwards = true;
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
logout() {
|
|
this.loginService.logout();
|
|
this.router.navigate(['cc-overview']);
|
|
return false;
|
|
}
|
|
|
|
}
|
|
|