* Trim when reading some fields from ComicInfo. Adjusted css on the site to reduce nbsp * Added Cancelled as a publication status * Ensure we track volume number from ComicInfo for the count to determine publication status * Publication Status will now check against volume number or chapter number (parsed or comicinfo). The UI will now display the progress, ie) 10/15 and will show the series as completed with a green tag badge if the progress is 100%. * Tweaked the ordering of the tabs to make it more streamlined in the reading ordering of Kavita * Tweaked the logic for filling in tag badge * Added a new publication status of Ended for series that have finished releasing, but not all items are in Kavita * Added some fields to edit series modal
21 lines
629 B
TypeScript
21 lines
629 B
TypeScript
import { Pipe, PipeTransform } from '@angular/core';
|
|
import { PublicationStatus } from '../_models/metadata/publication-status';
|
|
|
|
@Pipe({
|
|
name: 'publicationStatus'
|
|
})
|
|
export class PublicationStatusPipe implements PipeTransform {
|
|
|
|
transform(value: PublicationStatus): string {
|
|
switch (value) {
|
|
case PublicationStatus.OnGoing: return 'Ongoing';
|
|
case PublicationStatus.Hiatus: return 'Hiatus';
|
|
case PublicationStatus.Completed: return 'Completed';
|
|
case PublicationStatus.Cancelled: return 'Cancelled';
|
|
case PublicationStatus.Ended: return 'Ended';
|
|
|
|
default: return '';
|
|
}
|
|
}
|
|
|
|
}
|