78 lines
2.0 KiB
TypeScript
78 lines
2.0 KiB
TypeScript
"use client";
|
|
|
|
import * as React from "react";
|
|
import { useTheme } from "next-themes";
|
|
import { MoonIcon } from "lucide-react";
|
|
import { IconSunLow } from "@tabler/icons-react";
|
|
import { motion } from "framer-motion";
|
|
|
|
export function ModeToggle() {
|
|
const { theme, setTheme } = useTheme();
|
|
|
|
const [isClient, setIsClient] = React.useState(false);
|
|
|
|
React.useEffect(() => {
|
|
setIsClient(true);
|
|
console.log("Theme initialized:", theme);
|
|
}, []);
|
|
|
|
React.useEffect(() => {
|
|
console.log("Theme changed to:", theme);
|
|
}, [theme]);
|
|
|
|
return (
|
|
isClient && (
|
|
<button
|
|
onClick={() => {
|
|
const newTheme = theme === "dark" ? "light" : "dark";
|
|
console.log("Switching from", theme, "to", newTheme);
|
|
setTheme(newTheme);
|
|
}}
|
|
className="w-10 h-10 flex hover:bg-gray-50 dark:hover:bg-white/[0.1] rounded-lg items-center justify-center outline-none focus:ring-0 focus:outline-none active:ring-0 active:outline-none overflow-hidden"
|
|
>
|
|
{theme === "light" && (
|
|
<motion.div
|
|
key={theme}
|
|
initial={{
|
|
x: 40,
|
|
opacity: 0,
|
|
}}
|
|
animate={{
|
|
x: 0,
|
|
opacity: 1,
|
|
}}
|
|
transition={{
|
|
duration: 0.3,
|
|
ease: "easeOut",
|
|
}}
|
|
>
|
|
<IconSunLow className="h-4 w-4 flex-shrink-0 dark:text-neutral-500 text-neutral-700" />
|
|
</motion.div>
|
|
)}
|
|
|
|
{theme === "dark" && (
|
|
<motion.div
|
|
key={theme}
|
|
initial={{
|
|
x: 40,
|
|
opacity: 0,
|
|
}}
|
|
animate={{
|
|
x: 0,
|
|
opacity: 1,
|
|
}}
|
|
transition={{
|
|
ease: "easeOut",
|
|
duration: 0.3,
|
|
}}
|
|
>
|
|
<MoonIcon className="h-4 w-4 flex-shrink-0 dark:text-neutral-500 text-neutral-700" />
|
|
</motion.div>
|
|
)}
|
|
|
|
<span className="sr-only">Toggle theme</span>
|
|
</button>
|
|
)
|
|
);
|
|
}
|