import { useState, useEffect } from "react"; // next-themes import { useTheme } from "next-themes"; // services import userService from "services/user.service"; // hooks import useUser from "hooks/use-user"; // constants import { THEMES_OBJ } from "constants/themes"; // ui import { CustomSelect } from "components/ui"; // types import { ICustomTheme } from "types"; import { unsetCustomCssVariables } from "helpers/theme.helper"; type Props = { setPreLoadedData: React.Dispatch>; customThemeSelectorOptions: boolean; setCustomThemeSelectorOptions: React.Dispatch>; }; export const ThemeSwitch: React.FC = ({ setPreLoadedData, customThemeSelectorOptions, setCustomThemeSelectorOptions, }) => { const [mounted, setMounted] = useState(false); const { theme, setTheme } = useTheme(); const { user, mutateUser } = useUser(); const updateUserTheme = (newTheme: string) => { if (!user) return; setTheme(newTheme); mutateUser((prevData) => { if (!prevData) return prevData; return { ...prevData, theme: { ...prevData.theme, theme: newTheme, }, }; }, false); userService.updateUser({ theme: { ...user.theme, theme: newTheme, }, }); }; // useEffect only runs on the client, so now we can safely show the UI useEffect(() => { setMounted(true); }, []); if (!mounted) return null; const currentThemeObj = THEMES_OBJ.find((t) => t.value === theme); return (
{currentThemeObj.label}
) : ( "Select your theme" ) } onChange={({ value, type }: { value: string; type: string }) => { if (value === "custom") { if (user?.theme.palette) { setPreLoadedData({ background: user.theme.background !== "" ? user.theme.background : "#0d101b", text: user.theme.text !== "" ? user.theme.text : "#c5c5c5", primary: user.theme.primary !== "" ? user.theme.primary : "#3f76ff", sidebarBackground: user.theme.sidebarBackground !== "" ? user.theme.sidebarBackground : "#0d101b", sidebarText: user.theme.sidebarText !== "" ? user.theme.sidebarText : "#c5c5c5", darkPalette: false, palette: user.theme.palette !== ",,,," ? user.theme.palette : "#0d101b,#c5c5c5,#3f76ff,#0d101b,#c5c5c5", theme: "custom", }); } if (!customThemeSelectorOptions) setCustomThemeSelectorOptions(true); } else { if (customThemeSelectorOptions) setCustomThemeSelectorOptions(false); unsetCustomCssVariables(); } updateUserTheme(value); document.documentElement.style.setProperty("--color-scheme", type); }} input width="w-full" position="right" > {THEMES_OBJ.map(({ value, label, type, icon }) => (
{label}
))} ); };