cleaned up some comments.

This commit is contained in:
test 2020-07-23 11:50:42 +02:00
parent 8f924ae0b7
commit 412458da99
3 changed files with 75 additions and 70 deletions

View File

@ -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.

View File

@ -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;
@ -158,10 +163,8 @@ class TaskFormComponent implements OnInit {
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,8 +185,6 @@ 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
@ -202,7 +203,7 @@ class TaskFormComponent implements OnInit {
}
this.task.assignedToId = null;
});
}
}
/**
* Getting the value of the priority enum to be shown in a dropdown in popup window.

View File

@ -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.
@ -212,10 +215,8 @@ class UserstoryFormComponent implements OnInit {
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,8 +237,6 @@ 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
@ -256,7 +255,7 @@ class UserstoryFormComponent implements OnInit {
}
this.userstory.createdById = null;
});
}
}
/**
* Shows the before choosen category in the category-field in the popup window.