2018-03-26 23:32:43 +02:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import classnames from 'classnames';
|
2019-08-27 16:43:42 +02:00
|
|
|
import { formatCredits, formatFullPrice } from 'lbry-redux';
|
2018-03-26 23:32:43 +02:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
amount: number,
|
|
|
|
precision: number,
|
|
|
|
showFree: boolean,
|
|
|
|
showFullPrice: boolean,
|
|
|
|
showPlus: boolean,
|
|
|
|
isEstimate?: boolean,
|
2018-07-25 02:50:04 +02:00
|
|
|
showLBC?: boolean,
|
2018-03-26 23:32:43 +02:00
|
|
|
fee?: boolean,
|
2018-10-19 22:38:07 +02:00
|
|
|
badge?: boolean,
|
2020-05-11 17:54:39 +02:00
|
|
|
className?: string,
|
2018-03-26 23:32:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class CreditAmount extends React.PureComponent<Props> {
|
|
|
|
static defaultProps = {
|
|
|
|
precision: 2,
|
|
|
|
showFree: false,
|
|
|
|
showFullPrice: false,
|
|
|
|
showPlus: false,
|
2018-07-25 02:50:04 +02:00
|
|
|
showLBC: true,
|
2019-01-08 19:48:09 +01:00
|
|
|
badge: true,
|
2018-03-26 23:32:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
2020-05-11 17:54:39 +02:00
|
|
|
const {
|
|
|
|
amount,
|
|
|
|
precision,
|
|
|
|
showFullPrice,
|
|
|
|
showFree,
|
|
|
|
showPlus,
|
|
|
|
isEstimate,
|
|
|
|
fee,
|
|
|
|
showLBC,
|
|
|
|
badge,
|
|
|
|
className,
|
|
|
|
} = this.props;
|
2018-03-26 23:32:43 +02:00
|
|
|
|
|
|
|
const minimumRenderableAmount = 10 ** (-1 * precision);
|
|
|
|
const fullPrice = formatFullPrice(amount, 2);
|
|
|
|
const isFree = parseFloat(amount) === 0;
|
|
|
|
|
|
|
|
let formattedAmount;
|
|
|
|
if (showFullPrice) {
|
|
|
|
formattedAmount = fullPrice;
|
|
|
|
} else {
|
|
|
|
formattedAmount =
|
|
|
|
amount > 0 && amount < minimumRenderableAmount
|
|
|
|
? `<${minimumRenderableAmount}`
|
2019-08-27 16:43:42 +02:00
|
|
|
: formatCredits(amount, precision, true);
|
2018-03-26 23:32:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
let amountText;
|
|
|
|
if (showFree && isFree) {
|
2019-07-02 23:00:05 +02:00
|
|
|
amountText = __('Free');
|
2018-03-26 23:32:43 +02:00
|
|
|
} else {
|
|
|
|
amountText = formattedAmount;
|
|
|
|
|
|
|
|
if (showPlus && amount > 0) {
|
|
|
|
amountText = `+${amountText}`;
|
|
|
|
}
|
|
|
|
|
2018-07-25 02:50:04 +02:00
|
|
|
if (showLBC) {
|
2020-01-03 22:58:12 +01:00
|
|
|
amountText = __('%amount% LBC', { amount: amountText });
|
2018-03-26 23:32:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fee) {
|
2020-01-03 22:58:12 +01:00
|
|
|
amountText = __('%amount% fee', { amount: amountText });
|
2018-03-26 23:32:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<span
|
|
|
|
title={fullPrice}
|
2020-05-11 17:54:39 +02:00
|
|
|
className={classnames(className, {
|
2018-10-31 17:33:45 +01:00
|
|
|
badge,
|
2019-01-08 19:03:49 +01:00
|
|
|
'badge--cost': badge && amount > 0,
|
2018-10-19 22:38:07 +02:00
|
|
|
'badge--free': badge && isFree,
|
2018-03-26 23:32:43 +02:00
|
|
|
})}
|
|
|
|
>
|
2020-05-21 17:38:28 +02:00
|
|
|
<span className="credit-amount">{amountText}</span>
|
2018-03-26 23:32:43 +02:00
|
|
|
|
|
|
|
{isEstimate ? (
|
2019-05-07 23:38:29 +02:00
|
|
|
<span className="credit-amount__estimate" title={__('This is an estimate and does not include data fees')}>
|
2018-03-26 23:32:43 +02:00
|
|
|
*
|
|
|
|
</span>
|
|
|
|
) : null}
|
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default CreditAmount;
|