import React, { FC, useEffect, useState } from "react"; import { Command } from "cmdk"; import { observer } from "mobx-react"; import { useTheme } from "next-themes"; import { Settings } from "lucide-react"; import { TOAST_TYPE, setToast } from "@plane/ui"; // constants import { THEME_OPTIONS } from "@/constants/themes"; // hooks import { useUserProfile } from "@/hooks/store"; type Props = { closePalette: () => void; }; export const CommandPaletteThemeActions: FC = observer((props) => { const { closePalette } = props; const { setTheme } = useTheme(); // hooks const { updateUserTheme } = useUserProfile(); // states const [mounted, setMounted] = useState(false); const updateTheme = async (newTheme: string) => { setTheme(newTheme); return updateUserTheme({ theme: newTheme }).catch(() => { setToast({ type: TOAST_TYPE.ERROR, title: "Failed to save user theme settings!", }); }); }; // useEffect only runs on the client, so now we can safely show the UI useEffect(() => { setMounted(true); }, []); if (!mounted) return null; return ( <> {THEME_OPTIONS.filter((t) => t.value !== "custom").map((theme) => ( { updateTheme(theme.value); closePalette(); }} className="focus:outline-none" >
{theme.label}
))} ); });