diff options
Diffstat (limited to 'code/frontend/src/utils/global-state.ts')
| -rw-r--r-- | code/frontend/src/utils/global-state.ts | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/code/frontend/src/utils/global-state.ts b/code/frontend/src/utils/global-state.ts new file mode 100644 index 0000000..b585ced --- /dev/null +++ b/code/frontend/src/utils/global-state.ts @@ -0,0 +1,22 @@ +import { get } from "svelte/store"; +import { create_writable_persistent } from "./persistent-store"; + +const state = create_writable_persistent<any>({ + initialState: {}, + name: "global-state" +}); + +export type GlobalStateKeys = "isLoggedIn" | "showEmailValidatedAlertWhenLoggedIn" | "all"; + +export function fgs(key: GlobalStateKeys): any { + const value = get(state); + if (key === "all") return value; + return value[key]; +} + +export function sgs(key: GlobalStateKeys, value: any) { + if (key === "all") throw new Error("Not allowed to set global state key: all"); + const stateValue = get(state); + stateValue[key] = JSON.stringify(value) + state.set(stateValue); +}
\ No newline at end of file |
