mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
61 lines
1.8 KiB
JavaScript
61 lines
1.8 KiB
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import Button from 'component/button';
|
|
import CreditAmount from 'component/common/credit-amount';
|
|
import BusyIndicator from 'component/common/busy-indicator';
|
|
|
|
type Props = {
|
|
unclaimedRewardAmount: number,
|
|
fetching: boolean,
|
|
fetchRewards: () => void,
|
|
};
|
|
|
|
class RewardSummary extends React.Component<Props> {
|
|
componentDidMount() {
|
|
this.props.fetchRewards();
|
|
}
|
|
|
|
render() {
|
|
const { unclaimedRewardAmount, fetching } = this.props;
|
|
const hasRewards = unclaimedRewardAmount > 0;
|
|
|
|
return (
|
|
<section className="card card--section">
|
|
<div className="card__title">
|
|
{__('Rewards')}
|
|
{fetching && <BusyIndicator />}
|
|
</div>
|
|
<p className="card__subtitle">
|
|
{!fetching &&
|
|
(hasRewards ? (
|
|
<React.Fragment>
|
|
{__('You have')}
|
|
|
|
<CreditAmount noStyle amount={unclaimedRewardAmount} precision={8} />
|
|
|
|
{__('in unclaimed rewards')}.
|
|
</React.Fragment>
|
|
) : (
|
|
<React.Fragment>
|
|
{__('There are no rewards available at this time, please check back later')}.
|
|
</React.Fragment>
|
|
))}
|
|
</p>
|
|
<div className="card__actions">
|
|
<Button
|
|
button="primary"
|
|
navigate="/rewards"
|
|
label={hasRewards ? __('Claim Rewards') : __('View Rewards')}
|
|
/>
|
|
</div>
|
|
<p className="help help--padded">
|
|
{__('Read our')}{' '}
|
|
<Button button="link" label={__('FAQ')} href="https://lbry.io/faq/rewards" />{' '}
|
|
{__('to learn more about LBRY Rewards')}.
|
|
</p>
|
|
</section>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default RewardSummary;
|