Skip to content
Snippets Groups Projects
app-setup.service.ts 6.06 KiB
Newer Older
import { HttpService } from "../http/http.service";
mathias.chouet's avatar
mathias.chouet committed
import { Injectable, Inject } from "@angular/core";
mathias.chouet's avatar
mathias.chouet committed
import { StorageService, LOCAL_STORAGE } from "ngx-webstorage-service";
/**
 * Stores app preferences
 */
@Injectable()
export class ApplicationSetupService extends Observable {
    private CONFIG_FILE_PATH = "app/config.json";
mathias.chouet's avatar
mathias.chouet committed
    private LOCAL_STORAGE_PREFIX = "nghyd_";
    /** ultimate fallback language (read from config) */
    private _fallbackLanguage = "fr";

    // default builtin values
    public displayPrecision = 3;
    public computePrecision = 0.0001;
    public newtonMaxIterations = 50;
mathias.chouet's avatar
mathias.chouet committed
    public enableNotifications = true;
    public enableHotkeys = false;
mathias.chouet's avatar
mathias.chouet committed

mathias.chouet's avatar
mathias.chouet committed
    /**
     * just stores the current language preference, does not transmit it to I18nService, that is
     * not available here.
     *
     * @see ApplicationSetupComponent.currentLanguageCode() setter
     * @see I18nService.update() observer
     */
    public language = "fr";
    /** themes to group calculators, for displaying on the front page */
    public themes: any[];

    public warnBeforeTabClose: boolean;

    public constructor(
mathias.chouet's avatar
mathias.chouet committed
        private httpService: HttpService,
        @Inject(LOCAL_STORAGE) private storage: StorageService
mathias.chouet's avatar
mathias.chouet committed
        // precedence: builtin values >> JSON config >> browser's language >> local storage
        const builtinLanguage = this.language;

        // related to @HostListener("window:beforeunload") in AppComponent
        this.warnBeforeTabClose = true;

mathias.chouet's avatar
mathias.chouet committed
        // load JSON config
        this.readValuesFromConfig().then((data) => {
            const configLanguage = this.language;
            this._fallbackLanguage = configLanguage;
mathias.chouet's avatar
mathias.chouet committed

            // guess browser's language
            this.language = navigator.language;
mathias.chouet's avatar
mathias.chouet committed
            const browserLanguage = this.language;

            // load saved preferences
            const loadedPrefKeys = this.readValuesFromLocalStorage();
            let storageLanguage: string;
            if (loadedPrefKeys.includes("language")) {
                storageLanguage = this.language;
            }

            // notify I18nService
            this.notifyObservers({
                action: "languagePreferenceChanged",
                languages: [ storageLanguage, browserLanguage, configLanguage, builtinLanguage ]
            });
        });
        return this.displayPrecision;
    public get fallbackLanguage() {
        return this._fallbackLanguage;
    }

mathias.chouet's avatar
mathias.chouet committed
    /**
     * Save configuration values into local storage
     */
    public saveValuesIntoLocalStorage() {
        this.storage.set(this.LOCAL_STORAGE_PREFIX + "displayPrecision", this.displayPrecision);
        this.storage.set(this.LOCAL_STORAGE_PREFIX + "computePrecision", this.computePrecision);
        this.storage.set(this.LOCAL_STORAGE_PREFIX + "newtonMaxIterations", this.newtonMaxIterations);
mathias.chouet's avatar
mathias.chouet committed
        this.storage.set(this.LOCAL_STORAGE_PREFIX + "enableNotifications", this.enableNotifications);
        this.storage.set(this.LOCAL_STORAGE_PREFIX + "enableHotkeys", this.enableHotkeys);
mathias.chouet's avatar
mathias.chouet committed
        this.storage.set(this.LOCAL_STORAGE_PREFIX + "language", this.language);
mathias.chouet's avatar
mathias.chouet committed
    /**
     * Restore configuration values
     */
    public restoreDefaultValues(): Promise<any> {
        return this.readValuesFromConfig().then(() => {
            // notify I18nService
            this.notifyObservers({
                action: "languagePreferenceChanged",
                languages: [ this.language ]
            });
        });
mathias.chouet's avatar
mathias.chouet committed
    /**
     * Read configuration values from local storage
     */
    private readValuesFromLocalStorage(): string[] {
        const loadedKeys = [];
        // get all config values (volontarily non-generic to prevent side-effects)
        const displayPrecision = this.storage.get(this.LOCAL_STORAGE_PREFIX + "displayPrecision");
        if (displayPrecision !== undefined) {
            this.displayPrecision = displayPrecision;
            loadedKeys.push("displayPrecision");
        }
        const computePrecision = this.storage.get(this.LOCAL_STORAGE_PREFIX + "computePrecision");
        if (computePrecision !== undefined) {
            this.computePrecision = computePrecision;
            loadedKeys.push("computePrecision");
        }
        const newtonMaxIterations = this.storage.get(this.LOCAL_STORAGE_PREFIX + "newtonMaxIterations");
        if (newtonMaxIterations !== undefined) {
            this.newtonMaxIterations = newtonMaxIterations;
            loadedKeys.push("newtonMaxIterations");
        }
mathias.chouet's avatar
mathias.chouet committed
        const enableNotifications = this.storage.get(this.LOCAL_STORAGE_PREFIX + "enableNotifications");
        if (enableNotifications !== undefined) {
            this.enableNotifications = enableNotifications;
            loadedKeys.push("enableNotifications");
        }
        const enableHotkeys = this.storage.get(this.LOCAL_STORAGE_PREFIX + "enableHotkeys");
        if (enableHotkeys !== undefined) {
            this.enableHotkeys = enableHotkeys;
            loadedKeys.push("enableHotkeys");
        }
mathias.chouet's avatar
mathias.chouet committed
        const language = this.storage.get(this.LOCAL_STORAGE_PREFIX + "language");
        if (language !== undefined) {
            this.language = language;
            loadedKeys.push("language");
        }
        return loadedKeys;
    }
mathias.chouet's avatar
mathias.chouet committed
    /**
     * Read configuration values from config (async)
     */
    private readValuesFromConfig(): Promise<any> {
        return this.httpService.httpGetRequestPromise(this.CONFIG_FILE_PATH).then((data: any) => {
            // get all config values (volontarily non-generic to prevent side-effects)
            this.displayPrecision = data.params.displayPrecision;
            this.computePrecision = data.params.computePrecision;
            this.newtonMaxIterations = data.params.newtonMaxIterations;
mathias.chouet's avatar
mathias.chouet committed
            this.enableNotifications = data.params.enableNotifications;
            this.enableHotkeys = data.params.enableHotkeys;
            this.language = data.params.language;
mathias.chouet's avatar
mathias.chouet committed
            // load themes for calculators list page
            this.themes = data.themes;
        });
    }