MyCrypto/common/containers/Tabs/Swap/components/receivingAddress.js

77 lines
2.4 KiB
JavaScript
Raw Normal View History

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { DONATION_ADDRESSES_MAP } from 'config/data';
import Validator from 'libs/validator';
2017-06-24 22:57:43 -07:00
import translate from 'translations';
2017-06-24 13:39:03 -07:00
export default class ReceivingAddress extends Component {
constructor(props) {
super(props);
this.validator = new Validator();
this.state = {
validAddress: false
};
}
static propTypes = {
destinationKind: PropTypes.string.isRequired,
2017-07-01 22:45:22 -07:00
destinationAddressSwap: PropTypes.func.isRequired,
destinationAddress: PropTypes.string,
partTwoCompleteSwap: PropTypes.func
};
2017-07-01 22:45:22 -07:00
onChangeDestinationAddress = event => {
const value = event.target.value;
2017-07-01 22:45:22 -07:00
this.props.destinationAddressSwap(value);
let validAddress;
// TODO - find better pattern here once currencies move beyond BTC, ETH, REP
if (this.props.destinationKind === 'BTC') {
validAddress = this.validator.isValidBTCAddress(value);
} else {
validAddress = this.validator.isValidETHAddress(value);
}
this.setState({ validAddress });
};
2017-07-01 22:45:22 -07:00
onClickPartTwoComplete = () => {
this.props.partTwoCompleteSwap(true);
};
render() {
2017-07-01 22:45:22 -07:00
const { destinationKind, destinationAddress } = this.props;
const { validAddress } = this.state;
return (
<article className="swap-start">
<section className="swap-address block">
<section className="row">
<div className="col-sm-8 col-sm-offset-2 col-xs-12">
<label>
2017-06-24 22:57:43 -07:00
<span>{translate('SWAP_rec_add')}</span>
2017-06-23 18:34:13 -07:00
<strong> ({destinationKind})</strong>
</label>
<input
className={`form-control ${validAddress
? 'is-valid'
: 'is-invalid'}`}
type="text"
2017-07-01 22:45:22 -07:00
value={destinationAddress}
onChange={this.onChangeDestinationAddress}
placeholder={DONATION_ADDRESSES_MAP[destinationKind]}
/>
</div>
</section>
<section className="row text-center">
2017-07-01 22:45:22 -07:00
<button
disabled={!validAddress}
onClick={this.onClickPartTwoComplete}
className="btn btn-primary btn-lg"
>
2017-06-24 22:57:43 -07:00
<span>{translate('SWAP_start_CTA')}</span>
</button>
</section>
</section>
</article>
);
}
}