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

116 lines
3.7 KiB
React
Raw Normal View History

2020-02-26 19:39:03 +01:00
// @flow
import { CUSTOM_HOMEPAGE, SIMPLE_SITE, SITE_NAME } from 'config';
import { parseURI } from 'util/lbryURI';
import * as CS from 'constants/claim_search';
import COMMUNITY_CHANNELS from 'constants/community_channels';
import Button from 'component/button';
import Card from 'component/common/card';
import ClaimListDiscover from 'component/claimListDiscover';
import Nag from 'component/common/nag';
import React from 'react';
2020-02-26 19:39:03 +01:00
type Props = {
homepageData: any,
language: string,
2021-04-25 07:31:19 +02:00
prefsReady: boolean,
subscribedChannels: Array<Subscription>,
channelSubscribe: (string, string) => void,
onContinue: () => void,
2020-02-26 19:39:03 +01:00
};
function UserChannelFollowIntro(props: Props) {
const { homepageData, language, prefsReady, subscribedChannels, channelSubscribe, onContinue } = props;
const { PRIMARY_CONTENT, LATEST } = homepageData;
const autoFollowChannels = COMMUNITY_CHANNELS[language] || COMMUNITY_CHANNELS['en'];
const channelsToSubscribe = autoFollowChannels
.trim()
.split(' ')
.filter((x) => x !== '');
2021-07-17 00:20:22 +02:00
let channelIds;
if (CUSTOM_HOMEPAGE) {
if (LATEST) {
channelIds = LATEST.channelIds;
} else if (PRIMARY_CONTENT) {
channelIds = PRIMARY_CONTENT.channelIds;
}
2021-07-17 00:20:22 +02:00
}
2020-02-26 19:39:03 +01:00
const followingCount = (subscribedChannels && subscribedChannels.length) || 0;
const followingCountIgnoringAutoFollows = (subscribedChannels || []).filter(
(channel) => !channelsToSubscribe.includes(channel.uri)
).length;
2020-02-26 19:39:03 +01:00
// subscribe to odysee channels
React.useEffect(() => {
2021-04-25 07:31:19 +02:00
if (channelsToSubscribe && channelsToSubscribe.length && prefsReady) {
const delayedChannelSubscribe = () => {
channelsToSubscribe.forEach((channelUri) => {
let claimName;
try {
const { claimName: name } = parseURI(channelUri);
claimName = name;
} catch (e) {}
if (claimName) channelSubscribe(claimName, channelUri);
});
2021-04-25 07:31:19 +02:00
};
setTimeout(delayedChannelSubscribe, 1000);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
2021-04-25 07:31:19 +02:00
}, [prefsReady]);
2020-02-26 19:39:03 +01:00
return (
<Card
2022-02-18 09:15:56 +01:00
className="channelsToFollow-wrapper"
2020-08-26 22:28:33 +02:00
title={__('Find channels to follow')}
subtitle={__(
2021-07-23 05:51:29 +02:00
'%SITE_NAME% works better if you find and follow a couple creators you like. You can also block channels you never want to see.',
{ SITE_NAME }
)}
actions={
<div className="section__body">
<ClaimListDiscover
hideFilters={SIMPLE_SITE}
hideAdvancedFilter={SIMPLE_SITE}
meta={
<Button
button={subscribedChannels.length < 1 ? 'alt' : 'primary'}
onClick={onContinue}
label={subscribedChannels.length < 1 ? __('Skip') : __('Continue')}
/>
}
defaultOrderBy={CS.ORDER_BY_TRENDING}
defaultFreshness={CS.FRESH_ALL}
claimType="channel"
claimIds={(CUSTOM_HOMEPAGE && channelIds) || undefined}
defaultTags={followingCount > 3 ? CS.TAGS_FOLLOWED : undefined}
maxPages={SIMPLE_SITE ? 3 : undefined}
/>
{followingCountIgnoringAutoFollows > 0 && (
<Nag
type="helpful"
message={__(
followingCountIgnoringAutoFollows === 1
? 'Nice! You are currently following %followingCount% creator'
: 'Nice! You are currently following %followingCount% creators',
{
followingCount: followingCountIgnoringAutoFollows,
}
)}
actionText={__('Continue')}
onClick={onContinue}
/>
)}
</div>
}
/>
2020-02-26 19:39:03 +01:00
);
}
export default UserChannelFollowIntro;