// next-themes import { useTheme } from "next-themes"; // 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"; // mobx react lite import { observer } from "mobx-react-lite"; // mobx store import { useMobxStore } from "lib/mobx/store-provider"; type Props = { setPreLoadedData: React.Dispatch>; customThemeSelectorOptions: boolean; setCustomThemeSelectorOptions: React.Dispatch>; }; export const ThemeSwitch: React.FC = observer( ({ setPreLoadedData, customThemeSelectorOptions, setCustomThemeSelectorOptions }) => { const store: any = useMobxStore(); const { user, mutateUser } = useUser(); const { theme, setTheme } = useTheme(); const updateUserTheme = (newTheme: string) => { if (!user) return; setTheme(newTheme); return store.user .updateCurrentUserSettings({ theme: { ...user.theme, theme: newTheme } }) .then((response: any) => response) .catch((error: any) => error); }; const currentThemeObj = THEMES_OBJ.find((t) => t.value === theme); return (
) : ( "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 }) => (
))} ); } );