Newer
Older
import { HttpService } from "../http/http.service";
mathias.chouet
committed
import { Observable } from "jalhyd";
import { StorageService, LOCAL_STORAGE } from "ngx-webstorage-service";
mathias.chouet
committed
export class ApplicationSetupService extends Observable {
/** ultimate fallback language (read from config) */
private _fallbackLanguage = "fr";
public displayPrecision = 3;
/**
* 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;
private httpService: HttpService,
@Inject(LOCAL_STORAGE) private storage: StorageService
mathias.chouet
committed
super();
// precedence: builtin values >> JSON config >> browser's language >> local storage
const builtinLanguage = this.language;
// related to @HostListener("window:beforeunload") in AppComponent
this.warnBeforeTabClose = true;
// load JSON config
this.readValuesFromConfig().then((data) => {
const configLanguage = this.language;
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 ]
});
});
public get displayDigits() {
return this.displayPrecision;
francois.grand
committed
}
public get fallbackLanguage() {
return this._fallbackLanguage;
}
/**
* 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);
this.storage.set(this.LOCAL_STORAGE_PREFIX + "enableNotifications", this.enableNotifications);
this.storage.set(this.LOCAL_STORAGE_PREFIX + "enableHotkeys", this.enableHotkeys);
this.storage.set(this.LOCAL_STORAGE_PREFIX + "language", this.language);
/**
* Restore configuration values
*/
public restoreDefaultValues(): Promise<any> {
return this.readValuesFromConfig().then(() => {
// notify I18nService
this.notifyObservers({
action: "languagePreferenceChanged",
languages: [ this.language ]
});
});
/**
* 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");
}
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");
}
const language = this.storage.get(this.LOCAL_STORAGE_PREFIX + "language");
if (language !== undefined) {
this.language = language;
loadedKeys.push("language");
}
return loadedKeys;
}
/**
* 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;
this.enableHotkeys = data.params.enableHotkeys;