import { action, computed, makeAutoObservable, ObservableMap } from "mobx"; import { mapToRecord } from "../../lib/conversion"; import { Fonts, MonospaceFonts, Overrides } from "../../context/Theme"; import { EmojiPack } from "../../components/common/Emoji"; import Persistent from "../interfaces/Persistent"; import Store from "../interfaces/Store"; import SAudio, { SoundOptions } from "./helpers/SAudio"; import SSecurity from "./helpers/SSecurity"; import STheme from "./helpers/STheme"; interface ISettings { "notifications:desktop": boolean; "notifications:sounds": SoundOptions; "appearance:emoji": EmojiPack; "appearance:ligatures": boolean; "appearance:theme:base": "dark" | "light"; "appearance:theme:overrides": Partial; "appearance:theme:light": boolean; "appearance:theme:font": Fonts; "appearance:theme:monoFont": MonospaceFonts; "appearance:theme:css": string; "security:trustedOrigins": string[]; } /** * Manages user settings. */ export default class Settings implements Store, Persistent { private data: ObservableMap; theme: STheme; sounds: SAudio; security: SSecurity; /** * Construct new Settings store. */ constructor() { this.data = new ObservableMap(); makeAutoObservable(this); this.theme = new STheme(this); this.sounds = new SAudio(this); this.security = new SSecurity(this); } get id() { return "settings"; } 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]), ); } /** * Set a settings key. * @param key Colon-divided key * @param value Value */ @action set(key: T, value: ISettings[T]) { this.data.set(key, value); } /** * Get a settings key. * @param key Colon-divided key * @returns Value at key */ @computed get(key: T) { return this.data.get(key) as ISettings[T] | undefined; } @action remove(key: T) { this.data.delete(key); } /** * Set a value in settings without type-checking. * @param key Colon-divided key * @param value Value */ @action setUnchecked(key: string, value: unknown) { this.data.set(key, value); } /** * Get a settings key with unknown type. * @param key Colon-divided key * @returns Value at key */ @computed getUnchecked(key: string) { return this.data.get(key); } }