lbry-desktop/ui/component/rewardTotal/view.jsx

25 lines
743 B
React
Raw Normal View History

2019-06-17 22:32:38 +02:00
// @flow
import React from 'react';
import TotalBackground from './total-background.png';
2019-09-27 20:56:15 +02:00
import useTween from 'effects/use-tween';
2019-06-17 22:32:38 +02:00
type Props = {
rewards: Array<Reward>,
};
function RewardTotal(props: Props) {
const { rewards } = props;
const rewardTotal = rewards.reduce((acc, val) => acc + val.reward_amount, 0);
2019-07-01 18:47:10 +02:00
const modifier = rewardTotal > 500 ? 1 : 15; // used to tweak the reward count speed
const total = useTween(rewardTotal * modifier);
2019-06-17 22:32:38 +02:00
const integer = Math.round(total * rewardTotal);
return (
<section className="card card--section card--reward-total" style={{ backgroundImage: `url(${TotalBackground})` }}>
2019-07-21 23:31:22 +02:00
{integer} LBC {__('Earned From Rewards')}
2019-06-17 22:32:38 +02:00
</section>
);
}
export default RewardTotal;