import React, { Component } from 'react'; import PropTypes from 'prop-types'; import translate from 'translations'; import { combineAndUpper } from 'api/bity'; class CoinTypeDropDown extends Component { constructor(props, context) { super(props, context); } static propTypes = { kind: PropTypes.any, onChange: PropTypes.any, kindOptions: PropTypes.any }; render() { return ( ); } } export default class WantToSwapMy extends Component { constructor(props, context) { super(props, context); } static propTypes = { bityRates: PropTypes.any, originAmount: PropTypes.any, destinationAmount: PropTypes.any, originKind: PropTypes.string, destinationKind: PropTypes.string, destinationKindOptions: PropTypes.array, originKindOptions: PropTypes.array, swapOriginKind: PropTypes.func, swapDestinationKind: PropTypes.func, swapOriginAmount: PropTypes.func, swapDestinationAmount: PropTypes.func }; onClickStartSwap() {} onChangeOriginAmount = amount => { let originAmountAsNumber = parseFloat(amount); if (originAmountAsNumber) { let pairName = combineAndUpper( this.props.originKind, this.props.destinationKind ); let bityRate = this.props.bityRates[pairName]; this.props.swapOriginAmount(originAmountAsNumber); this.props.swapDestinationAmount(originAmountAsNumber * bityRate); } else { this.props.swapOriginAmount(''); this.props.swapDestinationAmount(''); } }; onChangeDestinationAmount(amount) { let destinationAmountAsNumber = parseFloat(amount); if (destinationAmountAsNumber) { this.props.swapDestinationAmount(destinationAmountAsNumber); let pairName = combineAndUpper( this.props.destinationKind, this.props.originKind ); let bityRate = this.props.bityRates[pairName]; this.props.swapOriginAmount(destinationAmountAsNumber * bityRate); } else { this.props.swapOriginAmount(''); this.props.swapDestinationAmount(''); } } async onChangeDestinationKind(event) { let newDestinationKind = event.target.value; this.props.swapDestinationKind(newDestinationKind); } async onChangeOriginKind(event) { let newOriginKind = event.target.value; this.props.swapOriginKind(newOriginKind); } render() { const { originAmount, destinationAmount, originKind, destinationKind, destinationKindOptions, originKindOptions } = this.props; return (

{translate('SWAP_init_1')}

0 ? 'is-valid' : 'is-invalid'}`} type="number" placeholder="Amount" onChange={e => this.onChangeOriginAmount(e.target.value)} value={originAmount} />

{translate('SWAP_init_2')}

0 ? 'is-valid' : 'is-invalid'}`} type="number" placeholder="Amount" value={destinationAmount} onChange={e => this.onChangeDestinationAmount(e.target.value)} />
{translate('SWAP_init_CTA')}
); } }