memos/web/src/App.tsx

85 lines
2.3 KiB
TypeScript
Raw Normal View History

import { useColorScheme } from "@mui/joy";
import { useEffect, Suspense } from "react";
2022-09-19 17:27:50 +03:00
import { useTranslation } from "react-i18next";
2022-09-19 16:53:27 +03:00
import { RouterProvider } from "react-router-dom";
import { globalService, locationService } from "./services";
2022-05-21 07:21:06 +03:00
import { useAppSelector } from "./store";
2022-09-19 16:53:27 +03:00
import router from "./router";
import * as storage from "./helpers/storage";
import { getSystemColorScheme } from "./helpers/utils";
import Loading from "./pages/Loading";
2021-12-08 18:43:52 +03:00
function App() {
2022-09-19 17:27:50 +03:00
const { i18n } = useTranslation();
const { appearance, locale, systemStatus } = useAppSelector((state) => state.global);
const { mode, setMode } = useColorScheme();
2021-12-08 18:43:52 +03:00
useEffect(() => {
locationService.updateStateWithLocation();
window.onpopstate = () => {
locationService.updateStateWithLocation();
};
2022-09-19 16:53:27 +03:00
}, []);
2022-08-27 03:57:29 +03:00
useEffect(() => {
window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change", (e) => {
if (globalService.getState().appearance === "system") {
const mode = e.matches ? "dark" : "light";
setMode(mode);
}
});
}, []);
// Inject additional style and script codes.
useEffect(() => {
if (systemStatus.additionalStyle) {
const styleEl = document.createElement("style");
styleEl.innerHTML = systemStatus.additionalStyle;
styleEl.setAttribute("type", "text/css");
document.head.appendChild(styleEl);
}
if (systemStatus.additionalScript) {
const scriptEl = document.createElement("script");
scriptEl.innerHTML = systemStatus.additionalScript;
document.head.appendChild(scriptEl);
}
}, [systemStatus]);
useEffect(() => {
i18n.changeLanguage(locale);
storage.set({
locale: locale,
});
}, [locale]);
useEffect(() => {
storage.set({
appearance: appearance,
});
let currentAppearance = appearance;
if (appearance === "system") {
currentAppearance = getSystemColorScheme();
}
setMode(currentAppearance);
}, [appearance]);
useEffect(() => {
const root = document.documentElement;
if (mode === "light") {
root.classList.remove("dark");
} else if (mode === "dark") {
root.classList.add("dark");
}
}, [mode]);
return (
2022-11-30 15:34:16 +03:00
<Suspense fallback={<Loading />}>
<RouterProvider router={router} />
</Suspense>
);
2021-12-08 18:43:52 +03:00
}
export default App;