Files
gitlab-instance-0a899031_cn…/app/context/ThemeContext.tsx
2026-03-09 01:44:13 -05:00

84 lines
1.9 KiB
TypeScript

"use client";
import {
createContext,
useContext,
useEffect,
useState,
useCallback,
type ReactNode,
} from "react";
const STORAGE_KEY = "theme";
export type Theme = "light" | "dark";
type ThemeContextValue = {
theme: Theme;
setTheme: (theme: Theme) => void;
toggleTheme: () => void;
};
const ThemeContext = createContext<ThemeContextValue | null>(null);
function getInitialTheme(): Theme {
if (typeof window === "undefined") return "light";
try {
const stored = localStorage.getItem(STORAGE_KEY) as Theme | null;
if (stored === "dark" || stored === "light") return stored;
if (window.matchMedia("(prefers-color-scheme: dark)").matches) return "dark";
} catch {
/* ignore */
}
return "light";
}
export function ThemeProvider({ children }: { children: ReactNode }) {
const [theme, setThemeState] = useState<Theme>("light");
const [mounted, setMounted] = useState(false);
useEffect(() => {
setThemeState(getInitialTheme());
setMounted(true);
}, []);
useEffect(() => {
if (!mounted) return;
const root = document.documentElement;
if (theme === "dark") {
root.classList.add("dark");
} else {
root.classList.remove("dark");
}
try {
localStorage.setItem(STORAGE_KEY, theme);
} catch {
/* ignore */
}
}, [theme, mounted]);
const setTheme = useCallback((newTheme: Theme) => {
setThemeState(newTheme);
}, []);
const toggleTheme = useCallback(() => {
setThemeState((prev) => (prev === "light" ? "dark" : "light"));
}, []);
const value: ThemeContextValue = {
theme,
setTheme,
toggleTheme,
};
return (
<ThemeContext.Provider value={value}>{children}</ThemeContext.Provider>
);
}
export function useTheme() {
const ctx = useContext(ThemeContext);
if (!ctx) throw new Error("useTheme must be used within ThemeProvider");
return ctx;
}