aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/app/send/send-content/send-row-wrapper/send-row-warning-message/send-row-warning-message.component.js
blob: f1caa8f9926c816a8c975a1ee5619a847cc9e47e (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
import React, { Component } from 'react'
import PropTypes from 'prop-types'

export default class SendRowWarningMessage extends Component {

  static propTypes = {
    warnings: PropTypes.object,
    warningType: PropTypes.string,
  };

  static contextTypes = {
    t: PropTypes.func,
  };

  render () {
    const { warnings, warningType } = this.props

    const warningMessage = warningType in warnings && warnings[warningType]

    return (
        warningMessage
        ? <div className="send-v2__warning">{this.context.t(warningMessage)}</div>
        : null
    )
  }

}