lbry-desktop/src/renderer/component/inviteList/view.jsx

82 lines
2.5 KiB
React
Raw Normal View History

2018-09-24 05:44:42 +02:00
// @flow
2018-11-26 02:21:25 +01:00
import * as ICONS from 'constants/icons';
import React from 'react';
2018-03-26 23:32:43 +02:00
import Icon from 'component/common/icon';
import RewardLink from 'component/rewardLink';
2018-09-24 05:44:42 +02:00
import { rewards } from 'lbryinc';
2017-08-18 05:31:44 +02:00
2018-09-24 05:44:42 +02:00
type Props = {
invitees: ?Array<{
email: string,
invite_accepted: boolean,
invite_reward_claimed: boolean,
invite_reward_claimable: boolean,
}>,
};
class InviteList extends React.PureComponent<Props> {
2017-08-18 05:31:44 +02:00
render() {
const { invitees } = this.props;
if (!invitees) {
return null;
}
return (
2018-03-26 23:32:43 +02:00
<section className="card card--section">
<div className="card__title">
<h3>{__('Invite History')}</h3>
2017-08-18 05:31:44 +02:00
</div>
<div className="card__content">
2017-11-24 15:31:05 +01:00
{invitees.length === 0 && (
<span className="empty">{__("You haven't invited anyone.")} </span>
)}
{invitees.length > 0 && (
2018-03-26 23:32:43 +02:00
<table className="table table--stretch">
2017-08-18 05:31:44 +02:00
<thead>
<tr>
<th>{__('Invitee Email')}</th>
<th className="text-center">{__('Invite Status')}</th>
<th className="text-center">{__('Reward')}</th>
2017-08-18 05:31:44 +02:00
</tr>
</thead>
<tbody>
2018-09-24 05:44:42 +02:00
{invitees.map(invitee => (
<tr key={invitee.email}>
<td>{invitee.email}</td>
<td className="text-center">
{invitee.invite_accepted ? (
2018-11-26 02:21:25 +01:00
<Icon icon={ICONS.CHECK} />
) : (
<span className="empty">{__('unused')}</span>
)}
</td>
<td className="text-center">
{invitee.invite_reward_claimed ? (
2018-11-26 02:21:25 +01:00
<Icon icon={ICONS.CHECK} />
) : invitee.invite_reward_claimable ? (
<RewardLink label={__('claim')} reward_type={rewards.TYPE_REFERRAL} />
) : (
<span className="empty">{__('unclaimable')}</span>
)}
</td>
</tr>
))}
2017-08-18 05:31:44 +02:00
</tbody>
2017-11-24 15:31:05 +01:00
</table>
)}
2017-08-18 05:31:44 +02:00
</div>
2017-08-31 20:39:30 +02:00
<div className="card__content">
<div className="help">
{__(
'The maximum number of invite rewards is currently limited. Invite reward can only be claimed if the invitee passes the humanness test.'
2017-08-31 20:39:30 +02:00
)}
</div>
</div>
2017-08-18 05:31:44 +02:00
</section>
);
}
}
export default InviteList;