118 lines
4.0 KiB
TypeScript
118 lines
4.0 KiB
TypeScript
import { RestartSwapAction } from 'actions/swap';
|
|
import { SwapInput } from 'reducers/swap/types';
|
|
import React, { PureComponent } from 'react';
|
|
import translate from 'translations';
|
|
import classnames from 'classnames';
|
|
import { toFixedIfLarger } from 'utils/formatters';
|
|
import './SwapInfoHeader.scss';
|
|
import SwapInfoHeaderTitle from './SwapInfoHeaderTitle';
|
|
|
|
export interface SwapInfoHeaderProps {
|
|
origin: SwapInput;
|
|
destination: SwapInput;
|
|
reference: string;
|
|
secondsRemaining: number | null;
|
|
provider: string;
|
|
restartSwap(): RestartSwapAction;
|
|
}
|
|
|
|
export default class SwapInfoHeader extends PureComponent<SwapInfoHeaderProps, {}> {
|
|
public computedOriginDestinationRatio = () => {
|
|
const { origin, destination } = this.props;
|
|
if (!origin.amount || !destination.amount) {
|
|
return;
|
|
}
|
|
return (destination.amount as number) / (origin.amount as number);
|
|
};
|
|
|
|
public isExpanded = () => {
|
|
const { reference, restartSwap } = this.props;
|
|
return reference && restartSwap;
|
|
};
|
|
|
|
public computedClass = () => {
|
|
if (this.isExpanded()) {
|
|
return 'SwapInfo-details-block col-sm-3';
|
|
} else {
|
|
return 'SwapInfo-details-block col-sm-4';
|
|
}
|
|
};
|
|
|
|
public formattedTime = () => {
|
|
const { secondsRemaining } = this.props;
|
|
if (secondsRemaining || secondsRemaining === 0) {
|
|
const minutes = Math.floor(secondsRemaining / 60);
|
|
const seconds = secondsRemaining - minutes * 60;
|
|
const stringMinutes = minutes < 10 ? '0' + minutes : minutes;
|
|
const stringSeconds = seconds < 10 ? '0' + seconds : seconds;
|
|
return stringMinutes + ':' + stringSeconds;
|
|
} else {
|
|
throw Error('secondsRemaining must be a number');
|
|
}
|
|
};
|
|
|
|
public render() {
|
|
const computedOriginDestinationRatio = this.computedOriginDestinationRatio();
|
|
const { reference, origin, destination, restartSwap, provider } = this.props;
|
|
const SwapInfoHeaderTitleProps = {
|
|
restartSwap,
|
|
provider
|
|
};
|
|
const referenceClass = classnames(
|
|
provider === 'shapeshift' && 'SwapInfo-details-block-shapeshift',
|
|
'SwapInfo-details-block-value'
|
|
);
|
|
return (
|
|
<div className="SwapInfo">
|
|
<SwapInfoHeaderTitle {...SwapInfoHeaderTitleProps} />
|
|
<section className="SwapInfo-details row">
|
|
{/*Amount to send*/}
|
|
{!this.isExpanded() && (
|
|
<div className={this.computedClass()}>
|
|
<h3 className="SwapInfo-details-block-value">{` ${origin.amount} ${
|
|
origin.label
|
|
}`}</h3>
|
|
<p className="SwapInfo-details-block-label">{translate('SEND_AMOUNT')}</p>
|
|
</div>
|
|
)}
|
|
|
|
{/*Reference Number*/}
|
|
{this.isExpanded() && (
|
|
<div className={this.computedClass()}>
|
|
<h3 className={referenceClass}>{reference}</h3>
|
|
<p className="SwapInfo-details-block-label">{translate('SWAP_REF_NUM')}</p>
|
|
</div>
|
|
)}
|
|
|
|
{/*Time remaining*/}
|
|
{this.isExpanded() && (
|
|
<div className={this.computedClass()}>
|
|
<h3 className="SwapInfo-details-block-value">{this.formattedTime()}</h3>
|
|
<p className="SwapInfo-details-block-label">{translate('SWAP_TIME')}</p>
|
|
</div>
|
|
)}
|
|
|
|
{/*Amount to Receive*/}
|
|
<div className={this.computedClass()}>
|
|
<h3 className="SwapInfo-details-block-value">
|
|
{` ${toFixedIfLarger(destination.amount as number, 4)} ${destination.label}`}
|
|
</h3>
|
|
<p className="SwapInfo-details-block-label">{translate('SWAP_REC_AMT')}</p>
|
|
</div>
|
|
|
|
{/*Your rate*/}
|
|
<div className={this.computedClass()}>
|
|
<h3 className="SwapInfo-details-block-value">
|
|
{`${computedOriginDestinationRatio &&
|
|
toFixedIfLarger(computedOriginDestinationRatio, 4)} ${destination.label}/${
|
|
origin.label
|
|
}`}
|
|
</h3>
|
|
<p className="SwapInfo-details-block-label">{translate('SWAP_YOUR_RATE')}</p>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
);
|
|
}
|
|
}
|