1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/hooks/useRetryTransaction.js

58 lines
1.7 KiB
JavaScript
Raw Normal View History

import { useDispatch } from 'react-redux'
import { useCallback } from 'react'
import { showSidebar } from '../store/actions'
import {
fetchBasicGasEstimates,
setCustomGasPriceForRetry,
setCustomGasLimit,
} from '../ducks/gas/gas.duck'
import { increaseLastGasPrice } from '../helpers/utils/confirm-tx.util'
import { useMetricEvent } from './useMetricEvent'
/**
* Provides a reusable hook that, given a transactionGroup, will return
* a method for beginning the retry process
* @param {Object} transactionGroup - the transaction group
* @return {Function}
*/
2020-11-03 00:41:28 +01:00
export function useRetryTransaction(transactionGroup) {
const { primaryTransaction, initialTransaction } = transactionGroup
2020-06-01 19:27:51 +02:00
// Signature requests do not have a txParams, but this hook is called indiscriminately
const gasPrice = primaryTransaction.txParams?.gasPrice
2020-11-03 00:41:28 +01:00
const trackMetricsEvent = useMetricEvent({
eventOpts: {
category: 'Navigation',
action: 'Activity Log',
name: 'Clicked "Speed Up"',
},
2020-11-03 00:41:28 +01:00
})
const dispatch = useDispatch()
2020-11-03 00:41:28 +01:00
const retryTransaction = useCallback(
async (event) => {
event.stopPropagation()
2020-11-03 00:41:28 +01:00
trackMetricsEvent()
await dispatch(fetchBasicGasEstimates)
2020-11-03 00:41:28 +01:00
const transaction = initialTransaction
const increasedGasPrice = increaseLastGasPrice(gasPrice)
await dispatch(
2020-11-03 00:41:28 +01:00
setCustomGasPriceForRetry(
increasedGasPrice || transaction.txParams.gasPrice,
),
)
dispatch(setCustomGasLimit(transaction.txParams.gas))
dispatch(
showSidebar({
transitionName: 'sidebar-left',
type: 'customize-gas',
props: { transaction },
}),
)
},
[dispatch, trackMetricsEvent, initialTransaction, gasPrice],
)
return retryTransaction
}