102 lines
3.1 KiB
JavaScript
102 lines
3.1 KiB
JavaScript
// @flow
|
|
import './ReceivingAddress.scss';
|
|
import React, { Component } from 'react';
|
|
import classnames from 'classnames';
|
|
import type {
|
|
DestinationAddressSwapAction,
|
|
ChangeStepSwapAction,
|
|
StopLoadBityRatesSwapAction,
|
|
BityOrderCreateRequestedSwapAction
|
|
} from 'actions/swapTypes';
|
|
import { donationAddressMap } from 'config/data';
|
|
import { isValidBTCAddress, isValidETHAddress } from 'libs/validators';
|
|
import translate from 'translations';
|
|
import { combineAndUpper } from 'utils/formatters';
|
|
import SimpleButton from 'components/ui/SimpleButton';
|
|
|
|
export type StateProps = {
|
|
isPostingOrder: boolean,
|
|
originAmount: number,
|
|
originKind: string,
|
|
destinationKind: string,
|
|
destinationAddress: string
|
|
};
|
|
|
|
export type ActionProps = {
|
|
destinationAddressSwap: (value: ?string) => DestinationAddressSwapAction,
|
|
changeStepSwap: (value: number) => ChangeStepSwapAction,
|
|
stopLoadBityRatesSwap: () => StopLoadBityRatesSwapAction,
|
|
bityOrderCreateRequestedSwap: (
|
|
amount: number,
|
|
destinationAddress: string,
|
|
pair: string,
|
|
mode: ?number
|
|
) => BityOrderCreateRequestedSwapAction
|
|
};
|
|
|
|
export default class ReceivingAddress extends Component {
|
|
props: StateProps & ActionProps;
|
|
|
|
onChangeDestinationAddress = (event: SyntheticInputEvent) => {
|
|
const value = event.target.value;
|
|
this.props.destinationAddressSwap(value);
|
|
};
|
|
|
|
onClickPartTwoComplete = () => {
|
|
this.props.bityOrderCreateRequestedSwap(
|
|
this.props.originAmount,
|
|
this.props.destinationAddress,
|
|
combineAndUpper(this.props.originKind, this.props.destinationKind)
|
|
);
|
|
};
|
|
|
|
render() {
|
|
const { destinationKind, destinationAddress, isPostingOrder } = this.props;
|
|
let validAddress;
|
|
// TODO - find better pattern here once currencies move beyond BTC, ETH, REP
|
|
if (this.props.destinationKind === 'BTC') {
|
|
validAddress = isValidBTCAddress(destinationAddress);
|
|
} else {
|
|
validAddress = isValidETHAddress(destinationAddress);
|
|
}
|
|
|
|
const inputClasses = classnames({
|
|
'SwapAddress-address-input': true,
|
|
'form-control': true,
|
|
'is-valid': validAddress,
|
|
'is-invalid': !validAddress
|
|
});
|
|
|
|
return (
|
|
<section className="SwapAddress block">
|
|
<section className="row">
|
|
<div className="col-sm-8 col-sm-offset-2 col-xs-12">
|
|
<label className="SwapAddress-address">
|
|
<h4 className="SwapAddress-address-label">
|
|
{translate('SWAP_rec_add')} ({destinationKind})
|
|
</h4>
|
|
|
|
<input
|
|
className={inputClasses}
|
|
type="text"
|
|
value={destinationAddress}
|
|
onChange={this.onChangeDestinationAddress}
|
|
placeholder={donationAddressMap[destinationKind]}
|
|
/>
|
|
</label>
|
|
</div>
|
|
</section>
|
|
|
|
<section className="SwapAddress-submit row">
|
|
<SimpleButton
|
|
text={translate('SWAP_start_CTA')}
|
|
onClick={this.onClickPartTwoComplete}
|
|
disabled={!validAddress}
|
|
loading={isPostingOrder}
|
|
/>
|
|
</section>
|
|
</section>
|
|
);
|
|
}
|
|
}
|