opt-cc/static/src/app/decorations/decoration-list/decoration-list.component.ts

75 lines
2.4 KiB
TypeScript
Raw Normal View History

2018-03-07 11:56:50 +01:00
import {Component, OnInit} from '@angular/core';
2017-05-10 11:04:06 +02:00
2018-03-07 11:56:50 +01:00
import {FormControl} from '@angular/forms';
import {ActivatedRoute, Router} from '@angular/router';
import {Observable} from 'rxjs/Observable';
import {Decoration} from '../../models/model-interfaces';
import {DecorationService} from '../../services/army-management/decoration.service';
import {Fraction} from '../../utils/fraction.enum';
import {MatButtonToggleGroup} from '@angular/material';
import {UIHelpers} from '../../utils/global.helpers';
2017-05-10 11:04:06 +02:00
@Component({
selector: 'decoration-list',
templateUrl: './decoration-list.component.html',
2017-10-06 20:11:18 +02:00
styleUrls: ['./decoration-list.component.css', '../../style/select-list.css']
2017-05-10 11:04:06 +02:00
})
export class DecorationListComponent implements OnInit {
selectedDecorationId: string | number = null;
decorations$: Observable<Decoration[]>;
searchTerm = new FormControl();
2018-07-05 21:57:47 +02:00
radioModel = '';
2017-05-10 11:04:06 +02:00
2017-11-08 19:23:15 +01:00
readonly fraction = Fraction;
2017-05-10 11:04:06 +02:00
constructor(private decorationService: DecorationService,
private router: Router,
private route: ActivatedRoute) {
2017-05-10 11:04:06 +02:00
}
ngOnInit() {
this.decorations$ = this.decorationService.decorations$;
}
2017-05-10 11:04:06 +02:00
initObservable(observables: any) {
Observable.merge(observables.params as Observable<string>, observables.searchTerm)
2018-02-26 09:04:27 +01:00
.distinctUntilChanged()
.switchMap(query => this.decorationService.findDecorations(query, this.radioModel))
.subscribe();
2017-05-10 11:04:06 +02:00
}
openNewDecorationForm() {
this.selectedDecorationId = null;
2017-05-10 11:04:06 +02:00
this.router.navigate([{outlets: {'right': ['new']}}], {relativeTo: this.route});
}
selectDecoration(decorationId: string | number) {
this.selectedDecorationId = decorationId;
this.router.navigate([{outlets: {'right': ['edit', decorationId]}}], {relativeTo: this.route});
}
deleteDecoration(decoration) {
let fraction = 'Global';
2018-03-08 09:44:35 +01:00
if (decoration.fraction === 'BLUFOR') {
fraction = Fraction.BLUFOR;
} else if (decoration.fraction === 'OPFOR') {
fraction = Fraction.OPFOR;
}
if (confirm('Soll die Auszeichnung "' + decoration.name + '" (' + fraction + ') wirklich gelöscht werden?')) {
this.decorationService.deleteDecoration(decoration)
2018-02-26 09:04:27 +01:00
.subscribe((res) => {
2018-03-08 09:44:35 +01:00
});
}
2017-05-10 11:04:06 +02:00
}
filterDecorations(group?: MatButtonToggleGroup) {
this.radioModel = UIHelpers.toggleReleaseButton(this.radioModel, group);
this.decorations$ = this.decorationService.findDecorations(this.searchTerm.value, this.radioModel);
2017-05-10 11:04:06 +02:00
}
}