You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
160 lines
4.4 KiB
160 lines
4.4 KiB
4 years ago
|
import { connect } from 'react-redux'
|
||
|
import { hideModal, customSwapsGasParamsUpdated } from '../../../store/actions'
|
||
|
import {
|
||
|
conversionRateSelector as getConversionRate,
|
||
|
getCurrentCurrency,
|
||
|
getCurrentEthBalance,
|
||
|
getDefaultActiveButtonIndex,
|
||
|
getRenderableGasButtonData,
|
||
|
} from '../../../selectors'
|
||
|
|
||
|
import {
|
||
|
getSwapsCustomizationModalPrice,
|
||
|
getSwapsCustomizationModalLimit,
|
||
|
swapGasEstimateLoadingHasFailed,
|
||
|
swapGasPriceEstimateIsLoading,
|
||
|
getSwapGasPriceEstimateData,
|
||
|
swapCustomGasModalPriceEdited,
|
||
|
swapCustomGasModalLimitEdited,
|
||
|
shouldShowCustomPriceTooLowWarning,
|
||
|
} from '../../../ducks/swaps/swaps'
|
||
|
|
||
|
import {
|
||
|
addHexes,
|
||
|
getValueFromWeiHex,
|
||
|
sumHexWEIsToRenderableFiat,
|
||
|
} from '../../../helpers/utils/conversions.util'
|
||
|
import { formatETHFee } from '../../../helpers/utils/formatters'
|
||
|
import { calcGasTotal, isBalanceSufficient } from '../../send/send.utils'
|
||
|
import SwapsGasCustomizationModalComponent from './swaps-gas-customization-modal.component'
|
||
|
|
||
|
const mapStateToProps = (state) => {
|
||
|
const currentCurrency = getCurrentCurrency(state)
|
||
|
const conversionRate = getConversionRate(state)
|
||
|
|
||
|
const { modalState: { props: modalProps } = {} } = state.appState.modal || {}
|
||
|
const {
|
||
|
value,
|
||
|
customGasLimitMessage = '',
|
||
|
customTotalSupplement = '',
|
||
|
extraInfoRow = null,
|
||
|
initialGasPrice,
|
||
|
initialGasLimit,
|
||
|
} = modalProps || {}
|
||
|
const buttonDataLoading = swapGasPriceEstimateIsLoading(state)
|
||
|
|
||
|
const swapsCustomizationModalPrice = getSwapsCustomizationModalPrice(state)
|
||
|
const swapsCustomizationModalLimit = getSwapsCustomizationModalLimit(state)
|
||
|
|
||
|
const customGasPrice = swapsCustomizationModalPrice || initialGasPrice
|
||
|
const customGasLimit = swapsCustomizationModalLimit || initialGasLimit
|
||
|
|
||
|
const customGasTotal = calcGasTotal(customGasLimit, customGasPrice)
|
||
|
|
||
|
const swapsGasPriceEstimates = getSwapGasPriceEstimateData(state)
|
||
|
|
||
|
const { averageEstimateData, fastEstimateData } = getRenderableGasButtonData(
|
||
|
swapsGasPriceEstimates,
|
||
|
customGasLimit,
|
||
|
true,
|
||
|
conversionRate,
|
||
|
currentCurrency,
|
||
|
)
|
||
|
const gasButtonInfo = [averageEstimateData, fastEstimateData]
|
||
|
|
||
|
const newTotalFiat = sumHexWEIsToRenderableFiat(
|
||
|
[value, customGasTotal, customTotalSupplement],
|
||
|
currentCurrency,
|
||
|
conversionRate,
|
||
|
)
|
||
|
|
||
|
const balance = getCurrentEthBalance(state)
|
||
|
|
||
|
const newTotalEth = sumHexWEIsToRenderableEth([
|
||
|
value,
|
||
|
customGasTotal,
|
||
|
customTotalSupplement,
|
||
|
])
|
||
|
|
||
|
const sendAmount = sumHexWEIsToRenderableEth([value, '0x0'])
|
||
|
|
||
|
const insufficientBalance = !isBalanceSufficient({
|
||
|
amount: value,
|
||
|
gasTotal: customGasTotal,
|
||
|
balance,
|
||
|
conversionRate,
|
||
|
})
|
||
|
|
||
|
return {
|
||
|
customGasPrice,
|
||
|
customGasLimit,
|
||
|
showCustomPriceTooLowWarning: shouldShowCustomPriceTooLowWarning(state),
|
||
|
gasPriceButtonGroupProps: {
|
||
|
buttonDataLoading,
|
||
|
defaultActiveButtonIndex: getDefaultActiveButtonIndex(
|
||
|
gasButtonInfo,
|
||
|
customGasPrice,
|
||
|
),
|
||
|
gasButtonInfo,
|
||
|
},
|
||
|
infoRowProps: {
|
||
|
originalTotalFiat: sumHexWEIsToRenderableFiat(
|
||
|
[value, customGasTotal, customTotalSupplement],
|
||
|
currentCurrency,
|
||
|
conversionRate,
|
||
|
),
|
||
|
originalTotalEth: sumHexWEIsToRenderableEth([
|
||
|
value,
|
||
|
customGasTotal,
|
||
|
customTotalSupplement,
|
||
|
]),
|
||
|
newTotalFiat,
|
||
|
newTotalEth,
|
||
|
transactionFee: sumHexWEIsToRenderableEth(['0x0', customGasTotal]),
|
||
|
sendAmount,
|
||
|
extraInfoRow,
|
||
|
},
|
||
|
gasEstimateLoadingHasFailed: swapGasEstimateLoadingHasFailed(state),
|
||
|
insufficientBalance,
|
||
|
customGasLimitMessage,
|
||
|
customTotalSupplement,
|
||
|
conversionRate,
|
||
|
value,
|
||
|
disableSave: insufficientBalance,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const mapDispatchToProps = (dispatch) => {
|
||
|
return {
|
||
|
cancelAndClose: () => {
|
||
|
dispatch(hideModal())
|
||
|
},
|
||
|
onSubmit: (gasLimit, gasPrice) => {
|
||
|
dispatch(customSwapsGasParamsUpdated(gasLimit, gasPrice))
|
||
|
dispatch(hideModal())
|
||
|
},
|
||
|
setSwapsCustomizationModalPrice: (newPrice) => {
|
||
|
dispatch(swapCustomGasModalPriceEdited(newPrice))
|
||
|
},
|
||
|
setSwapsCustomizationModalLimit: (newLimit) => {
|
||
|
dispatch(swapCustomGasModalLimitEdited(newLimit))
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default connect(
|
||
|
mapStateToProps,
|
||
|
mapDispatchToProps,
|
||
|
)(SwapsGasCustomizationModalComponent)
|
||
|
|
||
|
function sumHexWEIsToRenderableEth(hexWEIs) {
|
||
|
const hexWEIsSum = hexWEIs.filter((n) => n).reduce(addHexes)
|
||
|
return formatETHFee(
|
||
|
getValueFromWeiHex({
|
||
|
value: hexWEIsSum,
|
||
|
toCurrency: 'ETH',
|
||
|
numberOfDecimals: 6,
|
||
|
}),
|
||
|
)
|
||
|
}
|