mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
Fix undefined api call Simplify some parts Better theme management Add color picker (dynamic themes wohoo) Add missing lists keys
47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
"use client";
|
|
|
|
import "beercss";
|
|
import "material-dynamic-colors";
|
|
import { NavigationRail } from "@/app/components/NavigationRail/NavigationRail";
|
|
import { setTheme, getTheme, setMode, getMode } from "./store/theme-store";
|
|
import { useEffect, useState } from "react";
|
|
import { ColorPicker } from "@/app/components/ColorPicker/ColorPicker";
|
|
|
|
export const App = (props) => {
|
|
const [colorPicker, setColorPicker] = useState(false);
|
|
|
|
const theme = async (from) => {
|
|
setTheme(from);
|
|
await ui("theme", from);
|
|
};
|
|
|
|
const mode = () => {
|
|
let newMode = ui("mode") == "dark" ? "light" : "dark";
|
|
setMode(newMode);
|
|
ui("mode", getMode());
|
|
};
|
|
|
|
useEffect(() => {
|
|
const mode = getMode();
|
|
const theme = getTheme();
|
|
if (mode != ui("mode")) {
|
|
ui("mode", getMode());
|
|
}
|
|
if (theme != ui("theme")) {
|
|
ui("theme", theme);
|
|
}
|
|
}, []);
|
|
|
|
return (
|
|
<body>
|
|
<NavigationRail
|
|
colorPicker={colorPicker}
|
|
setColorPicker={setColorPicker}
|
|
/>
|
|
<main className="responsive">
|
|
{colorPicker && <ColorPicker mode={mode} theme={theme} />}
|
|
{props.children}
|
|
</main>
|
|
</body>
|
|
);
|
|
};
|