aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pages/confirm-approve/confirm-approve.component.js
blob: d775b03627dcb8b8a0a976812b3fb2889496a1b2 (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
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import ConfirmTransactionBase from '../confirm-transaction-base'

export default class ConfirmApprove extends Component {
  static contextTypes = {
    t: PropTypes.func,
  }

  static propTypes = {
    tokenAddress: PropTypes.string,
    toAddress: PropTypes.string,
    tokenAmount: PropTypes.string,
    tokenSymbol: PropTypes.string,
  }

  render () {
    const { toAddress, tokenAddress, tokenAmount, tokenSymbol } = this.props

    return (
      <ConfirmTransactionBase
        toAddress={toAddress}
        identiconAddress={tokenAddress}
        title={`${tokenAmount} ${tokenSymbol}`}
        warning={`By approving this action, you grant permission for this contract to spend up to ${tokenAmount} of your ${tokenSymbol}.`}
        hideSubtitle
      />
    )
  }
}