Compare commits

..

2 Commits

12 changed files with 1238 additions and 1520 deletions

2638
api/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -34,6 +34,7 @@
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"mocha": "^3.3.0"
"mocha": "^3.3.0",
"nodemon": "^1.11.0"
}
}

View File

@ -1,13 +1,13 @@
{
"name": "opt-cc",
"version": "1.1.1",
"version": "1.1.2",
"license": "MIT",
"private": true,
"scripts": {
"start": "npm run deploy-static-prod && npm start --prefix ./api",
"dev": "npm run deploy-static && npm run dev --prefix ./api",
"deploy-static": "cd ./static && ng build && ln -s ../api/resource/ ../public/resource",
"deploy-static-prod": "cd ./static && ng build --env=prod && ln -s ../api/resource/ ../public/resource",
"deploy-static": "cd ./static && $(npm bin)/ng build && ln -s ../api/resource/ ../public/resource",
"deploy-static-prod": "cd ./static && $(npm bin)/ng build --env=prod && ln -s ../api/resource/ ../public/resource",
"postinstall": "npm install --prefix ./static && npm install --prefix ./api",
"mongodb": "mkdir -p mongodb-data && mongod --dbpath ./mongodb-data",
"test": "npm test --prefix ./api",

View File

@ -28,3 +28,30 @@ li {
max-height: 200px;
overflow-x: hidden;
}
.unprocessed {
-webkit-animation-name: color-blink; /* Safari 4.0 - 8.0 */
-webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
animation-name: color-blink;
animation-duration: 4s;
animation-iteration-count: infinite;
}
.unprocessed-child {
background-color: orange;
}
unprocessed-child:hover {
background-color: orange;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes color-blink {
from {background-color: #222222;}
to {background-color: orange;}
}
@keyframes color-blink {
from {background-color: #222222;}
to {background-color: orange;}
}

View File

@ -67,17 +67,17 @@
</ul>
</li>
<li *ngIf="loginService.hasPermission(2) && loginService.hasSquad()" class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
<a href="#" [ngClass]="{'unprocessed': promotionService.hasUnprocessedPromotion || awardingService.hasUnprocessedAwards}" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true"
aria-expanded="false">
Anträge
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li>
<a [routerLink]="['/confirm-promotion']">Beförderung</a>
<a [ngClass]="{'unprocessed-child': promotionService.hasUnprocessedPromotion}" [routerLink]="['/confirm-promotion']">Beförderung</a>
</li>
<li>
<a [routerLink]="['/confirm-award']">Orden/ Auszeichnung</a>
<a [ngClass]="{'unprocessed-child': awardingService.hasUnprocessedAwards}" [routerLink]="['/confirm-award']">Orden/ Auszeichnung</a>
</li>
</ul>
</li>

View File

@ -1,14 +1,11 @@
import {Component, Inject, Optional} from '@angular/core';
import {
Router,
NavigationEnd,
ActivatedRoute,
} from '@angular/router';
import {Router} from '@angular/router';
import {LoginService} from './services/login-service/login-service';
import {Title} from '@angular/platform-browser';
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',
@ -17,41 +14,34 @@ import {War} from "./models/model-interfaces";
})
export class AppComponent {
defaultTitle: string;
wars: War[] = [];
constructor(@Optional() @Inject(AUTH_ENABLED) public authEnabled,
private loginService: LoginService,
private warService: WarService,
private activatedRoute: ActivatedRoute,
private router: Router,
private titleService: Title) {
private promotionService: PromotionService,
private awardingService: AwardingService,
private router: Router) {
}
ngOnInit() {
this.defaultTitle = this.titleService.getTitle();
this.router.events
.filter(event => event instanceof NavigationEnd)
.subscribe(event => {
this.setBrowserTitle();
});
this.warService.getAllWars().subscribe((wars) => {
this.wars = wars;
})
}
setBrowserTitle() {
let title = this.defaultTitle;
let route = this.activatedRoute;
// firstChild gibt die Haupt-Kindroute der übergebenen Route zurück
while (route.firstChild) {
route = route.firstChild;
title = route.snapshot.data['title'] || title;
});
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;
}
})
}
this.titleService.setTitle(title);
}
logout() {

View File

@ -26,7 +26,7 @@
(change)="toggleDecoPreview(decoDescription, decoPreview)"
required>
<option *ngFor="let deco of decorations" [ngValue]="deco">
{{deco.fraction == 'BLUFOR'? 'NATO' : deco.fraction == 'OPFOR'? 'CSAT' : 'Global'}}: {{deco.name}}
{{deco.name}}
</option>
</select>
</div>

View File

@ -1,5 +1,4 @@
import {Component} from "@angular/core";
import {ActivatedRoute, Router} from "@angular/router";
import {Award} from "../../models/model-interfaces";
import {AwardingService} from "../../services/awarding-service/awarding.service";
@ -14,9 +13,7 @@ export class ConfirmAwardComponent {
showSuccessLabel = false;
constructor(private router: Router,
private route: ActivatedRoute,
private awardingService: AwardingService) {
constructor(private awardingService: AwardingService) {
}
ngOnInit() {
@ -37,6 +34,9 @@ export class ConfirmAwardComponent {
let currentUser = JSON.parse(localStorage.getItem('currentUser'));
this.awardingService.getUnconfirmedAwards(currentUser.squad.fraction).subscribe(awards => {
this.awards = awards;
if (awards.length < 1) {
this.awardingService.hasUnprocessedAwards = false;
}
this.showSuccessLabel = true;
setTimeout(() => {
this.showSuccessLabel = false;

View File

@ -17,9 +17,7 @@ export class ConfirmPromotionComponent {
promotions: Promotion[];
constructor(private router: Router,
private route: ActivatedRoute,
private rankService: RankService,
constructor(private rankService: RankService,
private promotionService: PromotionService) {
}
@ -45,6 +43,9 @@ export class ConfirmPromotionComponent {
let currentUser = JSON.parse(localStorage.getItem('currentUser'));
this.promotionService.getUnconfirmedPromotions(currentUser.squad.fraction).subscribe(promotions => {
this.promotions = promotions;
if (promotions.length < 1) {
this.promotionService.hasUnprocessedPromotion = false;
}
this.showSuccessLabel = true;
setTimeout(() => {
this.showSuccessLabel = false;

View File

@ -1,13 +1,13 @@
import {Injectable} from "@angular/core";
import {Award, User} from "../../models/model-interfaces";
import {Headers, Http} from "@angular/http";
import {Observable} from "rxjs/Observable";
import {Award} from "../../models/model-interfaces";
import {AppConfig} from "../../app.config";
import {HttpClient} from "../http-client";
@Injectable()
export class AwardingService {
hasUnprocessedAwards = false;
constructor(private http: HttpClient,
private config: AppConfig) {
}

View File

@ -4,6 +4,7 @@ import "rxjs/add/operator/map";
import {AppConfig} from "../../app.config";
import {AUTH_ENABLED} from "../../app.tokens";
import {AppUser} from "../../models/model-interfaces";
@Injectable()
export class LoginService {
@ -45,6 +46,10 @@ export class LoginService {
return this.isLoggedIn() && currentUser.permission >= level;
}
getCurrentUser() :AppUser {
return JSON.parse(localStorage.getItem('currentUser'));
}
hasSquad() {
let currentUser = JSON.parse(localStorage.getItem('currentUser'));
return currentUser.squad != null;

View File

@ -6,6 +6,8 @@ import {Promotion} from "../../models/model-interfaces";
@Injectable()
export class PromotionService {
hasUnprocessedPromotion = false;
constructor(private http: HttpClient,
private config: AppConfig) {
}