From 412458da99dd9ff3807a1bf90bd3e4c51cf249e2 Mon Sep 17 00:00:00 2001 From: test Date: Thu, 23 Jul 2020 11:50:42 +0200 Subject: [PATCH] cleaned up some comments. --- .../forms/sprint/sprint-form.component.ts | 17 +++-- .../forms/task/task-form.component.ts | 63 +++++++++--------- .../userstory/userstory-form.component.ts | 65 +++++++++---------- 3 files changed, 75 insertions(+), 70 deletions(-) diff --git a/src/app/components/forms/sprint/sprint-form.component.ts b/src/app/components/forms/sprint/sprint-form.component.ts index 13a034c..1e1cc80 100644 --- a/src/app/components/forms/sprint/sprint-form.component.ts +++ b/src/app/components/forms/sprint/sprint-form.component.ts @@ -1,4 +1,6 @@ -// Importing necessary components and interfaces. +/** + * Importing necessary components and interfaces. + * */ import { Component, OnInit, Input } from '@angular/core'; import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; import { BackendService, ScrumSprint } from '../../../services/backend.service'; @@ -6,15 +8,18 @@ import { BackendService, ScrumSprint } from '../../../services/backend.service'; @Component({ selector: 'app-task-form', templateUrl: './sprint-form.component.html', - styleUrls: [ './sprint-form.component.css' ] + styleUrls: ['./sprint-form.component.css'] }) -export // Class implements the logic for a popup window form to create and modify sprints. -class SprintFormComponent implements OnInit { + +/** + * Class implements the logic for a popup window form to create and modify sprints. +*/ +export class SprintFormComponent implements OnInit { @Input() public sprint: ScrumSprint; public editing: Boolean; public sprintId: string; - constructor(private backendService: BackendService, private activeModalService: NgbActiveModal) {} + constructor(private backendService: BackendService, private activeModalService: NgbActiveModal) { } /** * If no sprint exists a new one will be created. @@ -62,4 +67,4 @@ class SprintFormComponent implements OnInit { onClose() { this.activeModalService.dismiss(this.sprint); } -} +} \ No newline at end of file diff --git a/src/app/components/forms/task/task-form.component.ts b/src/app/components/forms/task/task-form.component.ts index 8d686f6..017565f 100644 --- a/src/app/components/forms/task/task-form.component.ts +++ b/src/app/components/forms/task/task-form.component.ts @@ -1,4 +1,6 @@ -// Importing necessary components and interfaces. +/** + * Importing necessary components and interfaces. +*/ import { Component, OnInit, Input } from '@angular/core'; import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; import { @@ -17,10 +19,13 @@ import { HttpResponse } from '@angular/common/http'; @Component({ selector: 'app-task-form', templateUrl: './task-form.component.html', - styleUrls: [ './task-form.component.css' ] + styleUrls: ['./task-form.component.css'] }) -export // Class implements the logic for a popup window form to create and modify tasks. -class TaskFormComponent implements OnInit { + +/** + * Class implements the logic for a popup window form to create and modify tasks. + */ +export class TaskFormComponent implements OnInit { @Input() public task: ScrumTask; public editing: boolean; public creating: boolean; @@ -150,18 +155,16 @@ class TaskFormComponent implements OnInit { * The new user is available to all tasks. * @param user ScrumUser to store in the database */ - createUser(user: ScrumUser) { - this.backendService.postUser(user).subscribe((response) => { - if (response.status > 399) { - alert('Fehler'); - } else { - this.allUser.push(response.body); - } - }); -} + createUser(user: ScrumUser) { + this.backendService.postUser(user).subscribe((response) => { + if (response.status > 399) { + alert('Fehler'); + } else { + this.allUser.push(response.body); + } + }); + } - // A custom status can even be deleted if not used anymore. - // This will remove the status from status-array. /** * A custom status can even be deleted if not used anymore. * This will remove the status from status-array @@ -182,27 +185,25 @@ class TaskFormComponent implements OnInit { }); } - // A custom user can even be deleted if not used anymore. - // This will remove the user from user-array. /** * A custom user can even be deleted if not used anymore. * This will remove the user from user-array * @param id the id of the chosen user */ - deleteUser(id: number) { - var user = this.allUser.find((x) => x.id === id); - this.backendService.deleteUser(user).subscribe((response) => { - if (response.status > 399) { - alert('Fehler'); - } else { - const index = this.allUser.indexOf(user); - if (index !== -1) { - this.allUser.splice(index, 1); + deleteUser(id: number) { + var user = this.allUser.find((x) => x.id === id); + this.backendService.deleteUser(user).subscribe((response) => { + if (response.status > 399) { + alert('Fehler'); + } else { + const index = this.allUser.indexOf(user); + if (index !== -1) { + this.allUser.splice(index, 1); + } } - } - this.task.assignedToId = null; - }); -} + this.task.assignedToId = null; + }); + } /** * Getting the value of the priority enum to be shown in a dropdown in popup window. @@ -268,4 +269,4 @@ class TaskFormComponent implements OnInit { } return user.name; } -} +} \ No newline at end of file diff --git a/src/app/components/forms/userstory/userstory-form.component.ts b/src/app/components/forms/userstory/userstory-form.component.ts index 6f58d7f..ed7e65e 100644 --- a/src/app/components/forms/userstory/userstory-form.component.ts +++ b/src/app/components/forms/userstory/userstory-form.component.ts @@ -1,4 +1,6 @@ -// Importing necessary components and interfaces. +/** + * Importing necessary components and interfaces. + */ import { Component, OnInit, Input } from '@angular/core'; import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; import { BackendService, ScrumUserstory, Priority, ScrumStatus, ScrumCategory, ScrumUser } from '../../../services/backend.service'; @@ -6,10 +8,13 @@ import { BackendService, ScrumUserstory, Priority, ScrumStatus, ScrumCategory, S @Component({ selector: 'app-userstory-form', templateUrl: './userstory-form.component.html', - styleUrls: [ './userstory-form.component.css' ] + styleUrls: ['./userstory-form.component.css'] }) -export // Class implements the logic for a popup window form to create and modify userstories. -class UserstoryFormComponent implements OnInit { + +/** + * Class implements the logic for a popup window form to create and modify userstories. + */ +export class UserstoryFormComponent implements OnInit { @Input() public userstory: ScrumUserstory; public allStatus: any[] = []; public status: ScrumStatus = { title: '', description: '' }; @@ -182,8 +187,6 @@ class UserstoryFormComponent implements OnInit { }); } - // If desired a new arbitrary category can be created, which will be stored in an array. - // The new category is available to all userstories. /** * If desired a new arbitrary category can be created, which will be stored in an array. * The new category is available to all userstories. @@ -204,18 +207,16 @@ class UserstoryFormComponent implements OnInit { * The new user is available to all userstories. * @param user ScrumUser to store in the database */ - createUser(user: ScrumUser) { - this.backendService.postUser(user).subscribe((response) => { - if (response.status > 399) { - alert('Fehler'); - } else { - this.allUser.push(response.body); - } - }); -} + createUser(user: ScrumUser) { + this.backendService.postUser(user).subscribe((response) => { + if (response.status > 399) { + alert('Fehler'); + } else { + this.allUser.push(response.body); + } + }); + } - // A custom category can even be deleted if not used anymore. - // This will remove the category from category-array. /** * A custom category can even be deleted if not used anymore. * This will remove the category from category-array. @@ -236,27 +237,25 @@ class UserstoryFormComponent implements OnInit { }); } - // A custom user can even be deleted if not used anymore. - // This will remove the user from user-array. /** * A custom user can even be deleted if not used anymore. * This will remove the user from user-array * @param id the id of the chosen user */ - deleteUser(id: number) { - var user = this.allUser.find((x) => x.id === id); - this.backendService.deleteUser(user).subscribe((response) => { - if (response.status > 399) { - alert('Fehler'); - } else { - const index = this.allUser.indexOf(user); - if (index !== -1) { - this.allUser.splice(index, 1); + deleteUser(id: number) { + var user = this.allUser.find((x) => x.id === id); + this.backendService.deleteUser(user).subscribe((response) => { + if (response.status > 399) { + alert('Fehler'); + } else { + const index = this.allUser.indexOf(user); + if (index !== -1) { + this.allUser.splice(index, 1); + } } - } - this.userstory.createdById = null; - }); -} + this.userstory.createdById = null; + }); + } /** * Shows the before choosen category in the category-field in the popup window. @@ -272,4 +271,4 @@ class UserstoryFormComponent implements OnInit { } return category.title; } -} +} \ No newline at end of file