2021-02-04 19:15:23 +01:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import SendRowWrapper from '../send-row-wrapper';
|
2018-07-16 22:51:02 +02:00
|
|
|
|
|
|
|
export default class SendHexDataRow extends Component {
|
|
|
|
static propTypes = {
|
|
|
|
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,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2018-07-16 22:51:02 +02:00
|
|
|
|
|
|
|
static contextTypes = {
|
|
|
|
t: PropTypes.func,
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2018-07-16 22:51:02 +02:00
|
|
|
|
|
|
|
onInput = (event) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { updateSendHexData, updateGas } = this.props;
|
|
|
|
const data = event.target.value.replace(/\n/gu, '') || null;
|
|
|
|
updateSendHexData(data);
|
|
|
|
updateGas({ data });
|
|
|
|
};
|
2018-07-16 22:51:02 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
render() {
|
2021-02-04 19:15:23 +01: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}
|
2019-11-18 16:08:47 +01:00
|
|
|
errorType="amount"
|
2018-07-16 22:51:02 +02:00
|
|
|
>
|
|
|
|
<textarea
|
|
|
|
onInput={this.onInput}
|
|
|
|
placeholder="Optional"
|
|
|
|
className="send-v2__hex-data__input"
|
|
|
|
/>
|
|
|
|
</SendRowWrapper>
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2018-07-16 22:51:02 +02:00
|
|
|
}
|
|
|
|
}
|