
* Removed extra trace messages as the people issue might have been resolved. * When registering, disable button until form is valid. Allow non-email formatted emails, but not blank. * Fixed opds not having http(s):// * Added a new API to allow scanning all libraries from end point * Moved Bookmarks directory to Media tab * Fixed an edge case for finding next chapter when we had volume 1,2 etc but they had the same chapter number. * Code cleanup
271 lines
13 KiB
TypeScript
271 lines
13 KiB
TypeScript
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core';
|
|
import { FormControl, FormGroup } from '@angular/forms';
|
|
import { ToastrService } from 'ngx-toastr';
|
|
import { take, takeUntil } from 'rxjs/operators';
|
|
import { Title } from '@angular/platform-browser';
|
|
import {
|
|
readingDirections,
|
|
scalingOptions,
|
|
pageSplitOptions,
|
|
readingModes,
|
|
Preferences,
|
|
bookLayoutModes,
|
|
layoutModes,
|
|
pageLayoutModes,
|
|
bookWritingStyles
|
|
} from 'src/app/_models/preferences/preferences';
|
|
import { User } from 'src/app/_models/user';
|
|
import { AccountService } from 'src/app/_services/account.service';
|
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
import { SettingsService } from 'src/app/admin/settings.service';
|
|
import { BookPageLayoutMode } from 'src/app/_models/readers/book-page-layout-mode';
|
|
import { forkJoin, Subject } from 'rxjs';
|
|
import { bookColorThemes } from 'src/app/book-reader/_components/reader-settings/reader-settings.component';
|
|
import { BookService } from 'src/app/book-reader/_services/book.service';
|
|
import { environment } from 'src/environments/environment';
|
|
|
|
enum AccordionPanelID {
|
|
ImageReader = 'image-reader',
|
|
BookReader = 'book-reader',
|
|
GlobalSettings = 'global-settings'
|
|
}
|
|
|
|
enum FragmentID {
|
|
Account = 'account',
|
|
Prefernces = '',
|
|
Clients = 'clients',
|
|
Theme = 'theme',
|
|
Devices = 'devices',
|
|
Stats = 'stats',
|
|
|
|
}
|
|
|
|
@Component({
|
|
selector: 'app-user-preferences',
|
|
templateUrl: './user-preferences.component.html',
|
|
styleUrls: ['./user-preferences.component.scss'],
|
|
changeDetection: ChangeDetectionStrategy.OnPush
|
|
})
|
|
export class UserPreferencesComponent implements OnInit, OnDestroy {
|
|
|
|
readingDirections = readingDirections;
|
|
scalingOptions = scalingOptions;
|
|
pageSplitOptions = pageSplitOptions;
|
|
readingModes = readingModes;
|
|
layoutModes = layoutModes;
|
|
bookLayoutModes = bookLayoutModes;
|
|
bookColorThemes = bookColorThemes;
|
|
pageLayoutModes = pageLayoutModes;
|
|
bookWritingStyles = bookWritingStyles;
|
|
|
|
settingsForm: FormGroup = new FormGroup({});
|
|
user: User | undefined = undefined;
|
|
|
|
passwordsMatch = false;
|
|
resetPasswordErrors: string[] = [];
|
|
|
|
observableHandles: Array<any> = [];
|
|
fontFamilies: Array<string> = [];
|
|
|
|
tabs: Array<{title: string, fragment: string}> = [
|
|
{title: 'Account', fragment: FragmentID.Account},
|
|
{title: 'Preferences', fragment: FragmentID.Prefernces},
|
|
{title: '3rd Party Clients', fragment: FragmentID.Clients},
|
|
{title: 'Theme', fragment: FragmentID.Theme},
|
|
{title: 'Devices', fragment: FragmentID.Devices},
|
|
{title: 'Stats', fragment: FragmentID.Stats},
|
|
];
|
|
active = this.tabs[1];
|
|
opdsEnabled: boolean = false;
|
|
baseUrl: string = '';
|
|
makeUrl: (val: string) => string = (val: string) => {return this.transformKeyToOpdsUrl(val)};
|
|
|
|
private onDestroy = new Subject<void>();
|
|
|
|
get AccordionPanelID() {
|
|
return AccordionPanelID;
|
|
}
|
|
|
|
get FragmentID() {
|
|
return FragmentID;
|
|
}
|
|
|
|
|
|
constructor(private accountService: AccountService, private toastr: ToastrService, private bookService: BookService,
|
|
private titleService: Title, private route: ActivatedRoute, private settingsService: SettingsService,
|
|
private router: Router, private readonly cdRef: ChangeDetectorRef) {
|
|
this.fontFamilies = this.bookService.getFontFamilies().map(f => f.title);
|
|
this.cdRef.markForCheck();
|
|
|
|
this.route.fragment.subscribe(frag => {
|
|
const tab = this.tabs.filter(item => item.fragment === frag);
|
|
if (tab.length > 0) {
|
|
this.active = tab[0];
|
|
} else {
|
|
this.active = this.tabs[1]; // Default to preferences
|
|
}
|
|
this.cdRef.markForCheck();
|
|
});
|
|
|
|
this.settingsService.getServerSettings().subscribe(settings => this.baseUrl = settings.baseUrl);
|
|
|
|
this.settingsService.getOpdsEnabled().subscribe(res => {
|
|
this.opdsEnabled = res;
|
|
this.cdRef.markForCheck();
|
|
});
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
this.titleService.setTitle('Kavita - User Preferences');
|
|
|
|
forkJoin({
|
|
user: this.accountService.currentUser$.pipe(take(1)),
|
|
pref: this.accountService.getPreferences()
|
|
}).subscribe(results => {
|
|
if (results.user === undefined) {
|
|
this.router.navigateByUrl('/login');
|
|
return;
|
|
}
|
|
|
|
this.user = results.user;
|
|
this.user.preferences = results.pref;
|
|
|
|
if (this.fontFamilies.indexOf(this.user.preferences.bookReaderFontFamily) < 0) {
|
|
this.user.preferences.bookReaderFontFamily = 'default';
|
|
}
|
|
|
|
this.settingsForm.addControl('readingDirection', new FormControl(this.user.preferences.readingDirection, []));
|
|
this.settingsForm.addControl('scalingOption', new FormControl(this.user.preferences.scalingOption, []));
|
|
this.settingsForm.addControl('pageSplitOption', new FormControl(this.user.preferences.pageSplitOption, []));
|
|
this.settingsForm.addControl('autoCloseMenu', new FormControl(this.user.preferences.autoCloseMenu, []));
|
|
this.settingsForm.addControl('showScreenHints', new FormControl(this.user.preferences.showScreenHints, []));
|
|
this.settingsForm.addControl('readerMode', new FormControl(this.user.preferences.readerMode, []));
|
|
this.settingsForm.addControl('layoutMode', new FormControl(this.user.preferences.layoutMode, []));
|
|
this.settingsForm.addControl('emulateBook', new FormControl(this.user.preferences.emulateBook, []));
|
|
this.settingsForm.addControl('swipeToPaginate', new FormControl(this.user.preferences.swipeToPaginate, []));
|
|
|
|
this.settingsForm.addControl('bookReaderFontFamily', new FormControl(this.user.preferences.bookReaderFontFamily, []));
|
|
this.settingsForm.addControl('bookReaderFontSize', new FormControl(this.user.preferences.bookReaderFontSize, []));
|
|
this.settingsForm.addControl('bookReaderLineSpacing', new FormControl(this.user.preferences.bookReaderLineSpacing, []));
|
|
this.settingsForm.addControl('bookReaderMargin', new FormControl(this.user.preferences.bookReaderMargin, []));
|
|
this.settingsForm.addControl('bookReaderReadingDirection', new FormControl(this.user.preferences.bookReaderReadingDirection, []));
|
|
this.settingsForm.addControl('bookReaderWritingStyle', new FormControl(this.user.preferences.bookReaderWritingStyle, []))
|
|
this.settingsForm.addControl('bookReaderTapToPaginate', new FormControl(!!this.user.preferences.bookReaderTapToPaginate, []));
|
|
this.settingsForm.addControl('bookReaderLayoutMode', new FormControl(this.user.preferences.bookReaderLayoutMode || BookPageLayoutMode.Default, []));
|
|
this.settingsForm.addControl('bookReaderThemeName', new FormControl(this.user?.preferences.bookReaderThemeName || bookColorThemes[0].name, []));
|
|
this.settingsForm.addControl('bookReaderImmersiveMode', new FormControl(this.user?.preferences.bookReaderImmersiveMode, []));
|
|
|
|
this.settingsForm.addControl('theme', new FormControl(this.user.preferences.theme, []));
|
|
this.settingsForm.addControl('globalPageLayoutMode', new FormControl(this.user.preferences.globalPageLayoutMode, []));
|
|
this.settingsForm.addControl('blurUnreadSummaries', new FormControl(this.user.preferences.blurUnreadSummaries, []));
|
|
this.settingsForm.addControl('promptForDownloadSize', new FormControl(this.user.preferences.promptForDownloadSize, []));
|
|
this.settingsForm.addControl('noTransitions', new FormControl(this.user.preferences.noTransitions, []));
|
|
this.settingsForm.addControl('collapseSeriesRelationships', new FormControl(this.user.preferences.collapseSeriesRelationships, []));
|
|
|
|
this.cdRef.markForCheck();
|
|
});
|
|
|
|
this.settingsForm.get('bookReaderImmersiveMode')?.valueChanges.pipe(takeUntil(this.onDestroy)).subscribe(mode => {
|
|
if (mode) {
|
|
this.settingsForm.get('bookReaderTapToPaginate')?.setValue(true);
|
|
this.cdRef.markForCheck();
|
|
}
|
|
});
|
|
this.cdRef.markForCheck();
|
|
}
|
|
|
|
ngOnDestroy() {
|
|
this.observableHandles.forEach(o => o.unsubscribe());
|
|
this.onDestroy.next();
|
|
this.onDestroy.complete();
|
|
}
|
|
|
|
|
|
resetForm() {
|
|
if (this.user === undefined) { return; }
|
|
this.settingsForm.get('readingDirection')?.setValue(this.user.preferences.readingDirection);
|
|
this.settingsForm.get('scalingOption')?.setValue(this.user.preferences.scalingOption);
|
|
this.settingsForm.get('autoCloseMenu')?.setValue(this.user.preferences.autoCloseMenu);
|
|
this.settingsForm.get('showScreenHints')?.setValue(this.user.preferences.showScreenHints);
|
|
this.settingsForm.get('readerMode')?.setValue(this.user.preferences.readerMode);
|
|
this.settingsForm.get('layoutMode')?.setValue(this.user.preferences.layoutMode);
|
|
this.settingsForm.get('pageSplitOption')?.setValue(this.user.preferences.pageSplitOption);
|
|
this.settingsForm.get('bookReaderFontFamily')?.setValue(this.user.preferences.bookReaderFontFamily);
|
|
this.settingsForm.get('bookReaderFontSize')?.setValue(this.user.preferences.bookReaderFontSize);
|
|
this.settingsForm.get('bookReaderLineSpacing')?.setValue(this.user.preferences.bookReaderLineSpacing);
|
|
this.settingsForm.get('bookReaderMargin')?.setValue(this.user.preferences.bookReaderMargin);
|
|
this.settingsForm.get('bookReaderTapToPaginate')?.setValue(this.user.preferences.bookReaderTapToPaginate);
|
|
this.settingsForm.get('bookReaderReadingDirection')?.setValue(this.user.preferences.bookReaderReadingDirection);
|
|
this.settingsForm.get('bookReaderWritingStyle')?.setValue(this.user.preferences.bookReaderWritingStyle);
|
|
this.settingsForm.get('bookReaderLayoutMode')?.setValue(this.user.preferences.bookReaderLayoutMode);
|
|
this.settingsForm.get('bookReaderThemeName')?.setValue(this.user.preferences.bookReaderThemeName);
|
|
this.settingsForm.get('theme')?.setValue(this.user.preferences.theme);
|
|
this.settingsForm.get('bookReaderImmersiveMode')?.setValue(this.user.preferences.bookReaderImmersiveMode);
|
|
this.settingsForm.get('globalPageLayoutMode')?.setValue(this.user.preferences.globalPageLayoutMode);
|
|
this.settingsForm.get('blurUnreadSummaries')?.setValue(this.user.preferences.blurUnreadSummaries);
|
|
this.settingsForm.get('promptForDownloadSize')?.setValue(this.user.preferences.promptForDownloadSize);
|
|
this.settingsForm.get('noTransitions')?.setValue(this.user.preferences.noTransitions);
|
|
this.settingsForm.get('emulateBook')?.setValue(this.user.preferences.emulateBook);
|
|
this.settingsForm.get('swipeToPaginate')?.setValue(this.user.preferences.swipeToPaginate);
|
|
this.settingsForm.get('collapseSeriesRelationships')?.setValue(this.user.preferences.collapseSeriesRelationships);
|
|
this.cdRef.markForCheck();
|
|
this.settingsForm.markAsPristine();
|
|
}
|
|
|
|
save() {
|
|
if (this.user === undefined) return;
|
|
const modelSettings = this.settingsForm.value;
|
|
const data: Preferences = {
|
|
readingDirection: parseInt(modelSettings.readingDirection, 10),
|
|
scalingOption: parseInt(modelSettings.scalingOption, 10),
|
|
pageSplitOption: parseInt(modelSettings.pageSplitOption, 10),
|
|
autoCloseMenu: modelSettings.autoCloseMenu,
|
|
readerMode: parseInt(modelSettings.readerMode, 10),
|
|
layoutMode: parseInt(modelSettings.layoutMode, 10),
|
|
showScreenHints: modelSettings.showScreenHints,
|
|
backgroundColor: this.user.preferences.backgroundColor,
|
|
bookReaderFontFamily: modelSettings.bookReaderFontFamily,
|
|
bookReaderLineSpacing: modelSettings.bookReaderLineSpacing,
|
|
bookReaderFontSize: modelSettings.bookReaderFontSize,
|
|
bookReaderMargin: modelSettings.bookReaderMargin,
|
|
bookReaderTapToPaginate: modelSettings.bookReaderTapToPaginate,
|
|
bookReaderReadingDirection: parseInt(modelSettings.bookReaderReadingDirection, 10),
|
|
bookReaderWritingStyle: parseInt(modelSettings.bookReaderWritingStyle, 10),
|
|
bookReaderLayoutMode: parseInt(modelSettings.bookReaderLayoutMode, 10),
|
|
bookReaderThemeName: modelSettings.bookReaderThemeName,
|
|
theme: modelSettings.theme,
|
|
bookReaderImmersiveMode: modelSettings.bookReaderImmersiveMode,
|
|
globalPageLayoutMode: parseInt(modelSettings.globalPageLayoutMode, 10),
|
|
blurUnreadSummaries: modelSettings.blurUnreadSummaries,
|
|
promptForDownloadSize: modelSettings.promptForDownloadSize,
|
|
noTransitions: modelSettings.noTransitions,
|
|
emulateBook: modelSettings.emulateBook,
|
|
swipeToPaginate: modelSettings.swipeToPaginate,
|
|
collapseSeriesRelationships: modelSettings.collapseSeriesRelationships
|
|
};
|
|
|
|
this.observableHandles.push(this.accountService.updatePreferences(data).subscribe((updatedPrefs) => {
|
|
this.toastr.success('User preferences updated');
|
|
if (this.user) {
|
|
this.user.preferences = updatedPrefs;
|
|
this.cdRef.markForCheck();
|
|
}
|
|
this.resetForm();
|
|
}));
|
|
}
|
|
|
|
|
|
transformKeyToOpdsUrl(key: string) {
|
|
if (environment.production) {
|
|
return `${location.origin}` + `${this.baseUrl}${environment.apiUrl}opds/${key}`.replace('//', '/');
|
|
}
|
|
|
|
return `${location.origin}${this.baseUrl.replace('//', '/')}api/opds/${key}`;
|
|
}
|
|
|
|
handleBackgroundColorChange() {
|
|
this.settingsForm.markAsDirty();
|
|
this.settingsForm.markAsTouched();
|
|
this.cdRef.markForCheck();
|
|
}
|
|
}
|