"use client"; import { useEffect, useState } from "react"; import { Button } from "@/components/ui/button"; import { cn } from "@/lib/utils"; import { CommandDialog, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, } from "@/components/ui/command"; import { GalleryHorizontalEnd, Home, PanelRightClose, Scroll, Search, Settings, SunMoon, } from "lucide-react"; import { useRouter } from "next/navigation"; import { useActionCommand } from "@/hooks/useActionCommand"; import { useTheme } from "next-themes"; type ActionCommandProps = { className?: string; }; const ActionCommand: React.FC = ({ className, ...props }) => { const [value, setValue] = useState(""); const router = useRouter(); const { open: actionOpen, setOpen: setActionOpen } = useActionCommand(); const { theme, setTheme } = useTheme(); const action = ( callback: ((value: string) => Promise) | ((value: string) => void), ) => { return async (value: string) => { setActionOpen(false); await callback(value); }; }; return ( <> { setValue(search); }} /> { router.push("/"); })} > Home ⌘H { router.push("/posts"); })} > Posts ⌘P { setTheme(theme === "light" ? "dark" : "light"); })} > Switch to {theme === "light" ? "Dark" : "Light"} Theme ⌘L ); }; export default ActionCommand;