mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-26 22:26:05 +00:00
* feat: add field.tsx and update blocks * feat: add input group * feat: implement button group * fix * fix * wip * fix: button group * feat: update field * fix * feat * feat: cooked * fix * chore: build registry * feat: add kbd component * chore: update input group demo * feat: update kbd component * feat: add empty * feat: add spinner * refactor: input group * feat: blocks * fix * fix: app sidebar * feat: add label to app sidebar * fix * fix * fix * fix * fix * feat * feat * fix * docs: button group * feat: add docs * docs: kbd * docs: empty * fix * docs * docs * feat: add sink link * fix * fix * docs * feat: add new page * fix * fix * fix * fix * fix * fix * feat: add registration form * fix: chat settings * fix * fix preview * fix examples * feat: add changelog * fix * fix * fix * fix * fix * feat(www): add t3 versions * chore: build registry * fix * fix * fix * feat: inline code examples for llm * fix * feat: home * fix * fix * fix * fix * fix * chore: changelog * fix * fix * fix * fix: callout * fix
57 lines
1.2 KiB
TypeScript
57 lines
1.2 KiB
TypeScript
"use client"
|
|
|
|
import {
|
|
createContext,
|
|
ReactNode,
|
|
useContext,
|
|
useEffect,
|
|
useState,
|
|
} from "react"
|
|
|
|
const DEFAULT_THEME = "blue"
|
|
|
|
type ThemeContextType = {
|
|
activeTheme: string
|
|
setActiveTheme: (theme: string) => void
|
|
}
|
|
|
|
const ThemeContext = createContext<ThemeContextType | undefined>(undefined)
|
|
|
|
export function ActiveThemeProvider({
|
|
children,
|
|
initialTheme,
|
|
}: {
|
|
children: ReactNode
|
|
initialTheme?: string
|
|
}) {
|
|
const [activeTheme, setActiveTheme] = useState<string>(
|
|
() => initialTheme || DEFAULT_THEME
|
|
)
|
|
|
|
useEffect(() => {
|
|
Array.from(document.body.classList)
|
|
.filter((className) => className.startsWith("theme-"))
|
|
.forEach((className) => {
|
|
document.body.classList.remove(className)
|
|
})
|
|
document.body.classList.add(`theme-${activeTheme}`)
|
|
if (activeTheme.endsWith("-scaled")) {
|
|
document.body.classList.add("theme-scaled")
|
|
}
|
|
}, [activeTheme])
|
|
|
|
return (
|
|
<ThemeContext.Provider value={{ activeTheme, setActiveTheme }}>
|
|
{children}
|
|
</ThemeContext.Provider>
|
|
)
|
|
}
|
|
|
|
export function useThemeConfig() {
|
|
const context = useContext(ThemeContext)
|
|
if (context === undefined) {
|
|
throw new Error("useThemeConfig must be used within an ActiveThemeProvider")
|
|
}
|
|
return context
|
|
}
|