lbry-desktop/ui/page/invite/view.jsx

54 lines
1.5 KiB
React
Raw Normal View History

// @flow
import React from 'react';
2018-03-26 23:32:43 +02:00
import BusyIndicator from 'component/common/busy-indicator';
import InviteNew from 'component/inviteNew';
import InviteList from 'component/inviteList';
2019-09-26 18:07:11 +02:00
import Page from 'component/page';
import RewardAuthIntro from 'component/rewardAuthIntro';
2017-08-18 05:31:44 +02:00
type Props = {
isPending: boolean,
isFailed: boolean,
inviteAcknowledged: boolean,
authenticated: boolean,
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() {
const { isPending, isFailed, authenticated } = this.props;
2017-08-18 05:31:44 +02:00
return (
2019-09-26 18:07:11 +02:00
<Page>
{!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>
{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;