54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
import React, { createContext, useContext, useEffect, useState } from 'react';
|
|
|
|
type Theme = 'light' | 'dark';
|
|
|
|
interface ThemeContextType {
|
|
theme: Theme;
|
|
toggleTheme: () => void;
|
|
}
|
|
|
|
const ThemeContext = createContext<ThemeContextType | undefined>(undefined);
|
|
|
|
export const ThemeProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => {
|
|
const [theme, setTheme] = useState<Theme>(() => {
|
|
const savedTheme = localStorage.getItem('theme');
|
|
return (savedTheme as Theme) || 'light';
|
|
});
|
|
|
|
useEffect(() => {
|
|
console.log('Theme changed to:', theme);
|
|
localStorage.setItem('theme', theme);
|
|
|
|
// Update favicon
|
|
const link = document.querySelector("link[rel~='icon']") as HTMLLinkElement;
|
|
if (link) {
|
|
link.href = theme === 'dark' ? '/favicon-dark.svg' : '/favicon-light.svg';
|
|
}
|
|
|
|
if (theme === 'dark') {
|
|
document.documentElement.classList.add('dark');
|
|
console.log('Added dark class, classList:', document.documentElement.classList.toString());
|
|
} else {
|
|
document.documentElement.classList.remove('dark');
|
|
}
|
|
}, [theme]);
|
|
|
|
const toggleTheme = () => {
|
|
console.log('Toggling theme');
|
|
setTheme((prev) => (prev === 'light' ? 'dark' : 'light'));
|
|
};
|
|
|
|
return (
|
|
<ThemeContext.Provider value={{ theme, toggleTheme }}>
|
|
{children}
|
|
</ThemeContext.Provider>
|
|
);
|
|
};
|
|
|
|
export const useTheme = () => {
|
|
const context = useContext(ThemeContext);
|
|
if (context === undefined) {
|
|
throw new Error('useTheme must be used within a ThemeProvider');
|
|
}
|
|
return context;
|
|
}; |