aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/send-content/send-gas-row/send-gas-row.component.js
blob: 8d305dd4f8576057b56003ef9ce4c29231ae27f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import SendRowWrapper from '../send-row-wrapper/'
import GasFeeDisplay from './gas-fee-display/gas-fee-display.component'
import GasPriceButtonGroup from '../../../gas-customization/gas-price-button-group'

export default class SendGasRow extends Component {

  static propTypes = {
    conversionRate: PropTypes.number,
    convertedCurrency: PropTypes.string,
    gasFeeError: PropTypes.bool,
    gasLoadingError: PropTypes.bool,
    gasTotal: PropTypes.string,
    showCustomizeGasModal: PropTypes.func,
    gasPriceButtonGroupProps: PropTypes.object,
    gasButtonGroupShown: PropTypes.bool,
    resetGasButtons: PropTypes.func,
  }

  static contextTypes = {
    t: PropTypes.func,
  }

  render () {
    const {
      conversionRate,
      convertedCurrency,
      gasLoadingError,
      gasTotal,
      gasFeeError,
      showCustomizeGasModal,
      gasPriceButtonGroupProps,
      gasButtonGroupShown,
      resetGasButtons,
    } = this.props

    return (
      <SendRowWrapper
        label={`${this.context.t('transactionFee')}:`}
        showError={gasFeeError}
        errorType={'gasFee'}
      >
        {gasButtonGroupShown
         ? <div>
            <GasPriceButtonGroup
              className="gas-price-button-group--small"
              showCheck={false}
              {...gasPriceButtonGroupProps}
            />
            <div className="advanced-gas-options-btn" onClick={() => showCustomizeGasModal()}>
              { this.context.t('advancedOptions') }
            </div>
          </div>
        : <GasFeeDisplay
            conversionRate={conversionRate}
            convertedCurrency={convertedCurrency}
            gasLoadingError={gasLoadingError}
            gasTotal={gasTotal}
            onReset={resetGasButtons}
            onClick={() => showCustomizeGasModal()}
          />}

      </SendRowWrapper>
    )
  }

}