You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

56 lines
1.6 KiB

import { useTheme } from "../core/hooks/useTheme.ts";
import { cn } from "../core/utils/cn.ts";
import { Monitor, Moon, Sun } from "lucide-react";
import { useTranslation } from "react-i18next";
type ThemePreference = "light" | "dark" | "system";
export default function ThemeSwitcher({
className = "",
}: {
className?: string;
}) {
const { preference, setPreference } = useTheme();
const { t } = useTranslation();
const themeIcons = {
light: <Sun className="size-6" />,
dark: <Moon className="size-6" />,
system: <Monitor className="size-6" />,
};
const toggleTheme = () => {
const preferences: ThemePreference[] = ["light", "dark", "system"];
const currentIndex = preferences.indexOf(preference);
const nextPreference = preferences[(currentIndex + 1) % preferences.length];
setPreference(nextPreference);
};
const preferenceDisplayMap: Record<ThemePreference, string> = {
light: t("theme_preference_light"),
dark: t("theme_preference_dark"),
system: t("theme_preference_system"),
};
const currentDisplayPreference = preferenceDisplayMap[preference];
return (
<button
type="button"
className={cn(
"transition-all duration-300 scale-100 cursor-pointer m-3 p-2 focus:*:data-label:opacity-100",
className,
)}
onClick={toggleTheme}
aria-description={t("theme_switcher_aria_change_theme")}
>
<span
data-label
className="transition-all block absolute w-full mb-auto mt-auto ml-0 mr-0 text-xs left-0 -top-3 opacity-0 rounded-lg"
>
{currentDisplayPreference}
</span>
{themeIcons[preference]}
</button>
);
}