import { TChangeStepSwap, TInitSwap } from 'actions/swap'; import { NormalizedBityRates, NormalizedOptions, SwapInput } from 'reducers/swap/types'; import SimpleButton from 'components/ui/SimpleButton'; import bityConfig, { generateKindMax, generateKindMin, WhitelistedCoins } from 'config/bity'; import React, { Component } from 'react'; import translate from 'translations'; import { combineAndUpper } from 'utils/formatters'; import { Dropdown } from 'components/ui'; import Spinner from 'components/ui/Spinner'; import intersection from 'lodash/intersection'; import without from 'lodash/without'; import './CurrencySwap.scss'; export interface StateProps { bityRates: NormalizedBityRates; options: NormalizedOptions; } export interface ActionProps { changeStepSwap: TChangeStepSwap; initSwap: TInitSwap; } interface State { disabled: boolean; origin: SwapInput; destination: SwapInput; originKindOptions: WhitelistedCoins[]; destinationKindOptions: WhitelistedCoins[]; originErr: string; destinationErr: string; } type Props = StateProps & ActionProps; export default class CurrencySwap extends Component { public state = { disabled: true, origin: { id: 'BTC', amount: NaN } as SwapInput, destination: { id: 'ETH', amount: NaN } as SwapInput, originKindOptions: ['BTC', 'ETH'] as WhitelistedCoins[], destinationKindOptions: ['ETH'] as WhitelistedCoins[], originErr: '', destinationErr: '' }; public componentDidUpdate(prevProps: Props, prevState: State) { const { origin, destination } = this.state; const { options } = this.props; if (origin !== prevState.origin) { this.setDisabled(origin, destination); } if (options.allIds !== prevProps.options.allIds) { const originKindOptions: WhitelistedCoins[] = intersection( options.allIds, this.state.originKindOptions ); const destinationKindOptions: WhitelistedCoins[] = without(options.allIds, origin.id); this.setState({ originKindOptions, destinationKindOptions }); } } public getMinMax = (kind: WhitelistedCoins) => { let min; let max; if (kind !== 'BTC') { const bityPairRate = this.props.bityRates.byId['BTC' + kind].rate; min = generateKindMin(bityPairRate, kind); max = generateKindMax(bityPairRate, kind); } else { min = bityConfig.BTCMin; max = bityConfig.BTCMax; } return { min, max }; }; public isMinMaxValid = (amount: number, kind: WhitelistedCoins) => { const rate = this.getMinMax(kind); const higherThanMin = amount >= rate.min; const lowerThanMax = amount <= rate.max; return higherThanMin && lowerThanMax; }; public setDisabled(origin: SwapInput, destination: SwapInput) { const amountsValid = origin.amount && destination.amount; const minMaxValid = this.isMinMaxValid(origin.amount, origin.id); const disabled = !(amountsValid && minMaxValid); const createErrString = (kind: WhitelistedCoins, amount: number) => { const rate = this.getMinMax(kind); let errString; if (amount > rate.max) { errString = `Maximum ${rate.max} ${kind}`; } else { errString = `Minimum ${rate.min} ${kind}`; } return errString; }; const showError = disabled && amountsValid; const originErr = showError ? createErrString(origin.id, origin.amount) : ''; const destinationErr = showError ? createErrString(destination.id, destination.amount) : ''; this.setState({ disabled, originErr, destinationErr }); } public onClickStartSwap = () => { const { origin, destination } = this.state; const { changeStepSwap, initSwap } = this.props; initSwap({ origin, destination }); changeStepSwap(2); }; public setOriginAndDestinationToInitialVal = () => { this.setState({ origin: { ...this.state.origin, amount: NaN }, destination: { ...this.state.destination, amount: NaN } }); }; public updateOriginAmount = (origin: SwapInput, destination: SwapInput, amount: number) => { if (amount || amount === 0) { const pairName = combineAndUpper(origin.id, destination.id); const bityRate = this.props.bityRates.byId[pairName].rate; const destinationAmount = amount * bityRate; this.setState({ origin: { ...this.state.origin, amount }, destination: { ...this.state.destination, amount: destinationAmount } }); } else { this.setOriginAndDestinationToInitialVal(); } }; public updateDestinationAmount = (origin: SwapInput, destination: SwapInput, amount: number) => { if (amount || amount === 0) { const pairNameReversed = combineAndUpper(destination.id, origin.id); const bityRate = this.props.bityRates.byId[pairNameReversed].rate; const originAmount = amount * bityRate; this.setState({ origin: { ...this.state.origin, amount: originAmount }, destination: { ...this.state.destination, amount } }); } else { this.setOriginAndDestinationToInitialVal(); } }; public onChangeAmount = (event: React.FormEvent) => { const type = event.currentTarget.id; const { origin, destination } = this.state; const amount = parseFloat(event.currentTarget.value); type === 'origin-swap-input' ? this.updateOriginAmount(origin, destination, amount) : this.updateDestinationAmount(origin, destination, amount); }; public onChangeOriginKind = (newOption: WhitelistedCoins) => { const { origin, destination, destinationKindOptions } = this.state; const newDestinationAmount = () => { const pairName = combineAndUpper(destination.id, origin.id); const bityRate = this.props.bityRates.byId[pairName].rate; return bityRate * origin.amount; }; this.setState({ origin: { ...origin, id: newOption }, destination: { id: newOption === destination.id ? origin.id : destination.id, amount: newDestinationAmount() ? newDestinationAmount() : destination.amount }, destinationKindOptions: without([...destinationKindOptions, origin.id], newOption) }); }; public onChangeDestinationKind = (newOption: WhitelistedCoins) => { const { origin, destination } = this.state; const newOriginAmount = () => { const pairName = combineAndUpper(newOption, origin.id); const bityRate = this.props.bityRates.byId[pairName].rate; return bityRate * destination.amount; }; this.setState({ origin: { ...origin, amount: newOriginAmount() ? newOriginAmount() : origin.amount }, destination: { ...destination, id: newOption } }); }; public render() { const { bityRates } = this.props; const { origin, destination, originKindOptions, destinationKindOptions, originErr, destinationErr } = this.state; const OriginKindDropDown = Dropdown as new () => Dropdown; const DestinationKindDropDown = Dropdown as new () => Dropdown; const pairName = combineAndUpper(origin.id, destination.id); const bityLoaded = bityRates.byId[pairName] ? bityRates.byId[pairName].id : false; return (

{translate('SWAP_init_1')}

{bityLoaded ? (
{originErr && {originErr}}

{translate('SWAP_init_2')}

{destinationErr && ( {destinationErr} )}
) : ( )}
); } }