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

83 lines
2.5 KiB
React
Raw Normal View History

2020-02-26 19:39:03 +01:00
// @flow
import React, { useEffect } from 'react';
2020-02-26 19:39:03 +01:00
import ClaimListDiscover from 'component/claimListDiscover';
import * as CS from 'constants/claim_search';
2020-02-26 19:39:03 +01:00
import Nag from 'component/common/nag';
import { parseURI } from 'lbry-redux';
import Button from 'component/button';
import Card from 'component/common/card';
2020-07-15 00:49:10 +02:00
import { AUTO_FOLLOW_CHANNELS } from 'config';
2020-02-26 19:39:03 +01:00
type Props = {
subscribedChannels: Array<Subscription>,
onContinue: () => void,
onBack: () => void,
channelSubscribe: (sub: Subscription) => void,
2020-02-26 19:39:03 +01:00
};
const channelsToSubscribe = AUTO_FOLLOW_CHANNELS.trim()
.split(' ')
.filter(x => x !== '');
2020-02-26 19:39:03 +01:00
function UserChannelFollowIntro(props: Props) {
const { subscribedChannels, channelSubscribe, onContinue, onBack } = props;
2020-02-26 19:39:03 +01:00
const followingCount = (subscribedChannels && subscribedChannels.length) || 0;
// subscribe to lbry
useEffect(() => {
if (channelsToSubscribe && channelsToSubscribe.length) {
channelsToSubscribe.forEach(c =>
channelSubscribe({
channelName: parseURI(c).claimName,
uri: c,
})
);
}
}, []);
2020-02-26 19:39:03 +01:00
return (
<Card
2020-08-26 22:28:33 +02:00
title={__('Find channels to follow')}
subtitle={__(
2020-08-31 18:28:28 +02:00
'LBRY works better if you find and follow a couple creators you like. You can also block channels you never want to see.'
)}
actions={
<React.Fragment>
<div className="section__actions--between">
<Button button="secondary" onClick={onBack} label={__('Back')} />
<Button
button="primary"
type="Submit"
onClick={onContinue}
label={__('Continue')}
disabled={subscribedChannels.length < 1}
/>
</div>
<div className="section__body">
<ClaimListDiscover
defaultOrderBy={CS.ORDER_BY_TOP}
defaultFreshness={CS.FRESH_ALL}
claimType="channel"
defaultTags={CS.TAGS_FOLLOWED}
/>
{followingCount > 0 && (
<Nag
type="helpful"
message={
followingCount === 1
? __('Nice! You are currently following %followingCount% creator', { followingCount })
: __('Nice! You are currently following %followingCount% creators', { followingCount })
}
actionText={__('Continue')}
onClick={onContinue}
/>
)}
</div>
</React.Fragment>
}
/>
2020-02-26 19:39:03 +01:00
);
}
export default UserChannelFollowIntro;