timemanager/frontend/src/app/taskgroups/taskgroup-creation/taskgroup-creation.component.ts

77 lines
2.5 KiB
TypeScript

import {Component, Inject, OnInit} from '@angular/core';
import {FormControl, Validators} from "@angular/forms";
import {MAT_DIALOG_DATA, MatDialogRef} from "@angular/material/dialog";
import {TaskgroupEntityInfo, TaskgroupService} from "../../../api";
import {error} from "@angular/compiler/src/util";
import {MatSnackBar} from "@angular/material/snack-bar";
@Component({
selector: 'app-taskgroup-creation',
templateUrl: './taskgroup-creation.component.html',
styleUrls: ['./taskgroup-creation.component.css']
})
export class TaskgroupCreationComponent implements OnInit {
nameCtrl = new FormControl('', [Validators.required, Validators.maxLength(255)])
pending: boolean = false
constructor(private dialogRef: MatDialogRef<TaskgroupCreationComponent>,
private taskgroupService: TaskgroupService,
private snackbar: MatSnackBar,
@Inject(MAT_DIALOG_DATA) public data: TaskgroupEntityInfo | undefined) { }
ngOnInit(): void {
if(this.data != undefined) {
this.nameCtrl.setValue(this.data!.taskgroupName)
}
}
cancel() {
this.dialogRef.close();
}
save() {
this.pending = true;
if(this.data == undefined) {
this.taskgroupService.taskgroupsPut({
name: this.nameCtrl.value
}).subscribe({
next: resp => {
this.pending = false;
this.dialogRef.close(resp);
},
error: err => {
this.pending = false;
if(err.status == 409) {
this.snackbar.open("Taskgroup already exists", "", {duration: 2000});
} else {
this.snackbar.open("An unexpected error occured", "");
}
}
})
} else {
this.taskgroupService.taskgroupsTaskgroupIDPost(this.data.taskgroupID, {
name: this.nameCtrl.value
}).subscribe({
next: resp => {
this.pending = false;
this.data!.taskgroupName = this.nameCtrl.value
this.dialogRef.close(true);
},
error: err => {
this.pending = false;
if(err.status == 409) {
this.snackbar.open("Taskgroup already exists", "", {duration: 2000});
} else if(err.status == 403) {
this.snackbar.open("No permission", "", {duration: 2000})
} else if(err.status == 404) {
this.snackbar.open("Not found", "", {duration: 2000});
} else {
this.snackbar.open("An unexpected error occured", "");
}
}
})
}
}
}