2019-01-27 01:23:47 +01:00
|
|
|
// @flow
|
2017-12-21 22:08:54 +01:00
|
|
|
import React from 'react';
|
2018-03-26 23:32:43 +02:00
|
|
|
import BusyIndicator from 'component/common/busy-indicator';
|
2017-12-21 22:08:54 +01:00
|
|
|
import InviteNew from 'component/inviteNew';
|
|
|
|
import InviteList from 'component/inviteList';
|
2019-09-26 18:07:11 +02:00
|
|
|
import Page from 'component/page';
|
2020-01-22 18:46:18 +01:00
|
|
|
import RewardAuthIntro from 'component/rewardAuthIntro';
|
2017-08-18 05:31:44 +02:00
|
|
|
|
2019-01-27 01:23:47 +01:00
|
|
|
type Props = {
|
|
|
|
isPending: boolean,
|
|
|
|
isFailed: boolean,
|
|
|
|
inviteAcknowledged: boolean,
|
2020-01-22 18:46:18 +01:00
|
|
|
authenticated: boolean,
|
2019-01-27 01:23:47 +01:00
|
|
|
acknowledgeInivte: () => void,
|
|
|
|
fetchInviteStatus: () => void,
|
|
|
|
};
|
|
|
|
|
|
|
|
class InvitePage extends React.PureComponent<Props> {
|
|
|
|
componentDidMount() {
|
|
|
|
const { fetchInviteStatus, inviteAcknowledged, acknowledgeInivte } = this.props;
|
|
|
|
fetchInviteStatus();
|
|
|
|
|
|
|
|
if (!inviteAcknowledged) {
|
|
|
|
acknowledgeInivte();
|
|
|
|
}
|
2017-08-18 05:31:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2020-01-22 18:46:18 +01:00
|
|
|
const { isPending, isFailed, authenticated } = this.props;
|
2017-08-18 05:31:44 +02:00
|
|
|
|
|
|
|
return (
|
2019-09-26 18:07:11 +02:00
|
|
|
<Page>
|
2020-01-22 18:46:18 +01:00
|
|
|
{!authenticated ? (
|
|
|
|
<RewardAuthIntro title={__('Sign In to lbry.tv to Earn Rewards From Inviting Your Friends')} />
|
|
|
|
) : (
|
2019-03-05 05:46:57 +01:00
|
|
|
<React.Fragment>
|
2020-01-22 18:46:18 +01:00
|
|
|
{isPending && <BusyIndicator message={__('Checking your invite status')} />}
|
|
|
|
{!isPending && isFailed && <span className="empty">{__('Failed to retrieve invite status.')}</span>}
|
|
|
|
{!isPending && !isFailed && (
|
|
|
|
<React.Fragment>
|
|
|
|
{' '}
|
|
|
|
<InviteNew />
|
|
|
|
<InviteList />
|
|
|
|
</React.Fragment>
|
|
|
|
)}
|
2019-03-05 05:46:57 +01:00
|
|
|
</React.Fragment>
|
|
|
|
)}
|
2019-09-26 18:07:11 +02:00
|
|
|
</Page>
|
2017-08-18 05:31:44 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default InvitePage;
|