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

65 lines
1.5 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
import React from 'react';
2018-03-26 23:32:43 +02:00
import ButtonTransaction from 'component/common/transaction-link';
import moment from 'moment';
2018-03-26 23:32:43 +02:00
type Reward = {
id: string,
reward_title: string,
reward_amount: number,
transaction_id: string,
created_at: string,
};
type Props = {
rewards: Array<Reward>,
};
const RewardListClaimed = (props: Props) => {
const { rewards } = props;
if (!rewards || !rewards.length) {
return null;
}
return (
2019-06-17 22:32:38 +02:00
<section className="card">
<header className="table__header">
2019-09-30 07:25:31 +02:00
<h2 className="card__title">{__('Claimed Rewards')}</h2>
<p className="card__subtitle">
{__(
2019-02-01 16:56:54 +01:00
'Reward history is tied to your email. In case of lost or multiple wallets, your balance may differ from the amounts claimed'
2019-03-05 05:46:57 +01:00
)}
.
</p>
</header>
2018-03-26 23:32:43 +02:00
2019-07-21 23:31:22 +02:00
<table className="table table--rewards">
2018-03-26 23:32:43 +02:00
<thead>
<tr>
<th>{__('Title')}</th>
<th>{__('Amount')}</th>
<th>{__('Transaction')}</th>
<th>{__('Date')}</th>
</tr>
</thead>
<tbody>
{rewards.reverse().map(reward => (
2018-03-26 23:32:43 +02:00
<tr key={reward.id}>
<td>{reward.reward_title}</td>
<td>{reward.reward_amount}</td>
<td>
<ButtonTransaction id={reward.transaction_id} />
</td>
<td>{moment(reward.created_at).format('LLL')}</td>
</tr>
2018-03-26 23:32:43 +02:00
))}
</tbody>
</table>
</section>
);
};
export default RewardListClaimed;