Services: Admin-Lehrer, Backend-Lehrer, Studio v2, Website, Klausur-Service, School-Service, Voice-Service, Geo-Service, BreakPilot Drive, Agent-Core Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
72 lines
1.6 KiB
TypeScript
72 lines
1.6 KiB
TypeScript
'use client'
|
|
|
|
import { createContext, useContext, useState, useEffect, ReactNode } from 'react'
|
|
|
|
type Theme = 'dark' | 'light'
|
|
|
|
interface ThemeContextType {
|
|
theme: Theme
|
|
toggleTheme: () => void
|
|
isDark: boolean
|
|
}
|
|
|
|
const ThemeContext = createContext<ThemeContextType | null>(null)
|
|
|
|
const STORAGE_KEY = 'bp_theme'
|
|
|
|
export function ThemeProvider({ children }: { children: ReactNode }) {
|
|
const [theme, setTheme] = useState<Theme>('dark')
|
|
const [mounted, setMounted] = useState(false)
|
|
|
|
// Nach dem ersten Render: Theme aus localStorage laden
|
|
useEffect(() => {
|
|
const stored = localStorage.getItem(STORAGE_KEY) as Theme | null
|
|
if (stored && (stored === 'dark' || stored === 'light')) {
|
|
setTheme(stored)
|
|
}
|
|
setMounted(true)
|
|
}, [])
|
|
|
|
// Theme wechseln und speichern
|
|
const toggleTheme = () => {
|
|
const newTheme = theme === 'dark' ? 'light' : 'dark'
|
|
setTheme(newTheme)
|
|
localStorage.setItem(STORAGE_KEY, newTheme)
|
|
}
|
|
|
|
// Waehrend SSR: Default anzeigen
|
|
if (!mounted) {
|
|
return (
|
|
<ThemeContext.Provider
|
|
value={{
|
|
theme: 'dark',
|
|
toggleTheme: () => {},
|
|
isDark: true,
|
|
}}
|
|
>
|
|
{children}
|
|
</ThemeContext.Provider>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<ThemeContext.Provider
|
|
value={{
|
|
theme,
|
|
toggleTheme,
|
|
isDark: theme === 'dark',
|
|
}}
|
|
>
|
|
{children}
|
|
</ThemeContext.Provider>
|
|
)
|
|
}
|
|
|
|
export function useTheme() {
|
|
const context = useContext(ThemeContext)
|
|
if (!context) {
|
|
throw new Error('useTheme must be used within a ThemeProvider')
|
|
}
|
|
return context
|
|
}
|