timemanager/frontend/src/app/statistics/schedule-history/schedule-history.component.ts
Sebastian 0d64d9c72a
All checks were successful
Java CI with Maven / test (push) Successful in 37s
Java CI with Maven / build-and-push-frontend (push) Successful in 2m13s
Java CI with Maven / build-and-push-backend (push) Successful in 1m21s
Implement Schedule History
2023-12-20 20:53:37 +01:00

63 lines
1.7 KiB
TypeScript

import {Component, OnInit} from '@angular/core';
import {HistoryService, ScheduleInfo, TaskgroupEntityInfo} from "../../../api";
import * as moment from "moment";
import {NavigationLink} from "../../navigation-link-list/navigation-link-list.component";
@Component({
selector: 'app-schedule-history',
templateUrl: './schedule-history.component.html',
styleUrls: ['./schedule-history.component.css']
})
export class ScheduleHistoryComponent implements OnInit{
defaultNavigationLinkPath: NavigationLink[] = [
{
linkText: 'Dashboard',
routerLink: ['/']
},
{
linkText: 'Statistics',
routerLink: []
},
{
linkText: 'Taskgroup Activity',
routerLink: ['/statistics/taskgroup-activity']
}
];
selectedDate: Date = new Date();
schedules: ScheduleInfo[] = []
displayedColumns: string[] = ['taskgroup', 'task', 'start', 'end', 'duration'];
ngOnInit() {
this.historyService.historySchedulesDateGet(moment(this.selectedDate).format("YYYY-MM-DD")).subscribe({
next: resp => {
this.schedules = resp;
}
})
}
constructor(private historyService: HistoryService) {
}
computeTaskgroupPath(taskgroupPath: TaskgroupEntityInfo[]) {
let result = "";
taskgroupPath.forEach(taskgroup => {
result += taskgroup.taskgroupName + "/";
})
return result;
}
formatDate(date: string) {
return moment(date).format('dd, DD. MMM YYYY');
}
calcDuration(startDate: string, endDate: string) {
const start = moment(new Date(startDate));
const end = moment(new Date(endDate));
const duration = moment.duration(end.diff(start));
return duration.asMinutes() + " Minutes";
}
}