Compare commits

..

3 Commits

Author SHA1 Message Date
Florian Hartwich 78aa2cdfe8 Combine user add- and edit-form 2017-05-14 16:35:44 +02:00
Florian Hartwich b196cce61f Add simple alert-confirm for delete user 2017-05-14 15:41:50 +02:00
Florian Hartwich d5ad544a1a Finish user awarding 2017-05-14 15:13:13 +02:00
14 changed files with 107 additions and 220 deletions

View File

@ -91,8 +91,11 @@ users.route('/')
return next(err); return next(err);
} }
res.status(codes.created); res.status(codes.created);
res.locals.items = user; getExtendedUser(user, next, (extUser) => {
next(); res.locals.items = extUser;
res.locals.processed = true;
return next();
})
}); });
}) })

View File

@ -10,17 +10,15 @@ import {ArmyService} from "../services/army-service/army.service";
}) })
export class ArmyComponent { export class ArmyComponent {
army: Army = {NATO: {squads: [], memberCount: 0}, CSAT: {squads: [], memberCount:0}}; army: Army = {NATO: {squads: [], memberCount: 0}, CSAT: {squads: [], memberCount: 0}};
constructor(private armyService: ArmyService) { constructor(private armyService: ArmyService) {
} }
ngOnInit() { ngOnInit() {
this.armyService.getArmy() this.armyService.getArmy()
.subscribe(army => { .subscribe(army => {
this.army = army; this.army = army;
console.log(army)
}); });
}; };
} }

View File

@ -20,6 +20,7 @@ export class AwardingService {
*/ */
getUserAwardings(userId: string) { getUserAwardings(userId: string) {
return this.http.get(this.config.apiUrl + this.config.apiAwardPath + '?userId=' + userId) return this.http.get(this.config.apiUrl + this.config.apiAwardPath + '?userId=' + userId)
.map(res => res.json())
} }
addAwarding(award) { addAwarding(award) {

View File

@ -1,27 +0,0 @@
<form #form="ngForm" class="overview">
<h3>Neuen Teilnehmer hinzufügen</h3>
<div class="form-group">
<label for="title">Name</label>
<input type="text" class="form-control"
[(ngModel)]="user.username"
name="title"
id="title"
required maxlength="50"/>
<show-error text="Name" path="title"></show-error>
</div>
<button id="cancel"
(click)="cancel()"
class="btn btn-default">
Abbrechen
</button>
<button id="save"
(click)="saveUser()"
class="btn btn-default"
[disabled]="!form.valid">
Teilnehmer hinzufügen
</button>
</form>

View File

@ -1,50 +0,0 @@
import {Component, ViewChild} from "@angular/core";
import {ActivatedRoute, Router} from "@angular/router";
import {NgForm} from "@angular/forms";
import {User} from "../../models/model-interfaces";
import {UserService} from "../../services/user-service/user.service";
@Component({
templateUrl: './new-user.component.html',
styleUrls: ['./new-user.component.css', '../../style/new-entry-form.css']
})
export class CreateUserComponent {
user: User = {};
saved = false;
@ViewChild(NgForm) form: NgForm;
constructor(private route: ActivatedRoute,
private router: Router,
private userService: UserService) {
}
ngOnInit() {
}
saveUser() {
this.userService.submitUser(this.user)
.subscribe(user => {
this.saved = true;
this.router.navigate(['../overview', user._id], {relativeTo: this.route});
})
}
cancel() {
//this.location.back();
this.router.navigate(['/cc-users']);
return false;
}
canDeactivate(): boolean {
if (this.saved || !this.form.dirty) {
return true;
}
return window.confirm(`Ihr Formular besitzt ungespeicherte Änderungen, möchten Sie die Seite wirklich verlassen?`);
}
}

View File

@ -13,11 +13,32 @@
} }
.table-container { .table-container {
margin-top: 40px;
overflow-x: auto; overflow-x: auto;
width: 250%; width: 50%;
margin-top: 50px }
.overview {
position: fixed;
overflow-y: scroll;
overflow-x: hidden;
width: 100%;
border-left: thin solid lightgrey;
padding-left: 50px;
padding-top: 20px;
margin-left: 10px;
height: 100vh;
}
.form-group {
width: 25%;
} }
h3 { h3 {
margin-bottom: 20px; margin-bottom: 20px;
margin-left: -20px;
}
label {
display: block;
} }

View File

@ -56,18 +56,24 @@
Bestätigen Bestätigen
</button> </button>
<span *ngIf="showSuccessLabel"
class="label label-success label-small"
style="margin-left: inherit">
Erfolgreich gespeichert
</span>
<div class="table-container"> <div class="table-container">
<table class="table table-hover table-striped"> <table class="table table-hover">
<thead> <thead>
<tr> <tr>
<th class="col-sm-1">Bild</th> <th class="col-sm-1" style="width: 60px;">Bild</th>
<th class="col-sm-2">Bezeichnung</th> <th class="col-sm-2">Bezeichnung</th>
<th class="col-sm-3">Begründung</th> <th class="col-sm-2">Begründung</th>
<th class="col-sm-1 text-right">Datum</th> <th class="col-sm-1 text-right" style="width: 65px;">Datum</th>
<th class="col-sm-1 text-center" style="width: 45px;"></th> <th class="col-sm-1 text-center" style="width: 45px;"></th>
</tr> </tr>
</thead> </thead>
<tbody *ngFor="let award of user.awards"> <tbody *ngFor="let award of awards">
<tr> <tr>
<td class="table-cell-id" *ngIf="award.decorationId.isMedal"> <td class="table-cell-id" *ngIf="award.decorationId.isMedal">
<img height="40px" src="resource/decoration/{{award.decorationId._id}}.png"> <img height="40px" src="resource/decoration/{{award.decorationId._id}}.png">

View File

@ -1,9 +1,6 @@
import {Component, ViewChild} from "@angular/core"; import {Component, ViewChild} from "@angular/core";
import {ActivatedRoute, Router} from "@angular/router"; import {ActivatedRoute, Router} from "@angular/router";
import * as model from "../../models/model-interfaces"; import {Award, Decoration} from "../../models/model-interfaces";
import {Decoration, Squad, User} from "../../models/model-interfaces";
import {UserService} from "../../services/user-service/user.service";
import {Subscription} from "rxjs";
import {NgForm} from "@angular/forms"; import {NgForm} from "@angular/forms";
import {AwardingService} from "../../services/awarding-service/awarding.service"; import {AwardingService} from "../../services/awarding-service/awarding.service";
import {DecorationService} from "../../services/decoration-service/decoration.service"; import {DecorationService} from "../../services/decoration-service/decoration.service";
@ -11,91 +8,44 @@ import {DecorationService} from "../../services/decoration-service/decoration.se
@Component({ @Component({
templateUrl: './user-award.component.html', templateUrl: './user-award.component.html',
styleUrls: ['./user-award.component.css', '../../style/new-entry-form.css'], styleUrls: ['./user-award.component.css'],
}) })
export class UserAwardComponent { export class UserAwardComponent {
@ViewChild(NgForm) form: NgForm; @ViewChild(NgForm) form: NgForm;
subscription: Subscription;
showSuccessLabel = false; showSuccessLabel = false;
user: User = {}; userId: string;
decorations: Decoration[]; decorations: Decoration[];
award: { decorationId: '', reason: '' }; awards: Award[];
saved = false;
decoPreviewDisplay = 'none'; decoPreviewDisplay = 'none';
constructor(private router: Router, constructor(private router: Router,
private route: ActivatedRoute, private route: ActivatedRoute,
private userService: UserService,
private awardingService: AwardingService, private awardingService: AwardingService,
private decorationService: DecorationService) { private decorationService: DecorationService) {
} }
ngOnInit() { ngOnInit() {
this.subscription = this.route.params
.map(params => params['id'])
.filter(id => id != undefined)
.flatMap(id => this.userService.getUser(id))
.subscribe(user => {
this.user = user;
});
this.decorationService.findDecorations().subscribe(decorations => { this.decorationService.findDecorations().subscribe(decorations => {
this.decorations = decorations; this.decorations = decorations;
}); });
}
ngOnDestroy() { this.route.params
this.subscription.unsubscribe(); .map(params => params['id'])
} .flatMap(id => this.awardingService.getUserAwardings(id))
.subscribe(awards => {
this.awards = awards;
});
saveUser(rankLevel) { this.route.params
const updateObject = { .map(params => params['id'])
_id: this.user._id, .subscribe(id => this.userId = id)
username: this.user.username,
squadId: this.user.squad._id,
rankLvl: rankLevel
};
this.userService.updateUser(updateObject)
.subscribe(user => {
this.user = user;
this.showSuccessLabel = true;
setTimeout(() => {
this.showSuccessLabel = false;
}, 2000)
})
}
cancel() {
this.router.navigate(['../..'], {relativeTo: this.route});
return false;
}
/**
* compare ngValue with ngModel to assign selected element
*/
equals(o1: Squad, o2: Squad) {
if (o1 && o2) {
return o1._id === o2._id;
}
}
deleteUser(confirm) {
if (confirm.toLowerCase() === this.user.username.toLocaleLowerCase()) {
this.userService.deleteUser(this.user)
.subscribe((res) => {
this.router.navigate(['../..'], {relativeTo: this.route});
})
}
} }
@ -111,40 +61,23 @@ export class UserAwardComponent {
} }
deleteAwarding(awardingId) {
this.awardingService.deleteAwarding(awardingId).subscribe((res) => {
this.awardingService.getUserAwardings(this.user._id)
.map((res) => res.json())
.subscribe((awards) => {
this.user.awards = awards;
this.showSuccessLabel = true;
setTimeout(() => {
this.showSuccessLabel = false;
}, 2000)
})
})
}
addAwarding(decorationField, reasonField, previewImage, descriptionField) { addAwarding(decorationField, reasonField, previewImage, descriptionField) {
const decorationId = decorationField.value; const decorationId = decorationField.value;
const reason = reasonField.value; const reason = reasonField.value;
if (decorationId && reason.length > 0) { if (decorationId && reason.length > 0) {
const award = { const award = {
"userId": this.user._id, "userId": this.userId,
"decorationId": decorationId, "decorationId": decorationId,
"reason": reason, "reason": reason,
"date": Date.now() "date": Date.now()
}; };
this.awardingService.addAwarding(award).subscribe(() => { this.awardingService.addAwarding(award).subscribe(() => {
this.awardingService.getUserAwardings(this.user._id) this.awardingService.getUserAwardings(this.userId)
.map((res) => res.json())
.subscribe(awards => { .subscribe(awards => {
this.user.awards = awards; this.awards = awards;
this.decoPreviewDisplay = 'none'; this.decoPreviewDisplay = 'none';
decorationField.value = undefined; decorationField.value = undefined;
reasonField.value = ''; reasonField.value = previewImage.src = descriptionField.innerHTML = '';
previewImage.src = '';
descriptionField.innerHTML = '';
this.showSuccessLabel = true; this.showSuccessLabel = true;
setTimeout(() => { setTimeout(() => {
this.showSuccessLabel = false; this.showSuccessLabel = false;
@ -154,12 +87,22 @@ export class UserAwardComponent {
} }
} }
deleteAwarding(awardingId) {
this.awardingService.deleteAwarding(awardingId).subscribe((res) => {
this.awardingService.getUserAwardings(this.userId)
.subscribe((awards) => {
this.awards = awards;
this.showSuccessLabel = true;
setTimeout(() => {
this.showSuccessLabel = false;
}, 2000)
})
})
}
canDeactivate(): boolean { cancel() {
if (this.saved || !this.form.dirty) { this.router.navigate(['../..'], {relativeTo: this.route});
return true; return false;
}
return window.confirm(`Ihr Formular besitzt ungespeicherte Änderungen, möchten Sie die Seite wirklich verlassen?`);
} }
} }

View File

@ -48,7 +48,8 @@ export class UserListComponent implements OnInit {
} }
openNewUserForm() { openNewUserForm() {
this.router.navigate([{outlets: {'right': ['new']}}], {relativeTo: this.route}); this.selectedUserId = null;
this.router.navigate([{outlets: {'right': ['overview']}}], {relativeTo: this.route});
} }
selectUser(userId: string) { selectUser(userId: string) {
@ -62,10 +63,11 @@ export class UserListComponent implements OnInit {
} }
deleteUser(user: User) { deleteUser(user: User) {
this.userService.deleteUser(user) if (confirm('Soll der Teilnehmer ' + user.username + ' wirklich gelöscht werden?')) {
.subscribe((res) => { this.userService.deleteUser(user)
.subscribe((res) => {
}) })
}
} }
filterUsersByFraction(query = '', fractionFilter) { filterUsersByFraction(query = '', fractionFilter) {

View File

@ -1,4 +0,0 @@
.decoration-preview {
background-color: white;
padding: 5px;
}

View File

@ -1,5 +1,6 @@
<form #form="ngForm" class="overview"> <form #form="ngForm" class="overview">
<h3>Teilnehmer editieren</h3> <h3 *ngIf="user._id">Teilnehmer editieren</h3>
<h3 *ngIf="!user._id">Neuen Teilnehmer hinzufügen</h3>
<div class="form-group"> <div class="form-group">
<label for="title">Name</label> <label for="title">Name</label>

View File

@ -1,6 +1,5 @@
import {Component, ViewChild} from "@angular/core"; import {Component, ViewChild} from "@angular/core";
import {ActivatedRoute, Router} from "@angular/router"; import {ActivatedRoute, Router} from "@angular/router";
import * as model from "../../models/model-interfaces";
import {Rank, Squad, User} from "../../models/model-interfaces"; import {Rank, Squad, User} from "../../models/model-interfaces";
import {UserService} from "../../services/user-service/user.service"; import {UserService} from "../../services/user-service/user.service";
import {SquadService} from "../../services/squad-service/squad.service"; import {SquadService} from "../../services/squad-service/squad.service";
@ -19,15 +18,11 @@ export class UserOverviewComponent {
subscription: Subscription; subscription: Subscription;
id: string;
model = model;
showSuccessLabel = false; showSuccessLabel = false;
ranksDisplay = 'none'; ranksDisplay = 'none';
user: User = {squad: {}}; user: User = {username: '', squad: '0', rank: {level: 0}};
squads: Squad[] = []; squads: Squad[] = [];
@ -49,7 +44,6 @@ export class UserOverviewComponent {
.filter(id => id != undefined) .filter(id => id != undefined)
.flatMap(id => this.userService.getUser(id)) .flatMap(id => this.userService.getUser(id))
.subscribe(user => { .subscribe(user => {
console.log(user.squad)
if (!user.squad) { if (!user.squad) {
user.squad = "0"; user.squad = "0";
this.ranksDisplay = 'none'; this.ranksDisplay = 'none';
@ -94,22 +88,31 @@ export class UserOverviewComponent {
if (this.user.squad._id !== '0') { if (this.user.squad._id !== '0') {
updateObject.squadId = this.user.squad._id updateObject.squadId = this.user.squad._id
} }
this.userService.updateUser(updateObject)
.subscribe(user => { if (this.user._id) {
if (!user.squad) { this.userService.updateUser(updateObject)
user.squad = '0'; .subscribe(user => {
} if (!user.squad) {
this.user = user; user.squad = '0';
this.showSuccessLabel = true; }
setTimeout(() => { this.user = user;
this.showSuccessLabel = false; this.showSuccessLabel = true;
}, 2000) setTimeout(() => {
}) this.showSuccessLabel = false;
}, 2000)
})
} else {
this.userService.submitUser(updateObject)
.subscribe(user => {
this.router.navigate(['..'], {relativeTo: this.route});
return true;
})
}
} }
cancel() { cancel() {
this.router.navigate(['../..'], {relativeTo: this.route}); this.router.navigate([this.user._id ? '../..' : '..'], {relativeTo: this.route});
return false; return false;
} }
@ -122,15 +125,6 @@ export class UserOverviewComponent {
} }
} }
deleteUser(confirm) {
if (confirm.toLowerCase() === this.user.username.toLocaleLowerCase()) {
this.userService.deleteUser(this.user)
.subscribe((res) => {
this.router.navigate(['../..'], {relativeTo: this.route});
})
}
}
canDeactivate(): boolean { canDeactivate(): boolean {
if (this.saved || !this.form.dirty) { if (this.saved || !this.form.dirty) {
return true; return true;

View File

@ -2,7 +2,6 @@ import {Routes} from "@angular/router";
import {UsersComponent} from "./users.component"; import {UsersComponent} from "./users.component";
import {UserOverviewComponent} from "./user-overview/user-overview.component"; import {UserOverviewComponent} from "./user-overview/user-overview.component";
import {UserListComponent} from "./user-list/user-list.component"; import {UserListComponent} from "./user-list/user-list.component";
import {CreateUserComponent} from "./new-user/new-user.component";
import {UserAwardComponent} from "./user-award/user-award.component"; import {UserAwardComponent} from "./user-award/user-award.component";
export const usersRoutes: Routes = [{ export const usersRoutes: Routes = [{
@ -15,8 +14,8 @@ export const usersRoutes: Routes = [{
] ]
}, },
{ {
path: 'new', path: 'overview',
component: CreateUserComponent, component: UserOverviewComponent,
outlet: 'right' outlet: 'right'
}, },
{ {
@ -31,4 +30,4 @@ export const usersRoutes: Routes = [{
} }
]; ];
export const usersRoutingComponents = [UsersComponent, UserListComponent, UserOverviewComponent, CreateUserComponent, UserAwardComponent]; export const usersRoutingComponents = [UsersComponent, UserListComponent, UserOverviewComponent, UserAwardComponent];