mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-27 15:31:27 +00:00
Naomi comment websockets increase slow mode time to 5 seconds fix to prevent duplicate comments update livestream details fix channel pin electron boom fix rebase prune unused icons updating meme updating meme update livestream for naomi fix rebase DigitalCashNetwork remove electroboom pin Slavguns Joel So he can edit his claims add streamTypes param to claimTilesDiscover so following section can search for all types of content fix typo update meme fixes publish page fixes pending fix notifications fix comments finally fix claim preview no mature for simplesite Revert "no mature for simplesite" This reverts commit 9f89242d85e0cacf44cbf0a683bebbe50840c466. fix livestream preview click no mature on simple site try fixing invite page crash probably needs more changes.
136 lines
3.9 KiB
JavaScript
136 lines
3.9 KiB
JavaScript
// @flow
|
|
// import * as ICONS from 'constants/icons';
|
|
// import * as PAGES from 'constants/pages';
|
|
import * as CS from 'constants/claim_search';
|
|
import React from 'react';
|
|
import Page from 'component/page';
|
|
// import Button from 'component/button';
|
|
import ClaimListDiscover from 'component/claimListDiscover';
|
|
// import { toCapitalCase } from 'util/string';
|
|
import { SIMPLE_SITE } from 'config';
|
|
|
|
const MORE_CHANNELS_ANCHOR = 'MoreChannels';
|
|
|
|
type Props = {
|
|
followedTags: Array<Tag>,
|
|
subscribedChannels: Array<Subscription>,
|
|
blockedChannels: Array<string>,
|
|
homepageData: any,
|
|
};
|
|
|
|
function ChannelsFollowingDiscover(props: Props) {
|
|
const {
|
|
// followedTags,
|
|
// subscribedChannels,
|
|
// blockedChannels,
|
|
homepageData,
|
|
} = props;
|
|
const { PRIMARY_CONTENT_CHANNEL_IDS } = homepageData;
|
|
// let rowData: Array<ChannelsFollowingItem> = [];
|
|
// const notChannels = subscribedChannels
|
|
// .map(({ uri }) => uri)
|
|
// .concat(blockedChannels)
|
|
// .map(uri => uri.split('#')[1]);
|
|
|
|
// rowData.push({
|
|
// title: 'Top Channels Of All Time',
|
|
// link: `/$/${PAGES.DISCOVER}?claim_type=channel&${CS.ORDER_BY_KEY}=${CS.ORDER_BY_TOP}&${CS.FRESH_KEY}=${CS.FRESH_ALL}`,
|
|
// options: {
|
|
// pageSize: 12,
|
|
// claimType: 'channel',
|
|
// orderBy: ['effective_amount'],
|
|
// },
|
|
// });
|
|
|
|
// rowData.push({
|
|
// title: 'Latest From @lbrycast',
|
|
// link: `/@lbrycast:4`,
|
|
// options: {
|
|
// orderBy: ['release_time'],
|
|
// pageSize: 8,
|
|
// channelIds: ['4c29f8b013adea4d5cca1861fb2161d5089613ea'],
|
|
// },
|
|
// });
|
|
|
|
// rowData.push({
|
|
// title: 'Trending Channels',
|
|
// link: `/$/${PAGES.DISCOVER}?claim_type=channel`,
|
|
// options: {
|
|
// pageSize: 8,
|
|
// claimType: 'channel',
|
|
// orderBy: ['trending_group', 'trending_mixed'],
|
|
// },
|
|
// });
|
|
|
|
// if (followedTags.length > 0 && followedTags.length < 5) {
|
|
// const followedRows = followedTags.map((tag: Tag) => ({
|
|
// title: `Trending Channels for #${toCapitalCase(tag.name)}`,
|
|
// link: `/$/${PAGES.DISCOVER}?t=${tag.name}&claim_type=channel`,
|
|
// options: {
|
|
// claimType: 'channel',
|
|
// pageSize: 4,
|
|
// tags: [tag.name],
|
|
// },
|
|
// }));
|
|
// rowData.push(...followedRows);
|
|
// }
|
|
|
|
// if (followedTags.length > 4) {
|
|
// rowData.push({
|
|
// title: 'Trending For Your Tags',
|
|
// link: `/$/${PAGES.TAGS_FOLLOWING}?claim_type=channel`,
|
|
// options: {
|
|
// claimType: 'channel',
|
|
// tags: followedTags.map(tag => tag.name),
|
|
// },
|
|
// });
|
|
// }
|
|
|
|
// const rowDataWithGenericOptions = rowData.map(row => {
|
|
// return {
|
|
// ...row,
|
|
// options: {
|
|
// ...row.options,
|
|
// notChannels,
|
|
// },
|
|
// };
|
|
// });
|
|
|
|
return (
|
|
<Page>
|
|
{/* {rowDataWithGenericOptions.map(({ title, link, help, options = {} }) => (
|
|
<div key={title} className="claim-grid__wrapper">
|
|
<h1 className="section__actions">
|
|
{link ? (
|
|
<Button
|
|
className="claim-grid__title"
|
|
button="link"
|
|
navigate={link}
|
|
iconRight={ICONS.ARROW_RIGHT}
|
|
label={__(title)}
|
|
/>
|
|
) : (
|
|
<span className="claim-grid__title">{__(title)}</span>
|
|
)}
|
|
{help}
|
|
</h1>
|
|
|
|
<ClaimTilesDiscover {...options} />
|
|
</div>
|
|
))} */}
|
|
|
|
<ClaimListDiscover
|
|
defaultOrderBy={CS.ORDER_BY_TRENDING}
|
|
defaultFreshness={CS.FRESH_ALL}
|
|
claimType={CS.CLAIM_CHANNEL}
|
|
claimIds={SIMPLE_SITE ? PRIMARY_CONTENT_CHANNEL_IDS : undefined}
|
|
scrollAnchor={MORE_CHANNELS_ANCHOR}
|
|
maxPages={3}
|
|
hideFilters
|
|
header={<h1 className="section__title">{__('Moon cheese is an acquired taste')}</h1>}
|
|
/>
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
export default ChannelsFollowingDiscover;
|