| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import { useEffect, useState } from "react"
- import { Toaster as Sonner } from "sonner"
- type ToasterProps = React.ComponentProps<typeof Sonner>
- const Toaster = ({ ...props }: ToasterProps) => {
- const [theme, setTheme] = useState<"light" | "dark">("light")
- useEffect(() => {
- // Check initial theme
- const isDark = document.documentElement.classList.contains("dark")
- setTheme(isDark ? "dark" : "light")
- // Watch for theme changes
- const observer = new MutationObserver((mutations) => {
- mutations.forEach((mutation) => {
- if (mutation.attributeName === "class") {
- const isDark = document.documentElement.classList.contains("dark")
- setTheme(isDark ? "dark" : "light")
- }
- })
- })
- observer.observe(document.documentElement, { attributes: true })
- return () => observer.disconnect()
- }, [])
- return (
- <Sonner
- theme={theme}
- className="toaster group"
- toastOptions={{
- classNames: {
- toast:
- "group toast group-[.toaster]:bg-background group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg",
- description: "group-[.toast]:text-muted-foreground",
- actionButton:
- "group-[.toast]:bg-primary group-[.toast]:text-primary-foreground",
- cancelButton:
- "group-[.toast]:bg-muted group-[.toast]:text-muted-foreground",
- },
- }}
- {...props}
- />
- )
- }
- export { Toaster }
|