2018-07-16 22:51:02 +02:00
|
|
|
import React, { Component } from 'react'
|
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
import SendRowWrapper from '../send-row-wrapper'
|
|
|
|
|
|
|
|
export default class SendHexDataRow extends Component {
|
|
|
|
static propTypes = {
|
|
|
|
data: PropTypes.string,
|
|
|
|
inError: PropTypes.bool,
|
2018-07-17 00:43:32 +02:00
|
|
|
updateSendHexData: PropTypes.func.isRequired,
|
2018-09-27 15:46:24 +02:00
|
|
|
updateGas: PropTypes.func.isRequired,
|
2018-07-16 22:51:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
t: PropTypes.func,
|
|
|
|
};
|
|
|
|
|
|
|
|
onInput = (event) => {
|
2018-09-27 15:46:24 +02:00
|
|
|
const {updateSendHexData, updateGas} = this.props
|
|
|
|
const data = event.target.value.replace(/\n/g, '') || null
|
|
|
|
updateSendHexData(data)
|
|
|
|
updateGas({ data })
|
2018-07-16 22:51:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
2018-07-17 00:43:32 +02:00
|
|
|
const {inError} = this.props
|
|
|
|
const {t} = this.context
|
2018-07-16 22:51:02 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<SendRowWrapper
|
2018-07-17 00:43:32 +02:00
|
|
|
label={`${t('hexData')}:`}
|
2018-07-16 22:51:02 +02:00
|
|
|
showError={inError}
|
|
|
|
errorType={'amount'}
|
|
|
|
>
|
|
|
|
<textarea
|
|
|
|
onInput={this.onInput}
|
|
|
|
placeholder="Optional"
|
|
|
|
className="send-v2__hex-data__input"
|
|
|
|
/>
|
|
|
|
</SendRowWrapper>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|