69 lines
1.8 KiB
TypeScript
69 lines
1.8 KiB
TypeScript
/*
|
|
* Vesktop, a desktop app aiming to give you a snappier Discord Experience
|
|
* Copyright (c) 2023 Vendicated and Vencord contributors
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
import { useEffect, useReducer } from "@vencord/types/webpack/common";
|
|
import { SettingsStore } from "shared/utils/SettingsStore";
|
|
|
|
import { VesktopLogger } from "./logger";
|
|
import { localStorage } from "./utils";
|
|
|
|
export const Settings = new SettingsStore(VesktopNative.settings.get());
|
|
Settings.addGlobalChangeListener((o, p) => VesktopNative.settings.set(o, p));
|
|
|
|
export function useSettings() {
|
|
const [, update] = useReducer(x => x + 1, 0);
|
|
|
|
useEffect(() => {
|
|
Settings.addGlobalChangeListener(update);
|
|
|
|
return () => Settings.removeGlobalChangeListener(update);
|
|
}, []);
|
|
|
|
return Settings.store;
|
|
}
|
|
|
|
export function getValueAndOnChange(key: keyof typeof Settings.store) {
|
|
return {
|
|
value: Settings.store[key] as any,
|
|
onChange: (value: any) => (Settings.store[key] = value)
|
|
};
|
|
}
|
|
|
|
interface TState {
|
|
screenshareQuality?: {
|
|
resolution: string;
|
|
frameRate: string;
|
|
};
|
|
}
|
|
|
|
const stateKey = "VesktopState";
|
|
|
|
const currentState: TState = (() => {
|
|
const stored = localStorage.getItem(stateKey);
|
|
if (!stored) return {};
|
|
try {
|
|
return JSON.parse(stored);
|
|
} catch (e) {
|
|
VesktopLogger.error("Failed to parse stored state", e);
|
|
return {};
|
|
}
|
|
})();
|
|
|
|
export const State = new SettingsStore<TState>(currentState);
|
|
State.addGlobalChangeListener((o, p) => localStorage.setItem(stateKey, JSON.stringify(o)));
|
|
|
|
export function useVesktopState() {
|
|
const [, update] = useReducer(x => x + 1, 0);
|
|
|
|
useEffect(() => {
|
|
State.addGlobalChangeListener(update);
|
|
|
|
return () => State.removeGlobalChangeListener(update);
|
|
}, []);
|
|
|
|
return State.store;
|
|
}
|