opt-cc/static/src/app/pub/decoration-overview/decoration-overview.compone...

48 lines
1.5 KiB
TypeScript
Raw Normal View History

2018-07-28 19:13:30 +02:00
import {Component, OnInit} from '@angular/core';
import {ActivatedRoute, Router} from '@angular/router';
import {Fraction} from '../../utils/fraction.enum';
import {Decoration} from '../../models/model-interfaces';
import {DecorationService} from '../../services/army-management/decoration.service';
import {MatBottomSheet} from '@angular/material';
import {UserListSheetComponent} from '../user-list-sheet/user-list-sheet.component';
@Component({
selector: 'cc-decoration-overview',
templateUrl: './decoration-overview.component.html',
styleUrls: ['./decoration-overview.component.css']
})
2018-07-28 19:13:30 +02:00
export class DecorationOverviewComponent implements OnInit {
decorationsBlufor: Decoration[];
2018-07-18 21:15:42 +02:00
decorationsGlobal: Decoration[];
2018-07-18 21:15:42 +02:00
decorationsOpfor: Decoration[];
2018-07-18 21:15:42 +02:00
hasFixedTableHeader = false;
readonly fraction = Fraction;
constructor(private router: Router,
private route: ActivatedRoute,
private decorationService: DecorationService,
2018-07-28 19:13:30 +02:00
private bottomSheet: MatBottomSheet) {
}
ngOnInit() {
2018-07-18 21:15:42 +02:00
// init decoration data
this.decorationService.findDecorations()
.subscribe(decorations => {
this.decorationsBlufor = decorations.filter(d => d.fraction === 'BLUFOR');
this.decorationsGlobal = decorations.filter(d => d.fraction === 'GLOBAL');
this.decorationsOpfor = decorations.filter(d => d.fraction === 'OPFOR');
});
};
select(decoration: Decoration) {
2018-07-28 19:13:30 +02:00
this.bottomSheet.open(UserListSheetComponent, {data: {decoration: decoration}});
}
}