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.
53 lines
1.7 KiB
53 lines
1.7 KiB
7 years ago
|
import { connect } from 'react-redux'
|
||
|
import { compose } from 'recompose'
|
||
|
import { withRouter } from 'react-router-dom'
|
||
|
import ConfirmSendToken from './confirm-send-token.component'
|
||
6 years ago
|
import { clearConfirmTransaction } from '../../ducks/confirm-transaction/confirm-transaction.duck'
|
||
|
import { setSelectedToken, updateSend, showSendTokenPage } from '../../store/actions'
|
||
|
import { conversionUtil } from '../../helpers/utils/conversion-util'
|
||
|
import { sendTokenTokenAmountAndToAddressSelector } from '../../selectors/confirm-transaction'
|
||
7 years ago
|
|
||
|
const mapStateToProps = state => {
|
||
6 years ago
|
const { tokenAmount } = sendTokenTokenAmountAndToAddressSelector(state)
|
||
7 years ago
|
|
||
|
return {
|
||
6 years ago
|
tokenAmount,
|
||
7 years ago
|
}
|
||
|
}
|
||
|
|
||
|
const mapDispatchToProps = dispatch => {
|
||
|
return {
|
||
|
editTransaction: ({ txData, tokenData, tokenProps }) => {
|
||
|
const { txParams: { to: tokenAddress, gas: gasLimit, gasPrice } = {}, id } = txData
|
||
|
const { params = [] } = tokenData
|
||
|
const { value: to } = params[0] || {}
|
||
|
const { value: tokenAmountInDec } = params[1] || {}
|
||
|
const tokenAmountInHex = conversionUtil(tokenAmountInDec, {
|
||
|
fromNumericBase: 'dec',
|
||
|
toNumericBase: 'hex',
|
||
|
})
|
||
|
dispatch(setSelectedToken(tokenAddress))
|
||
|
dispatch(updateSend({
|
||
|
gasLimit,
|
||
|
gasPrice,
|
||
|
gasTotal: null,
|
||
|
to,
|
||
|
amount: tokenAmountInHex,
|
||
|
errors: { to: null, amount: null },
|
||
|
editingTransactionId: id && id.toString(),
|
||
|
token: {
|
||
|
...tokenProps,
|
||
|
address: tokenAddress,
|
||
|
},
|
||
|
}))
|
||
|
dispatch(clearConfirmTransaction())
|
||
|
dispatch(showSendTokenPage())
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default compose(
|
||
|
withRouter,
|
||
|
connect(mapStateToProps, mapDispatchToProps)
|
||
|
)(ConfirmSendToken)
|