2018-09-24 05:44:42 +02:00
|
|
|
// @flow
|
2017-12-21 22:08:54 +01:00
|
|
|
import React from 'react';
|
2018-03-26 23:32:43 +02:00
|
|
|
import Icon from 'component/common/icon';
|
2017-12-21 22:08:54 +01:00
|
|
|
import RewardLink from 'component/rewardLink';
|
2018-09-24 05:44:42 +02:00
|
|
|
import { rewards } from 'lbryinc';
|
2018-03-26 23:32:43 +02:00
|
|
|
import * as icons from 'constants/icons';
|
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">
|
2017-12-21 22:08:54 +01:00
|
|
|
<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>
|
2017-12-21 22:08:54 +01:00
|
|
|
<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}>
|
2017-12-21 22:08:54 +01:00
|
|
|
<td>{invitee.email}</td>
|
|
|
|
<td className="text-center">
|
|
|
|
{invitee.invite_accepted ? (
|
2018-03-26 23:32:43 +02:00
|
|
|
<Icon icon={icons.CHECK} />
|
2017-12-21 22:08:54 +01:00
|
|
|
) : (
|
|
|
|
<span className="empty">{__('unused')}</span>
|
|
|
|
)}
|
|
|
|
</td>
|
|
|
|
<td className="text-center">
|
|
|
|
{invitee.invite_reward_claimed ? (
|
2018-03-26 23:32:43 +02:00
|
|
|
<Icon icon={icons.CHECK} />
|
2017-12-21 22:08:54 +01:00
|
|
|
) : 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">
|
|
|
|
{__(
|
2017-12-21 22:08:54 +01:00
|
|
|
'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;
|