timemanager/frontend/src/app/dashboard/forgotten-task-start-dialog/forgotten-task-start-dialog.component.ts
Sebastian f076a5907c
All checks were successful
Java CI with Maven / build (push) Successful in 48s
schedule-refactor (#45)
Co-authored-by: Sebastian Böckelmann <uqpko@student.kit.edu>
Reviewed-on: Sebastian/TimeManager#45
2023-11-11 18:56:14 +01:00

77 lines
2.6 KiB
TypeScript

import {Component, OnInit} from '@angular/core';
import {ForgottenActivityRequest, ScheduleService, TaskService, TaskShortInfo} from "../../../api";
import {MatSnackBar} from "@angular/material/snack-bar";
import {DialogRef} from "@angular/cdk/dialog";
import {MatDialogRef} from "@angular/material/dialog";
import {filter, map, Observable, startWith} from "rxjs";
import {FormControl} from "@angular/forms";
@Component({
selector: 'app-forgotten-task-start-dialog',
templateUrl: './forgotten-task-start-dialog.component.html',
styleUrls: ['./forgotten-task-start-dialog.component.css']
})
export class ForgottenTaskStartDialogComponent implements OnInit{
tasks: TaskShortInfo[] = []
myControl: FormControl = new FormControl('');
filteredOptions: Observable<string[]> | undefined;
lastSchedule: boolean = false
plannedSchedule: boolean = false
minutesSpentControl: FormControl = new FormControl();
constructor(private taskService: TaskService,
private snackbar: MatSnackBar,
private dialogRef: MatDialogRef<ForgottenTaskStartDialogComponent>,
private scheduleService: ScheduleService) {
}
ngOnInit() {
this.taskService.tasksAllScopeDetailedGet("UNFINISHED", false).subscribe({
next: resp => {
this.tasks = resp;
this.filteredOptions = this.myControl.valueChanges.pipe(
startWith(''),
map(value => this._filter(value || '')),
);
},
error: err => {
this.snackbar.open("Unexpected error", "", {duration: 2000});
}
})
}
private _filter(value: string): string[] {
const filterValue = value.toLowerCase();
return this.tasks.map(x => x.taskName).filter(option => option.toLowerCase().includes(filterValue))
}
registerActivity() {
const task = this.tasks.find(task => task.taskName === this.myControl.value);
if(task != undefined) {
/*this.scheduleService.schedulesTaskIDForgottenPost(task.taskID, {
mode: this.determineRegisterMode(),
minutesSpent: this.minutesSpentControl.value
}).subscribe({
next: resp => {
this.dialogRef.close(resp);
},
error: err => {
if(err.status == 400) {
this.snackbar.open("Invalid Operation", "", {duration: 2000});
} else if(err.status == 403) {
this.snackbar.open("No permission", "", {duration: 2000});
} else if(err.status == 404) {
this.snackbar.open("Task not found", "", {duration: 2000});
} else {
this.snackbar.open("Unexpected error", "", {duration: 2000});
}
}
})*/
}
}
}