aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/transaction-action/transaction-action.component.js
blob: b608615d097101c4d3d7ab871cd99900251e6c00 (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
import React, { PureComponent } from 'react'
import PropTypes from 'prop-types'
import { getTransactionActionKey } from '../../helpers/transactions.util'

export default class TransactionAction extends PureComponent {
  static contextTypes = {
    tOrDefault: PropTypes.func,
  }

  static propTypes = {
    className: PropTypes.string,
    transaction: PropTypes.object,
    methodData: PropTypes.object,
  }

  state = {
    transactionAction: '',
  }

  componentDidMount () {
    this.getTransactionAction()
  }

  componentDidUpdate () {
    this.getTransactionAction()
  }

  getTransactionAction () {
    const { transactionAction } = this.state
    const { transaction, methodData } = this.props
    const { data, isFetching } = methodData

    if (isFetching || transactionAction) {
      return
    }

    const actionKey = getTransactionActionKey(transaction, data)
    const action = actionKey && this.context.tOrDefault(actionKey)
    this.setState({ transactionAction: action })
  }

  render () {
    const { className } = this.props
    const { transactionAction } = this.state

    return (
      <div className={className}>
        { transactionAction || '--' }
      </div>
    )
  }
}