* Started designing the backend localization service * Worked in Transloco for initial PoC * Worked in Transloco for initial PoC * Translated the login screen * translated dashboard screen * Started work on the backend * Fixed a logic bug * translated edit-user screen * Hooked up the backend for having a locale property. * Hooked up the ability to view the available locales and switch to them. * Made the localization service languages be derived from what's in langs/ directory. * Fixed up localization switching * Switched when we check for a license on UI bootstrap * Tweaked some code * Fixed the bug where dashboard wasn't loading and made it so language switching is working. * Fixed a bug on dashboard with languagePath * Converted user-scrobble-history.component.html * Converted spoiler.component.html * Converted review-series-modal.component.html * Converted review-card-modal.component.html * Updated the readme * Translated using Weblate (English) Currently translated at 100.0% (54 of 54 strings) Translation: Kavita/ui Translate-URL: https://hosted.weblate.org/projects/kavita/ui/en/ * Converted review-card.component.html * Deleted dead component * Converted want-to-read.component.html * Added translation using Weblate (Korean) * Translated using Weblate (Spanish) Currently translated at 40.7% (22 of 54 strings) Translation: Kavita/ui Translate-URL: https://hosted.weblate.org/projects/kavita/ui/es/ * Translated using Weblate (Korean) Currently translated at 62.9% (34 of 54 strings) Translation: Kavita/ui Translate-URL: https://hosted.weblate.org/projects/kavita/ui/ko/ * Converted user-preferences.component.html * Translated using Weblate (Korean) Currently translated at 92.5% (50 of 54 strings) Translation: Kavita/ui Translate-URL: https://hosted.weblate.org/projects/kavita/ui/ko/ * Converted user-holds.component.html * Converted theme-manager.component.html * Converted restriction-selector.component.html * Converted manage-devices.component.html * Converted edit-device.component.html * Converted change-password.component.html * Converted change-email.component.html * Converted change-age-restriction.component.html * Converted api-key.component.html * Converted anilist-key.component.html * Converted typeahead.component.html * Converted user-stats-info-cards.component.html * Converted user-stats.component.html * Converted top-readers.component.html * Converted some pipes and ensure translation is loaded before the app. * Finished all but one pipe for localization * Converted directory-picker.component.html * Converted library-access-modal.component.html * Converted a few components * Converted a few components * Converted a few components * Converted a few components * Converted a few components * Merged weblate in * ... -> … update * Updated the readme * Updateded all fonts to be woff2 * Cleaned up some strings to increase re-use * Removed an old flow (that doesn't exist in backend any longer) from when we introduced emails on Kavita. * Converted Series detail * Lots more converted * Lots more converted & hooked up the ability to flatten during prod build the language files. * Lots more converted * Lots more converted & fixed a bunch of broken pipes due to inject() * Lots more converted * Lots more converted * Lots more converted & fixed some bad keys * Lots more converted * Fixed some bugs with admin dasbhoard nested tabs not rendering on first load due to not using onpush change detection * Fixed up some localization errors and fixed forgot password error when the user doesn't have change password permission * Fixed a stupid build issue again * Started adding errors for interceptor and backend. * Finished off manga-reader * More translations * Few fixes * Fixed a bug where character tag badges weren't showing the name on chapter info * All components are translated * All toasts are translated * All confirm/alerts are translated * Trying something new for the backend * Migrated the localization strings for the backend into a new file. * Updated the localization service to be able to do backend localization with fallback to english. * Cleaned up some external reviews code to reduce looping * Localized AccountController.cs * 60% done with controllers * All controllers are done * All KavitaExceptions are covered * Some shakeout fixes * Prep for initial merge * Everything is done except options and basic shakeout proves response times are good. Unit tests are broken. * Fixed up the unit tests * All unit tests are now working * Removed some quantifier * I'm not sure I can support localization for some Volume/Chapter/Book strings within the codebase. --------- Co-authored-by: Robbie Davis <robbie@therobbiedavis.com> Co-authored-by: majora2007 <kavitareader@gmail.com> Co-authored-by: expertjun <jtrobin@naver.com> Co-authored-by: ThePromidius <thepromidiusyt@gmail.com>
162 lines
5.7 KiB
TypeScript
162 lines
5.7 KiB
TypeScript
import {
|
|
ChangeDetectionStrategy,
|
|
ChangeDetectorRef,
|
|
Component, DestroyRef,
|
|
EventEmitter,
|
|
inject,
|
|
Input,
|
|
OnInit,
|
|
Output
|
|
} from '@angular/core';
|
|
import { ToastrService } from 'ngx-toastr';
|
|
import { map, Observable } from 'rxjs';
|
|
import { Download } from 'src/app/shared/_models/download';
|
|
import { DownloadEvent, DownloadService } from 'src/app/shared/_services/download.service';
|
|
import {Breakpoint, UtilityService} from 'src/app/shared/_services/utility.service';
|
|
import { Chapter } from 'src/app/_models/chapter';
|
|
import { LibraryType } from 'src/app/_models/library';
|
|
import { RelationKind } from 'src/app/_models/series-detail/relation-kind';
|
|
import { Volume } from 'src/app/_models/volume';
|
|
import { Action, ActionItem } from 'src/app/_services/action-factory.service';
|
|
import {takeUntilDestroyed} from "@angular/core/rxjs-interop";
|
|
import {ReadMoreComponent} from "../../shared/read-more/read-more.component";
|
|
import {CommonModule} from "@angular/common";
|
|
import {ImageComponent} from "../../shared/image/image.component";
|
|
import {DownloadIndicatorComponent} from "../download-indicator/download-indicator.component";
|
|
import {EntityInfoCardsComponent} from "../entity-info-cards/entity-info-cards.component";
|
|
import {CardActionablesComponent} from "../card-item/card-actionables/card-actionables.component";
|
|
import {NgbProgressbar, NgbTooltip} from "@ng-bootstrap/ng-bootstrap";
|
|
import {TranslocoModule, TranslocoService} from "@ngneat/transloco";
|
|
|
|
@Component({
|
|
selector: 'app-list-item',
|
|
standalone: true,
|
|
imports: [CommonModule, ReadMoreComponent, ImageComponent, DownloadIndicatorComponent, EntityInfoCardsComponent, CardActionablesComponent, NgbProgressbar, NgbTooltip, TranslocoModule],
|
|
templateUrl: './list-item.component.html',
|
|
styleUrls: ['./list-item.component.scss'],
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class ListItemComponent implements OnInit {
|
|
|
|
/**
|
|
* Volume or Chapter to render
|
|
*/
|
|
@Input({required: true}) entity!: Volume | Chapter;
|
|
@Input({required: true}) libraryId!: number;
|
|
/**
|
|
* Image to show
|
|
*/
|
|
@Input() imageUrl: string = '';
|
|
/**
|
|
* Actions to show
|
|
*/
|
|
@Input() actions: ActionItem<any>[] = []; // Volume | Chapter
|
|
/**
|
|
* Library type to help with formatting title
|
|
*/
|
|
@Input() libraryType: LibraryType = LibraryType.Manga;
|
|
/**
|
|
* Name of the Series to show under the title
|
|
*/
|
|
@Input() seriesName: string = '';
|
|
|
|
/**
|
|
* Size of the Image Height. Defaults to 230px.
|
|
*/
|
|
@Input() imageHeight: string = '230px';
|
|
/**
|
|
* Size of the Image Width Defaults to 158px.
|
|
*/
|
|
@Input() imageWidth: string = '158px';
|
|
@Input() seriesLink: string = '';
|
|
|
|
@Input() pagesRead: number = 0;
|
|
@Input() totalPages: number = 0;
|
|
|
|
@Input() relation: RelationKind | undefined = undefined;
|
|
|
|
/**
|
|
* When generating the title, should this prepend 'Volume number' before the Chapter wording
|
|
*/
|
|
@Input() includeVolume: boolean = false;
|
|
/**
|
|
* Show's the title if available on entity
|
|
*/
|
|
@Input() showTitle: boolean = true;
|
|
/**
|
|
* Blur the summary for the list item
|
|
*/
|
|
@Input() blur: boolean = false;
|
|
|
|
@Output() read: EventEmitter<void> = new EventEmitter<void>();
|
|
private readonly destroyRef = inject(DestroyRef);
|
|
private readonly translocoService = inject(TranslocoService);
|
|
|
|
actionInProgress: boolean = false;
|
|
summary: string = '';
|
|
isChapter: boolean = false;
|
|
|
|
|
|
download$: Observable<DownloadEvent | null> | null = null;
|
|
downloadInProgress: boolean = false;
|
|
|
|
get Title() {
|
|
if (this.isChapter) return (this.entity as Chapter).titleName;
|
|
return '';
|
|
}
|
|
|
|
get ShowExtended() {
|
|
return this.utilityService.getActiveBreakpoint() === Breakpoint.Desktop;
|
|
}
|
|
|
|
protected readonly Breakpoint = Breakpoint;
|
|
|
|
|
|
constructor(public utilityService: UtilityService, private downloadService: DownloadService,
|
|
private toastr: ToastrService, private readonly cdRef: ChangeDetectorRef) { }
|
|
|
|
ngOnInit(): void {
|
|
this.isChapter = this.utilityService.isChapter(this.entity);
|
|
if (this.isChapter) {
|
|
this.summary = this.utilityService.asChapter(this.entity).summary || '';
|
|
} else {
|
|
this.summary = this.utilityService.asVolume(this.entity).chapters[0].summary || '';
|
|
}
|
|
|
|
this.cdRef.markForCheck();
|
|
|
|
|
|
this.download$ = this.downloadService.activeDownloads$.pipe(takeUntilDestroyed(this.destroyRef), map((events) => {
|
|
if(this.utilityService.isVolume(this.entity)) return events.find(e => e.entityType === 'volume' && e.subTitle === this.downloadService.downloadSubtitle('volume', (this.entity as Volume))) || null;
|
|
if(this.utilityService.isChapter(this.entity)) return events.find(e => e.entityType === 'chapter' && e.subTitle === this.downloadService.downloadSubtitle('chapter', (this.entity as Chapter))) || null;
|
|
return null;
|
|
}));
|
|
}
|
|
|
|
performAction(action: ActionItem<any>) {
|
|
if (action.action == Action.Download) {
|
|
if (this.downloadInProgress) {
|
|
this.toastr.info(this.translocoService.translate('toasts.download-in-progress'));
|
|
return;
|
|
}
|
|
|
|
const statusUpdate = (d: Download | undefined) => {
|
|
if (d) return;
|
|
this.downloadInProgress = false;
|
|
};
|
|
|
|
if (this.utilityService.isVolume(this.entity)) {
|
|
const volume = this.utilityService.asVolume(this.entity);
|
|
this.downloadService.download('volume', volume, statusUpdate);
|
|
} else if (this.utilityService.isChapter(this.entity)) {
|
|
const chapter = this.utilityService.asChapter(this.entity);
|
|
this.downloadService.download('chapter', chapter, statusUpdate);
|
|
}
|
|
return; // Don't propagate the download from a card
|
|
}
|
|
|
|
if (typeof action.callback === 'function') {
|
|
action.callback(action, this.entity);
|
|
}
|
|
}
|
|
}
|