2021-12-12 23:55:58 +00:00
|
|
|
import { action, computed, makeAutoObservable, ObservableMap } from "mobx";
|
|
|
|
|
|
|
|
import { mapToRecord } from "../../lib/conversion";
|
|
|
|
|
2021-12-13 17:27:06 +00:00
|
|
|
import { Fonts, MonospaceFonts, Overrides, Theme } from "../../context/Theme";
|
2021-12-12 23:55:58 +00:00
|
|
|
|
|
|
|
import { Sounds } from "../../assets/sounds/Audio";
|
|
|
|
import Persistent from "../interfaces/Persistent";
|
|
|
|
import Store from "../interfaces/Store";
|
2021-12-13 17:27:06 +00:00
|
|
|
import STheme from "./helpers/STheme";
|
2021-12-12 23:55:58 +00:00
|
|
|
|
|
|
|
export type SoundOptions = {
|
|
|
|
[key in Sounds]?: boolean;
|
|
|
|
};
|
|
|
|
|
|
|
|
export type EmojiPack = "mutant" | "twemoji" | "noto" | "openmoji";
|
|
|
|
|
|
|
|
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-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-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-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: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);
|
|
|
|
}
|
|
|
|
}
|