mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 02:45:54 +01:00
96 lines
2.4 KiB
TypeScript
96 lines
2.4 KiB
TypeScript
import { OptionNames } from "@triliumnext/commons";
|
|
import server from "./server.js";
|
|
import { isShare } from "./utils.js";
|
|
|
|
export type OptionValue = number | string;
|
|
|
|
class Options {
|
|
initializedPromise: Promise<void>;
|
|
private arr!: Record<string, OptionValue>;
|
|
|
|
constructor() {
|
|
if (!isShare) {
|
|
this.initializedPromise = server.get<Record<string, OptionValue>>("options").then((data) => this.load(data));
|
|
} else {
|
|
this.initializedPromise = Promise.resolve();
|
|
}
|
|
}
|
|
|
|
load(arr: Record<string, OptionValue>) {
|
|
this.arr = arr;
|
|
}
|
|
|
|
get(key: OptionNames) {
|
|
return this.arr?.[key] as string;
|
|
}
|
|
|
|
getNames() {
|
|
return Object.keys(this.arr || []);
|
|
}
|
|
|
|
getJson(key: string) {
|
|
const value = this.arr?.[key];
|
|
if (typeof value !== "string") {
|
|
return null;
|
|
}
|
|
try {
|
|
return JSON.parse(value);
|
|
} catch (e) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
getInt(key: OptionNames) {
|
|
const value = this.arr?.[key];
|
|
if (typeof value === "number") {
|
|
return value;
|
|
}
|
|
if (typeof value == "string") {
|
|
return parseInt(value);
|
|
}
|
|
console.warn("Attempting to read int for unsupported value: ", value);
|
|
return null;
|
|
}
|
|
|
|
getFloat(key: OptionNames) {
|
|
const value = this.arr?.[key];
|
|
if (typeof value !== "string") {
|
|
return null;
|
|
}
|
|
return parseFloat(value);
|
|
}
|
|
|
|
is(key: OptionNames) {
|
|
return this.arr[key] === "true";
|
|
}
|
|
|
|
set(key: OptionNames, value: OptionValue) {
|
|
this.arr[key] = value;
|
|
}
|
|
|
|
async save(key: OptionNames, value: OptionValue) {
|
|
this.set(key, value);
|
|
|
|
const payload: Record<string, OptionValue> = {};
|
|
payload[key] = value;
|
|
|
|
await server.put(`options`, payload);
|
|
}
|
|
|
|
/**
|
|
* Saves multiple options at once, by supplying a record where the keys are the option names and the values represent the stringified value to set.
|
|
* @param newValues the record of keys and values.
|
|
*/
|
|
async saveMany<T extends OptionNames>(newValues: Record<T, OptionValue>) {
|
|
await server.put<void>("options", newValues);
|
|
}
|
|
|
|
async toggle(key: OptionNames) {
|
|
await this.save(key, (!this.is(key)).toString());
|
|
}
|
|
}
|
|
|
|
const options = new Options();
|
|
|
|
export default options;
|