import { ConfirmationForm } from '@/components/common/ConfirmationForm'; import { useDeleteQuery, useMessages } from '@/components/hooks'; import { Trash } from '@/components/icons'; import { DialogButton } from '@/components/input/DialogButton'; import { messages } from '@/components/messages'; export function LinkDeleteButton({ linkId, name, onSave, }: { linkId: string; websiteId: string; name: string; onSave?: () => void; }) { const { formatMessage, labels, getErrorMessage, FormattedMessage } = useMessages(); const { mutateAsync, isPending, error, touch } = useDeleteQuery(`/links/${linkId}`); const handleConfirm = async (close: () => void) => { await mutateAsync(null, { onSuccess: () => { touch('links'); onSave?.(); close(); }, }); }; return ( } title={formatMessage(labels.confirm)} variant="quiet" width="400px" > {({ close }) => ( {name}, }} /> } isLoading={isPending} error={getErrorMessage(error)} onConfirm={handleConfirm.bind(null, close)} onClose={close} buttonLabel={formatMessage(labels.delete)} buttonVariant="danger" /> )} ); }