2021-12-12 23:55:58 +00:00
|
|
|
import { action, computed, makeAutoObservable, ObservableMap } from "mobx";
|
|
|
|
|
|
|
|
import { mapToRecord } from "../../lib/conversion";
|
|
|
|
|
2021-12-15 18:23:05 +00:00
|
|
|
import { Fonts, MonospaceFonts, Overrides } from "../../context/Theme";
|
2021-12-12 23:55:58 +00:00
|
|
|
|
2021-12-16 22:05:31 +00:00
|
|
|
import { EmojiPack } from "../../components/common/Emoji";
|
|
|
|
|
2021-12-12 23:55:58 +00:00
|
|
|
import Persistent from "../interfaces/Persistent";
|
|
|
|
import Store from "../interfaces/Store";
|
2021-12-16 22:05:31 +00:00
|
|
|
import SAudio, { SoundOptions } from "./helpers/SAudio";
|
2021-12-17 10:20:55 +00:00
|
|
|
import SSecurity from "./helpers/SSecurity";
|
2021-12-13 17:27:06 +00:00
|
|
|
import STheme from "./helpers/STheme";
|
2021-12-12 23:55:58 +00:00
|
|
|
|
|
|
|
interface ISettings {
|
|
|
|
"notifications:desktop": boolean;
|
|
|
|
"notifications:sounds": SoundOptions;
|
|
|
|
|
|
|
|
"appearance:emoji": EmojiPack;
|
|
|
|
"appearance:ligatures": boolean;
|
|
|
|
|
2021-12-13 17:27:06 +00:00
|
|
|
"appearance:theme:base": "dark" | "light";
|
|
|
|
"appearance:theme:overrides": Partial<Overrides>;
|
|
|
|
"appearance:theme:light": boolean;
|
|
|
|
"appearance:theme:font": Fonts;
|
|
|
|
"appearance:theme:monoFont": MonospaceFonts;
|
|
|
|
"appearance:theme:css": string;
|
2021-12-17 10:20:55 +00:00
|
|
|
|
|
|
|
"security:trustedOrigins": string[];
|
2021-12-13 17:27:06 +00:00
|
|
|
}
|
2021-12-12 23:55:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Manages user settings.
|
|
|
|
*/
|
|
|
|
export default class Settings implements Store, Persistent<ISettings> {
|
|
|
|
private data: ObservableMap<string, unknown>;
|
|
|
|
|
2021-12-13 17:27:06 +00:00
|
|
|
theme: STheme;
|
2021-12-16 22:05:31 +00:00
|
|
|
sounds: SAudio;
|
2021-12-17 10:20:55 +00:00
|
|
|
security: SSecurity;
|
2021-12-13 17:27:06 +00:00
|
|
|
|
2021-12-12 23:55:58 +00:00
|
|
|
/**
|
2021-12-13 17:27:06 +00:00
|
|
|
* Construct new Settings store.
|
2021-12-12 23:55:58 +00:00
|
|
|
*/
|
|
|
|
constructor() {
|
|
|
|
this.data = new ObservableMap();
|
|
|
|
makeAutoObservable(this);
|
2021-12-13 17:27:06 +00:00
|
|
|
|
|
|
|
this.theme = new STheme(this);
|
2021-12-16 22:05:31 +00:00
|
|
|
this.sounds = new SAudio(this);
|
2021-12-17 10:20:55 +00:00
|
|
|
this.security = new SSecurity(this);
|
2021-12-12 23:55:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get id() {
|
2021-12-13 17:27:06 +00:00
|
|
|
return "settings";
|
2021-12-12 23:55:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
toJSON() {
|
|
|
|
return JSON.parse(JSON.stringify(mapToRecord(this.data)));
|
|
|
|
}
|
|
|
|
|
|
|
|
@action hydrate(data: ISettings) {
|
|
|
|
Object.keys(data).forEach((key) =>
|
|
|
|
this.data.set(key, (data as any)[key]),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-12-13 17:27:06 +00:00
|
|
|
/**
|
|
|
|
* Set a settings key.
|
|
|
|
* @param key Colon-divided key
|
|
|
|
* @param value Value
|
|
|
|
*/
|
2021-12-12 23:55:58 +00:00
|
|
|
@action set<T extends keyof ISettings>(key: T, value: ISettings[T]) {
|
2021-12-13 17:27:06 +00:00
|
|
|
this.data.set(key, value);
|
2021-12-12 23:55:58 +00:00
|
|
|
}
|
|
|
|
|
2021-12-13 17:27:06 +00:00
|
|
|
/**
|
|
|
|
* Get a settings key.
|
|
|
|
* @param key Colon-divided key
|
|
|
|
* @returns Value at key
|
|
|
|
*/
|
2021-12-12 23:55:58 +00:00
|
|
|
@computed get<T extends keyof ISettings>(key: T) {
|
|
|
|
return this.data.get(key) as ISettings[T] | undefined;
|
|
|
|
}
|
|
|
|
|
2021-12-13 17:27:30 +00:00
|
|
|
@action remove<T extends keyof ISettings>(key: T) {
|
|
|
|
this.data.delete(key);
|
|
|
|
}
|
|
|
|
|
2021-12-13 17:27:06 +00:00
|
|
|
/**
|
|
|
|
* Set a value in settings without type-checking.
|
|
|
|
* @param key Colon-divided key
|
|
|
|
* @param value Value
|
|
|
|
*/
|
2021-12-12 23:55:58 +00:00
|
|
|
@action setUnchecked(key: string, value: unknown) {
|
2021-12-13 17:27:06 +00:00
|
|
|
this.data.set(key, value);
|
2021-12-12 23:55:58 +00:00
|
|
|
}
|
|
|
|
|
2021-12-13 17:27:06 +00:00
|
|
|
/**
|
|
|
|
* Get a settings key with unknown type.
|
|
|
|
* @param key Colon-divided key
|
|
|
|
* @returns Value at key
|
|
|
|
*/
|
2021-12-12 23:55:58 +00:00
|
|
|
@computed getUnchecked(key: string) {
|
|
|
|
return this.data.get(key);
|
|
|
|
}
|
|
|
|
}
|