The per-element color/box-shadow transition repainted the whole tree every frame (~5fps). Replaced with document.startViewTransition: the browser cross-fades one GPU-composited snapshot of the page — smooth regardless of element count. flushSync + useLayoutEffect ensure the data-theme flip is captured in the transition; instant fallback where unsupported / reduced-motion. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
73 lines
2.2 KiB
TypeScript
73 lines
2.2 KiB
TypeScript
import {
|
|
createContext,
|
|
useContext,
|
|
useState,
|
|
useLayoutEffect,
|
|
type ReactNode,
|
|
} from "react";
|
|
import { flushSync } from "react-dom";
|
|
|
|
interface ThemeContextValue {
|
|
theme: string;
|
|
toggleTheme: () => void;
|
|
}
|
|
|
|
const ThemeContext = createContext<ThemeContextValue | null>(null);
|
|
|
|
type ViewTransitionDocument = Document & {
|
|
startViewTransition?: (callback: () => void) => unknown;
|
|
};
|
|
|
|
export function ThemeProvider({ children }: { children: ReactNode }) {
|
|
const [theme, setTheme] = useState(() => {
|
|
if (typeof window !== "undefined") {
|
|
return localStorage.getItem("boha-theme") || "dark";
|
|
}
|
|
return "dark";
|
|
});
|
|
|
|
// Apply synchronously (layout effect) so the `data-theme` attribute flips
|
|
// inside the View Transition's flushSync below — letting the browser capture
|
|
// the "after" snapshot and cross-fade to it.
|
|
useLayoutEffect(() => {
|
|
document.documentElement.setAttribute("data-theme", theme);
|
|
localStorage.setItem("boha-theme", theme);
|
|
const themeColor = theme === "dark" ? "#12121a" : "#ffffff";
|
|
document
|
|
.querySelector('meta[name="theme-color"]')
|
|
?.setAttribute("content", themeColor);
|
|
}, [theme]);
|
|
|
|
const toggleTheme = () => {
|
|
const apply = () =>
|
|
setTheme((prev) => (prev === "dark" ? "light" : "dark"));
|
|
|
|
const doc = document as ViewTransitionDocument;
|
|
const reduceMotion =
|
|
typeof window !== "undefined" &&
|
|
!!window.matchMedia?.("(prefers-reduced-motion: reduce)").matches;
|
|
|
|
// View Transitions API: the browser cross-fades a GPU-composited snapshot of
|
|
// the whole page — smooth at any element count — instead of repainting every
|
|
// node's colors (which stutters). Falls back to an instant switch where the
|
|
// API is unavailable or the user prefers reduced motion.
|
|
if (doc.startViewTransition && !reduceMotion) {
|
|
doc.startViewTransition(() => flushSync(apply));
|
|
} else {
|
|
apply();
|
|
}
|
|
};
|
|
|
|
return (
|
|
<ThemeContext.Provider value={{ theme, toggleTheme }}>
|
|
{children}
|
|
</ThemeContext.Provider>
|
|
);
|
|
}
|
|
|
|
export function useTheme(): ThemeContextValue {
|
|
const context = useContext(ThemeContext);
|
|
if (!context) throw new Error("useTheme must be used within a ThemeProvider");
|
|
return context;
|
|
}
|