mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-03 05:53:40 +01:00
46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
import { createContext, useState, useEffect, useMemo } from "react";
|
|
|
|
const getInitialTheme = () => {
|
|
if (typeof window !== "undefined" && window.localStorage) {
|
|
const storedPrefs = window.localStorage.getItem("theme-mode");
|
|
if (typeof storedPrefs === "string") {
|
|
return storedPrefs;
|
|
}
|
|
|
|
const userMedia = window.matchMedia("(prefers-color-scheme: dark)");
|
|
if (userMedia.matches) {
|
|
return "dark";
|
|
}
|
|
}
|
|
|
|
return "dark"; // dark as the default mode
|
|
};
|
|
|
|
export const ThemeContext = createContext();
|
|
|
|
export function ThemeProvider({ initialTheme, children }) {
|
|
const [theme, setTheme] = useState(getInitialTheme);
|
|
|
|
const rawSetTheme = (rawTheme) => {
|
|
const root = window.document.documentElement;
|
|
const isDark = rawTheme === "dark";
|
|
|
|
root.classList.remove(isDark ? "light" : "dark");
|
|
root.classList.add(rawTheme);
|
|
|
|
localStorage.setItem("theme-mode", rawTheme);
|
|
};
|
|
|
|
if (initialTheme) {
|
|
rawSetTheme(initialTheme);
|
|
}
|
|
|
|
useEffect(() => {
|
|
rawSetTheme(theme);
|
|
}, [theme]);
|
|
|
|
const value = useMemo(() => ({ theme, setTheme }), [theme]);
|
|
|
|
return <ThemeContext.Provider value={value}>{children}</ThemeContext.Provider>;
|
|
}
|