aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-content/send-row-wrapper/send-row-error-message/send-row-error-message.component.js
blob: 0d314208bb4f34651eeda5db54e6120e6529adcb (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 SendRowErrorMessage extends Component {

  static propTypes = {
    errors: PropTypes.object,
    errorType: PropTypes.string,
  };

  render () {
    const { errors, errorType } = this.props

    const errorMessage = errors[errorType]

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

}

SendRowErrorMessage.contextTypes = {
  t: PropTypes.func,
}