diff --git a/src-ui/src/app/services/settings.service.ts b/src-ui/src/app/services/settings.service.ts index f19afb956..f624f953d 100644 --- a/src-ui/src/app/services/settings.service.ts +++ b/src-ui/src/app/services/settings.service.ts @@ -18,6 +18,7 @@ import { } from 'src/app/utils/color' import { environment } from 'src/environments/environment' import { Results } from '../data/results' +import { ToastService } from './toast.service' export interface PaperlessSettings { key: string @@ -146,7 +147,8 @@ export class SettingsService { private cookieService: CookieService, private meta: Meta, @Inject(LOCALE_ID) private localeId: string, - protected http: HttpClient + protected http: HttpClient, + private toastService: ToastService ) { this.renderer = rendererFactory.createRenderer(null, null) } @@ -156,6 +158,7 @@ export class SettingsService { let settings$ = this.http.get>(this.baseUrl) settings$.pipe(first()).subscribe((response) => { Object.assign(this.settings, response['settings']) + this.maybeMigrateSettings() }) return settings$ } @@ -447,4 +450,39 @@ export class SettingsService { storeSettings(): Observable { return this.http.post(this.baseUrl, { settings: this.settings }) } + + maybeMigrateSettings() { + if ( + !this.settings.hasOwnProperty('documentListSize') && + localStorage.getItem(SETTINGS_KEYS.DOCUMENT_LIST_SIZE) + ) { + // lets migrate + const successMessage = $localize`Successfully completed one-time migratration of settings to the database!` + const errorMessage = $localize`Unable to migrate settings to the database, please try saving manually.` + + try { + for (const setting in SETTINGS_KEYS) { + const key = SETTINGS_KEYS[setting] + const value = localStorage.getItem(key) + this.set(key, value) + } + } catch (error) { + this.toastService.showError(errorMessage) + console.log(error) + } + + this.storeSettings() + .pipe(first()) + .subscribe({ + next: () => { + this.updateAppearanceSettings() + this.toastService.showInfo(successMessage) + }, + error: (e) => { + this.toastService.showError(errorMessage) + console.log(e) + }, + }) + } + } }