// @flow import * as ICONS from 'constants/icons'; import * as PAGES from 'constants/pages'; import { SITE_NAME, SIMPLE_SITE, ENABLE_NO_SOURCE_CLAIMS } from 'config'; import React from 'react'; import Page from 'component/page'; import Button from 'component/button'; import ClaimTilesDiscover from 'component/claimTilesDiscover'; import ClaimPreviewTile from 'component/claimPreviewTile'; import Icon from 'component/common/icon'; import WaitUntilOnPage from 'component/common/wait-until-on-page'; import useGetLivestreams from 'effects/use-get-livestreams'; import { GetLinksData } from 'util/buildHomepage'; // @if TARGET='web' import Pixel from 'web/component/pixel'; import Meme from 'web/component/meme'; // @endif type Props = { authenticated: boolean, followedTags: Array, subscribedChannels: Array, showNsfw: boolean, homepageData: any, }; function HomePage(props: Props) { const { followedTags, subscribedChannels, authenticated, showNsfw, homepageData } = props; const showPersonalizedChannels = (authenticated || !IS_WEB) && subscribedChannels && subscribedChannels.length > 0; const showPersonalizedTags = (authenticated || !IS_WEB) && followedTags && followedTags.length > 0; const showIndividualTags = showPersonalizedTags && followedTags.length < 5; const { livestreamMap } = useGetLivestreams(); const rowData: Array = GetLinksData( homepageData, true, authenticated, showPersonalizedChannels, showPersonalizedTags, subscribedChannels, followedTags, showIndividualTags, showNsfw ); function getRowElements(title, route, link, icon, help, options, index, pinUrls) { const tilePlaceholder = (
    {new Array(options.pageSize || 8).fill(1).map((x, i) => ( ))}
); const claimTiles = ( ); return (
{index !== 0 && title && typeof title === 'string' && (

)} {index === 0 && <>{claimTiles}} {index !== 0 && ( {claimTiles} )} {(route || link) && (
); } const addItem = (title, number) => { const idIndex = title.lastIndexOf('#'); if (idIndex === -1) { return
  • {title}
  • ; } return (
  • ); }; return (

    PRs in this dev instance

      {addItem('Refactor Commentron error msg handling #6838')} {addItem('Livestream: implement Pinned Comments #6822')} {addItem('Settings Page layout changes #6821')} {addItem('Comment badge to reflect mod and admin status. #6672')} {addItem('[DRAFT] Fallback image for FileThumbnail #6757')}


    {!SIMPLE_SITE && (authenticated || !IS_WEB) && !subscribedChannels.length && (

    {__("%SITE_NAME% is more fun if you're following channels", { SITE_NAME })}

    )} {/* @if TARGET='web' */} {SIMPLE_SITE && } {/* @endif */} {rowData.map(({ title, route, link, icon, help, pinnedUrls: pinUrls, options = {} }, index) => { // add pins here return getRowElements(title, route, link, icon, help, options, index, pinUrls); })} {/* @if TARGET='web' */} {/* @endif */}
    ); } export default HomePage;