1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Clean up for advanced gas tab customization changes.

This commit is contained in:
Dan Miller 2018-10-09 14:23:48 -02:30
parent b95eb30ec6
commit 6f8e2b1ad9
3 changed files with 16 additions and 19 deletions

View File

@ -1084,6 +1084,9 @@
"send": {
"message": "Send"
},
"sendAmount": {
"message": "Send Amount"
},
"sendETH": {
"message": "Send ETH"
},

View File

@ -68,10 +68,6 @@ describe('AdvancedTabContent Component', function () {
11, propsMethodSpies.updateCustomGasPrice, 23456, propsMethodSpies.updateCustomGasLimit,
])
})
it('should call renderGasEditRows with the expected params', () => {
})
})
describe('renderDataSummary()', () => {

View File

@ -52,32 +52,30 @@ export default class GasModalPageContainer extends Component {
updateCustomGasLimit={convertThenUpdateCustomGasLimit}
customGasPrice={customGasPrice}
customGasLimit={customGasLimit}
timeRemaining={'1 min 31 sec'}
timeRemaining="1 min 31 sec"
totalFee={newTotalFiat}
/>
)
}
renderInfoRows (newTotalFiat, newTotalEth, sendAmount, transactionFee) {
const baseClassName = 'gas-modal-content__info-row'
return (
<div>
<div className={baseClassName}>
<div className={`${baseClassName}__send-info`}>
<span className={`${baseClassName}__send-info__label`}>{`Send Amount`}</span>
<span className={`${baseClassName}__send-info__value`}>{sendAmount}</span>
<div className="gas-modal-content__info-row">
<div className="gas-modal-content__info-row__send-info">
<span className="gas-modal-content__info-row__send-info__label">{this.context.t('sendAmount')}</span>
<span className="gas-modal-content__info-row__send-info__value">{sendAmount}</span>
</div>
<div className={`${baseClassName}__transaction-info`}>
<span className={`${baseClassName}__transaction-info__label`}>{`Transaction Fee`}</span>
<span className={`${baseClassName}__transaction-info__value`}>{transactionFee}</span>
<div className="gas-modal-content__info-row__transaction-info">
<span className={'gas-modal-content__info-row__transaction-info__label'}>{this.context.t('transactionFee')}</span>
<span className="gas-modal-content__info-row__transaction-info__value">{transactionFee}</span>
</div>
<div className={`${baseClassName}__total-info`}>
<span className={`${baseClassName}__total-info__label`}>{`New Total`}</span>
<span className={`${baseClassName}__total-info__value`}>{newTotalEth}</span>
<div className="gas-modal-content__info-row__total-info">
<span className="gas-modal-content__info-row__total-info__label">{this.context.t('newTotal')}</span>
<span className="gas-modal-content__info-row__total-info__value">{newTotalEth}</span>
</div>
<div className={`${baseClassName}__fiat-total-info`}>
<span className={`${baseClassName}__fiat-total-info__value`}>{newTotalFiat}</span>
<div className="gas-modal-content__info-row__fiat-total-info">
<span className="gas-modal-content__info-row__fiat-total-info__value">{newTotalFiat}</span>
</div>
</div>
</div>