2020-02-26 19:39:03 +01:00
|
|
|
// @flow
|
2020-03-12 02:43:52 +01:00
|
|
|
import React, { useEffect } from 'react';
|
2020-02-26 19:39:03 +01:00
|
|
|
import ClaimListDiscover from 'component/claimListDiscover';
|
2020-02-10 20:43:24 +01:00
|
|
|
import * as CS from 'constants/claim_search';
|
2020-02-26 19:39:03 +01:00
|
|
|
import Nag from 'component/common/nag';
|
2020-03-12 02:43:52 +01:00
|
|
|
import { parseURI } from 'lbry-redux';
|
|
|
|
import Button from 'component/button';
|
2020-04-13 21:16:07 +02:00
|
|
|
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,
|
2020-03-12 02:43:52 +01:00
|
|
|
onBack: () => void,
|
|
|
|
channelSubscribe: (sub: Subscription) => void,
|
2020-02-26 19:39:03 +01:00
|
|
|
};
|
|
|
|
|
2020-09-21 19:28:18 +02:00
|
|
|
const channelsToSubscribe = AUTO_FOLLOW_CHANNELS.trim()
|
|
|
|
.split(' ')
|
|
|
|
.filter(x => x !== '');
|
2020-05-26 23:49:01 +02:00
|
|
|
|
2020-02-26 19:39:03 +01:00
|
|
|
function UserChannelFollowIntro(props: Props) {
|
2020-11-10 16:35:55 +01:00
|
|
|
const { subscribedChannels, channelSubscribe, onContinue, onBack } = props;
|
2020-02-26 19:39:03 +01:00
|
|
|
const followingCount = (subscribedChannels && subscribedChannels.length) || 0;
|
|
|
|
|
2020-03-12 02:43:52 +01:00
|
|
|
// subscribe to lbry
|
|
|
|
useEffect(() => {
|
2020-08-26 23:00:10 +02:00
|
|
|
if (channelsToSubscribe && channelsToSubscribe.length) {
|
|
|
|
channelsToSubscribe.forEach(c =>
|
|
|
|
channelSubscribe({
|
|
|
|
channelName: parseURI(c).claimName,
|
|
|
|
uri: c,
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
2020-03-12 02:43:52 +01:00
|
|
|
}, []);
|
|
|
|
|
2020-02-26 19:39:03 +01:00
|
|
|
return (
|
2020-04-13 21:16:07 +02:00
|
|
|
<Card
|
2020-08-26 22:28:33 +02:00
|
|
|
title={__('Find channels to follow')}
|
2020-04-13 21:16:07 +02:00
|
|
|
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.'
|
2020-04-13 21:16:07 +02:00
|
|
|
)}
|
|
|
|
actions={
|
|
|
|
<React.Fragment>
|
2020-08-24 06:00:10 +02:00
|
|
|
<div className="section__actions--between">
|
2020-04-13 21:16:07 +02:00
|
|
|
<Button button="secondary" onClick={onBack} label={__('Back')} />
|
|
|
|
<Button
|
2020-09-16 20:01:16 +02:00
|
|
|
button={subscribedChannels.length < 1 ? 'alt' : 'primary'}
|
2020-04-13 21:16:07 +02:00
|
|
|
onClick={onContinue}
|
2020-09-16 20:01:16 +02:00
|
|
|
label={subscribedChannels.length < 1 ? __('Skip') : __('Continue')}
|
2020-04-13 21:16:07 +02:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className="section__body">
|
|
|
|
<ClaimListDiscover
|
|
|
|
defaultOrderBy={CS.ORDER_BY_TOP}
|
|
|
|
defaultFreshness={CS.FRESH_ALL}
|
|
|
|
claimType="channel"
|
2020-09-15 16:23:00 +02:00
|
|
|
defaultTags={followingCount > 3 ? CS.TAGS_FOLLOWED : undefined}
|
2020-04-13 21:16:07 +02:00
|
|
|
/>
|
|
|
|
{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;
|