import { Button, Icon, Icons, Modal, ModalTrigger, Text } from 'react-basics'; import ConfirmDeleteForm from 'components/common/ConfirmDeleteForm'; import { useApi, useMessages } from 'components/hooks'; import { setValue } from 'store/cache'; export function ReportDeleteButton({ reportId, reportName, onDelete, }: { reportId: string; reportName: string; onDelete?: () => void; }) { const { formatMessage, labels } = useMessages(); const { del, useMutation } = useApi(); const { mutate } = useMutation({ mutationFn: reportId => del(`/reports/${reportId}`) }); const handleConfirm = (close: () => void) => { mutate(reportId as any, { onSuccess: () => { setValue('reports', Date.now()); onDelete?.(); close(); }, }); }; return ( {close => ( )} ); } export default ReportDeleteButton;