2017-06-26 23:27:26 +00:00
|
|
|
// @flow
|
2017-06-24 01:26:54 +00:00
|
|
|
import React, { Component } from 'react';
|
2017-07-22 21:24:03 +00:00
|
|
|
import * as swapTypes from 'actions/swapTypes';
|
2017-07-04 00:16:20 +00:00
|
|
|
import { donationAddressMap } from 'config/data';
|
2017-07-02 05:49:06 +00:00
|
|
|
import { isValidBTCAddress, isValidETHAddress } from 'libs/validators';
|
2017-06-25 05:57:43 +00:00
|
|
|
import translate from 'translations';
|
2017-06-24 01:26:54 +00:00
|
|
|
|
2017-07-22 21:24:03 +00:00
|
|
|
export type StateProps = {
|
|
|
|
destinationKind: string,
|
|
|
|
destinationAddress: string
|
|
|
|
};
|
|
|
|
|
|
|
|
export type ActionProps = {
|
|
|
|
destinationAddressSwap: (
|
|
|
|
value: ?string
|
|
|
|
) => swapTypes.DestinationAddressSwapAction,
|
|
|
|
changeStepSwap: (value: number) => swapTypes.ChangeStepSwapAction,
|
|
|
|
stopLoadBityRatesSwap: () => swapTypes.StopLoadBityRatesSwapAction
|
|
|
|
};
|
|
|
|
|
2017-06-24 20:39:03 +00:00
|
|
|
export default class ReceivingAddress extends Component {
|
2017-07-22 21:24:03 +00:00
|
|
|
props: StateProps & ActionProps;
|
2017-06-24 06:09:44 +00:00
|
|
|
|
2017-07-02 05:49:06 +00:00
|
|
|
onChangeDestinationAddress = (event: SyntheticInputEvent) => {
|
2017-06-24 06:09:44 +00:00
|
|
|
const value = event.target.value;
|
2017-07-02 05:45:22 +00:00
|
|
|
this.props.destinationAddressSwap(value);
|
2017-06-24 01:26:54 +00:00
|
|
|
};
|
|
|
|
|
2017-07-02 05:45:22 +00:00
|
|
|
onClickPartTwoComplete = () => {
|
2017-07-22 21:24:03 +00:00
|
|
|
this.props.stopLoadBityRatesSwap();
|
|
|
|
// temporarily here for testing purposes. will live in saga
|
|
|
|
this.props.referenceNumberSwap('');
|
|
|
|
this.props.changeStepSwap(3);
|
2017-07-02 05:45:22 +00:00
|
|
|
};
|
|
|
|
|
2017-06-24 01:26:54 +00:00
|
|
|
render() {
|
2017-07-02 05:45:22 +00:00
|
|
|
const { destinationKind, destinationAddress } = this.props;
|
2017-06-24 06:09:44 +00:00
|
|
|
let validAddress;
|
|
|
|
// TODO - find better pattern here once currencies move beyond BTC, ETH, REP
|
|
|
|
if (this.props.destinationKind === 'BTC') {
|
2017-07-02 05:49:06 +00:00
|
|
|
validAddress = isValidBTCAddress(destinationAddress);
|
2017-06-24 06:09:44 +00:00
|
|
|
} else {
|
2017-07-02 05:49:06 +00:00
|
|
|
validAddress = isValidETHAddress(destinationAddress);
|
2017-06-24 06:09:44 +00:00
|
|
|
}
|
2017-06-24 01:26:54 +00:00
|
|
|
|
|
|
|
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-07-22 21:24:03 +00:00
|
|
|
<span>
|
|
|
|
{translate('SWAP_rec_add')}
|
|
|
|
</span>
|
|
|
|
<strong>
|
|
|
|
{' '}({destinationKind})
|
|
|
|
</strong>
|
2017-06-24 01:26:54 +00:00
|
|
|
</label>
|
|
|
|
<input
|
2017-06-24 06:09:44 +00:00
|
|
|
className={`form-control ${validAddress
|
|
|
|
? 'is-valid'
|
|
|
|
: 'is-invalid'}`}
|
2017-06-24 01:26:54 +00:00
|
|
|
type="text"
|
2017-07-02 05:45:22 +00:00
|
|
|
value={destinationAddress}
|
|
|
|
onChange={this.onChangeDestinationAddress}
|
2017-07-04 00:16:20 +00:00
|
|
|
placeholder={donationAddressMap[destinationKind]}
|
2017-06-24 01:26:54 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<section className="row text-center">
|
2017-07-02 05:45:22 +00:00
|
|
|
<button
|
|
|
|
disabled={!validAddress}
|
|
|
|
onClick={this.onClickPartTwoComplete}
|
|
|
|
className="btn btn-primary btn-lg"
|
|
|
|
>
|
2017-07-22 21:24:03 +00:00
|
|
|
<span>
|
|
|
|
{translate('SWAP_start_CTA')}
|
|
|
|
</span>
|
2017-06-24 06:09:44 +00:00
|
|
|
</button>
|
2017-06-24 01:26:54 +00:00
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
</article>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|