mirror of https://github.com/jetkvm/kvm.git
56 lines
1.6 KiB
TypeScript
56 lines
1.6 KiB
TypeScript
import { useCallback, useState } from "react";
|
|
|
|
import { SettingsPageHeader } from "../components/SettingsPageheader";
|
|
import { SelectMenuBasic } from "../components/SelectMenuBasic";
|
|
|
|
import { SettingsItem } from "./devices.$id.settings";
|
|
|
|
export default function SettingsAppearanceRoute() {
|
|
const [currentTheme, setCurrentTheme] = useState(() => {
|
|
return localStorage.theme || "system";
|
|
});
|
|
|
|
const handleThemeChange = useCallback((value: string) => {
|
|
const root = document.documentElement;
|
|
|
|
if (value === "system") {
|
|
localStorage.removeItem("theme");
|
|
// Check system preference
|
|
const systemTheme = window.matchMedia("(prefers-color-scheme: dark)").matches
|
|
? "dark"
|
|
: "light";
|
|
root.classList.remove("light", "dark");
|
|
root.classList.add(systemTheme);
|
|
} else {
|
|
localStorage.theme = value;
|
|
root.classList.remove("light", "dark");
|
|
root.classList.add(value);
|
|
}
|
|
}, []);
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
<SettingsPageHeader
|
|
title="Appearance"
|
|
description="Customize the look and feel of your JetKVM interface"
|
|
/>
|
|
<SettingsItem title="Theme" description="Choose your preferred color theme">
|
|
<SelectMenuBasic
|
|
size="SM"
|
|
label=""
|
|
value={currentTheme}
|
|
options={[
|
|
{ value: "system", label: "System" },
|
|
{ value: "light", label: "Light" },
|
|
{ value: "dark", label: "Dark" },
|
|
]}
|
|
onChange={e => {
|
|
setCurrentTheme(e.target.value);
|
|
handleThemeChange(e.target.value);
|
|
}}
|
|
/>
|
|
</SettingsItem>
|
|
</div>
|
|
);
|
|
}
|