opt-cc/static/src/app/manage/squads/edit-squad/edit-squad.component.ts

108 lines
3.4 KiB
TypeScript
Raw Normal View History

2018-03-08 09:44:35 +01:00
import {Component, OnDestroy, OnInit, ViewChild} from '@angular/core';
2018-03-07 11:56:50 +01:00
import {ActivatedRoute, Router} from '@angular/router';
import {NgForm} from '@angular/forms';
import {Squad} from '../../../models/model-interfaces';
import {SquadService} from '../../../services/army-management/squad.service';
2018-03-07 11:56:50 +01:00
import {Subscription} from 'rxjs/Subscription';
import {Fraction} from '../../../utils/fraction.enum';
import {SnackBarService} from '../../../services/user-interface/snack-bar/snack-bar.service';
2018-10-03 15:22:14 +02:00
import {TranslateService} from '@ngx-translate/core';
2017-05-10 11:04:06 +02:00
@Component({
templateUrl: './edit-squad.component.html',
styleUrls: ['./edit-squad.component.scss']
2017-05-10 11:04:06 +02:00
})
2018-03-08 09:44:35 +01:00
export class EditSquadComponent implements OnInit, OnDestroy {
2017-05-10 11:04:06 +02:00
subscription: Subscription;
2017-05-10 11:04:06 +02:00
squad: Squad = {name: '', fraction: '', sortingNumber: 0};
fileList: FileList;
saved = false;
showImageError = false;
imagePreviewSrc;
2017-05-10 11:04:06 +02:00
@ViewChild(NgForm) form: NgForm;
2017-11-08 19:35:34 +01:00
readonly fraction = Fraction;
2017-05-10 11:04:06 +02:00
constructor(private route: ActivatedRoute,
private router: Router,
private squadService: SquadService,
2018-10-03 15:22:14 +02:00
private snackBarService: SnackBarService,
private translate: TranslateService) {
2017-05-10 11:04:06 +02:00
}
ngOnInit() {
this.subscription = this.route.params
2018-02-26 09:04:27 +01:00
.map(params => params['id'])
2018-03-07 11:56:50 +01:00
.filter(id => id !== undefined)
2018-02-26 09:04:27 +01:00
.flatMap(id => this.squadService.getSquad(id))
.subscribe(squad => {
this.squad = squad;
this.imagePreviewSrc = 'resource/squad/' + this.squad._id + '.png?' + Date.now();
});
}
2017-05-10 11:04:06 +02:00
ngOnDestroy() {
this.subscription.unsubscribe();
2017-05-10 11:04:06 +02:00
}
fileChange(event) {
if (!event.target.files[0].name.endsWith('.png')) {
this.showImageError = true;
this.fileList = undefined;
} else {
this.showImageError = false;
this.fileList = event.target.files;
}
}
saveSquad(fileInput) {
let file: File;
if (!this.squad._id) {
if (this.fileList) {
file = this.fileList[0];
this.squadService.submitSquad(this.squad, file)
.subscribe(squad => {
2018-02-26 09:04:27 +01:00
this.saved = true;
this.router.navigate(['..'], {relativeTo: this.route});
2018-03-07 11:56:50 +01:00
});
} else {
2018-10-04 10:59:15 +02:00
this.translate.get('squad.submit.field.logo').subscribe((fieldNameLogo) => {
2018-10-03 15:22:14 +02:00
this.translate.get('public.error.message.required',
2018-10-04 10:59:15 +02:00
{fieldName: fieldNameLogo}).subscribe((message) => {
this.snackBarService.showError(message, 4000);
2018-10-03 15:22:14 +02:00
})
});
}
} else {
if (this.fileList) {
file = this.fileList[0];
}
delete this.squad['__v'];
2017-05-10 11:04:06 +02:00
this.squadService.submitSquad(this.squad, file)
.subscribe(squad => {
2018-02-26 09:04:27 +01:00
setTimeout(() => {
this.imagePreviewSrc = 'resource/squad/' + this.squad._id + '.png?' + Date.now();
}, 300);
fileInput.value = '';
2018-10-05 15:51:46 +02:00
this.snackBarService.showSuccess('generic.save.success');
}, error => {
const errorMsg = error._body ? JSON.parse(error._body).error.message : error.error.error.message;
this.snackBarService.showError('Error: '.concat(errorMsg), 15000);
2018-03-08 09:44:35 +01:00
});
2017-05-10 11:04:06 +02:00
}
}
cancel() {
this.router.navigate([this.squad._id ? '../..' : '..'], {relativeTo: this.route});
2017-05-10 11:04:06 +02:00
return false;
}
}