import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, } from "../ui/dropdown-menu"; import { Button } from "../ui/button"; import { MoreHorizontal } from "lucide-react"; import { pushModal, showConfirm } from "@/modals"; import { type IProject } from "@/types"; import { clipboard } from "@/utils/clipboard"; import { useRefetchActive } from "@/hooks/useRefetchActive"; import { api } from "@/utils/api"; import { toast } from "../ui/use-toast"; export function ProjectActions({ id }: IProject) { const refetch = useRefetchActive() const deletion = api.project.remove.useMutation({ onSuccess() { toast({ title: 'Success', description: 'Project deleted successfully.', }) refetch() } }) return ( Actions clipboard(id)}> Copy project ID { pushModal("EditProject", { id }); }} > Edit { showConfirm({ title: 'Delete project', text: 'This will delete all events for this project. This action cannot be undone.', onConfirm() { deletion.mutate({ id, }) } }) }} > Delete ); }