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.
44 lines
1.2 KiB
44 lines
1.2 KiB
6 years ago
|
import React, { PureComponent } from 'react'
|
||
|
import PropTypes from 'prop-types'
|
||
|
import Modal from '../../modal'
|
||
|
import TransactionListItemDetails from '../../transaction-list-item-details'
|
||
|
import { hexToDecimal } from '../../../helpers/conversions.util'
|
||
|
|
||
|
export default class TransactionConfirmed extends PureComponent {
|
||
|
static contextTypes = {
|
||
|
t: PropTypes.func,
|
||
|
}
|
||
|
|
||
|
static propTypes = {
|
||
|
hideModal: PropTypes.func,
|
||
|
transaction: PropTypes.object,
|
||
|
onRetry: PropTypes.func,
|
||
|
showRetry: PropTypes.bool,
|
||
|
onCancel: PropTypes.func,
|
||
|
showCancel: PropTypes.bool,
|
||
|
}
|
||
|
|
||
|
render () {
|
||
|
const { t } = this.context
|
||
|
const { transaction, onRetry, showRetry, onCancel, showCancel, hideModal } = this.props
|
||
|
const { txParams: { nonce } = {} } = transaction
|
||
|
const decimalNonce = nonce && hexToDecimal(nonce)
|
||
|
|
||
|
return (
|
||
|
<Modal
|
||
|
onSubmit={() => hideModal()}
|
||
|
submitText={t('ok')}
|
||
|
headerText={t('transactionWithNonce', [`#${decimalNonce}`])}
|
||
|
>
|
||
|
<TransactionListItemDetails
|
||
|
transaction={transaction}
|
||
|
onRetry={() => onRetry()}
|
||
|
showRetry={showRetry}
|
||
|
onCancel={() => onCancel()}
|
||
|
showCancel={showCancel}
|
||
|
/>
|
||
|
</Modal>
|
||
|
)
|
||
|
}
|
||
|
}
|