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.
49 lines
1.1 KiB
49 lines
1.1 KiB
7 years ago
|
import React, { Component } from 'react'
|
||
|
import PropTypes from 'prop-types'
|
||
7 years ago
|
import SendRowWrapper from '../send-row-wrapper/'
|
||
6 years ago
|
import GasFeeDisplay from './gas-fee-display/gas-fee-display.component'
|
||
7 years ago
|
|
||
|
export default class SendGasRow extends Component {
|
||
|
|
||
|
static propTypes = {
|
||
7 years ago
|
conversionRate: PropTypes.number,
|
||
7 years ago
|
convertedCurrency: PropTypes.string,
|
||
6 years ago
|
gasFeeError: PropTypes.bool,
|
||
7 years ago
|
gasLoadingError: PropTypes.bool,
|
||
|
gasTotal: PropTypes.string,
|
||
7 years ago
|
showCustomizeGasModal: PropTypes.func,
|
||
7 years ago
|
};
|
||
|
|
||
6 years ago
|
static contextTypes = {
|
||
|
t: PropTypes.func,
|
||
|
};
|
||
|
|
||
7 years ago
|
render () {
|
||
|
const {
|
||
|
conversionRate,
|
||
|
convertedCurrency,
|
||
|
gasLoadingError,
|
||
7 years ago
|
gasTotal,
|
||
6 years ago
|
gasFeeError,
|
||
7 years ago
|
showCustomizeGasModal,
|
||
7 years ago
|
} = this.props
|
||
|
|
||
|
return (
|
||
6 years ago
|
<SendRowWrapper
|
||
|
label={`${this.context.t('gasFee')}:`}
|
||
|
showError={gasFeeError}
|
||
|
errorType={'gasFee'}
|
||
|
>
|
||
7 years ago
|
<GasFeeDisplay
|
||
7 years ago
|
conversionRate={conversionRate}
|
||
|
convertedCurrency={convertedCurrency}
|
||
|
gasLoadingError={gasLoadingError}
|
||
7 years ago
|
gasTotal={gasTotal}
|
||
|
onClick={() => showCustomizeGasModal()}
|
||
7 years ago
|
/>
|
||
|
</SendRowWrapper>
|
||
7 years ago
|
)
|
||
7 years ago
|
}
|
||
|
|
||
|
}
|