Spaces:
Running
Running
File size: 3,040 Bytes
e538a38 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
import { MantineProvider } from "@mantine/core";
import { Route, Switch } from "wouter";
import "@mantine/core/styles.css";
import { Notifications } from "@mantine/notifications";
import { usePubSub } from "create-pubsub/react";
import { lazy, useEffect, useState } from "react";
import { addLogEntry } from "../../modules/logEntries";
import { settingsPubSub } from "../../modules/pubSub";
import { defaultSettings } from "../../modules/settings";
import "@mantine/notifications/styles.css";
import { verifyStoredAccessKey } from "../../modules/accessKey";
const MainPage = lazy(() => import("../Pages/Main/MainPage"));
const AccessPage = lazy(() => import("../Pages/AccessPage"));
export function App() {
useInitializeSettings();
const { hasValidatedAccessKey, isCheckingStoredKey, setValidatedAccessKey } =
useAccessKeyValidation();
if (isCheckingStoredKey) {
return null;
}
return (
<MantineProvider defaultColorScheme="dark">
<Notifications />
<Switch>
<Route path="/">
{VITE_ACCESS_KEYS_ENABLED && !hasValidatedAccessKey ? (
<AccessPage onAccessKeyValid={() => setValidatedAccessKey(true)} />
) : (
<MainPage />
)}
</Route>
</Switch>
</MantineProvider>
);
}
/**
* A custom React hook that initializes the application settings.
*
* @returns The initialized settings object.
*
* @remarks
* This hook uses the `usePubSub` hook to access and update the settings state.
* It initializes the settings by merging the default settings with any existing settings.
* The initialization is performed once when the component mounts.
*/
function useInitializeSettings() {
const [settings, setSettings] = usePubSub(settingsPubSub);
const [state, setState] = useState({
settingsInitialized: false,
});
useEffect(() => {
if (state.settingsInitialized) return;
setSettings({ ...defaultSettings, ...settings });
setState({ settingsInitialized: true });
addLogEntry("Settings initialized");
}, [settings, setSettings, state.settingsInitialized]);
return settings;
}
/**
* A custom React hook that validates the stored access key on mount.
*
* @returns An object containing the validation state and loading state
*/
function useAccessKeyValidation() {
const [state, setState] = useState({
hasValidatedAccessKey: false,
isCheckingStoredKey: true,
});
useEffect(() => {
async function checkStoredAccessKey() {
if (VITE_ACCESS_KEYS_ENABLED) {
const isValid = await verifyStoredAccessKey();
if (isValid)
setState((prev) => ({ ...prev, hasValidatedAccessKey: true }));
}
setState((prev) => ({ ...prev, isCheckingStoredKey: false }));
}
checkStoredAccessKey();
}, []);
return {
hasValidatedAccessKey: state.hasValidatedAccessKey,
isCheckingStoredKey: state.isCheckingStoredKey,
setValidatedAccessKey: (value: boolean) =>
setState((prev) => ({ ...prev, hasValidatedAccessKey: value })),
};
}
|