feat(audiobook): add language, format and publisher to details modal

This commit is contained in:
Orvanix
2026-03-14 17:45:31 +00:00
parent 850e777a81
commit 1abaff1677
3 changed files with 33 additions and 0 deletions
+3
View File
@@ -34,6 +34,9 @@ export interface Audiobook {
requestedByUsername?: string | null; // Username who requested (only if not current user)
hasReportedIssue?: boolean; // True if an open issue exists for this audiobook
isIgnored?: boolean; // True if this user has ignored this audiobook from auto-requests
language?: string;
formatType?: string;
publisherName?: string;
}
export function useAudiobooks(type: 'popular' | 'new-releases', limit: number = 20, page: number = 1, hideAvailable: boolean = false) {
+6
View File
@@ -50,6 +50,9 @@ export interface AudibleAudiobook {
series?: string;
seriesPart?: string;
seriesAsin?: string;
language?: string;
formatType?: string;
publisherName?: string;
}
export interface AudibleSearchResult {
@@ -774,6 +777,9 @@ export class AudibleService {
series: data.seriesPrimary?.name || undefined,
seriesPart: data.seriesPrimary?.position || undefined,
seriesAsin: data.seriesPrimary?.asin || undefined,
language: data.language || undefined,
formatType: data.formatType || undefined,
publisherName: data.publisherName || undefined,
};
// Ensure cover art URL is high quality