File size: 27,011 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 |
import './style.scss';
import { isDefaultLocale } from '@automattic/i18n-utils';
import clsx from 'clsx';
import { localize } from 'i18n-calypso';
import { findLast, times } from 'lodash';
import PropTypes from 'prop-types';
import { createRef, Component, Fragment } from 'react';
import * as React from 'react';
import ReactDom from 'react-dom';
import { connect } from 'react-redux';
import AppPromo from 'calypso/blocks/app-promo';
import InfiniteList from 'calypso/components/infinite-list';
import ListEnd from 'calypso/components/list-end';
import SectionNav from 'calypso/components/section-nav';
import NavItem from 'calypso/components/section-nav/item';
import NavTabs from 'calypso/components/section-nav/tabs';
import { Interval, EVERY_MINUTE } from 'calypso/lib/interval';
import scrollTo from 'calypso/lib/scroll-to';
import withDimensions from 'calypso/lib/with-dimensions';
import { isEditorIframeFocused } from 'calypso/reader/components/quick-post/utils';
import ReaderMain from 'calypso/reader/components/reader-main';
import { shouldShowLikes } from 'calypso/reader/like-helper';
import { keysAreEqual, keyToString } from 'calypso/reader/post-key';
import { MAX_POSTS_FOR_LOGGED_OUT_USERS } from 'calypso/reader/reader.const';
import ReaderStreamLoginPrompt from 'calypso/reader/stream/login-prompt';
import UpdateNotice from 'calypso/reader/update-notice';
import { showSelectedPost, getStreamType } from 'calypso/reader/utils';
import XPostHelper from 'calypso/reader/xpost-helper';
import { isUserLoggedIn } from 'calypso/state/current-user/selectors';
import { PER_FETCH, INITIAL_FETCH } from 'calypso/state/data-layer/wpcom/read/streams';
import { like as likePost, unlike as unlikePost } from 'calypso/state/posts/likes/actions';
import { isLikedPost } from 'calypso/state/posts/selectors/is-liked-post';
import { getReaderOrganizations } from 'calypso/state/reader/organizations/selectors';
import { getPostByKey } from 'calypso/state/reader/posts/selectors';
import { getBlockedSites } from 'calypso/state/reader/site-blocks/selectors';
import {
clearStream,
requestPage,
selectItem,
selectNextItem,
selectPrevItem,
showUpdates,
} from 'calypso/state/reader/streams/actions';
import {
getStream,
getTransformedStreamItems,
shouldRequestRecs,
} from 'calypso/state/reader/streams/selectors';
import { viewStream } from 'calypso/state/reader-ui/actions';
import { resetCardExpansions } from 'calypso/state/reader-ui/card-expansions/actions';
import { getSelectedRecentFeedId } from 'calypso/state/reader-ui/sidebar/selectors';
import getCurrentLocaleSlug from 'calypso/state/selectors/get-current-locale-slug';
import getPrimarySiteId from 'calypso/state/selectors/get-primary-site-id';
import isNotificationsOpen from 'calypso/state/selectors/is-notifications-open';
import { ReaderPerformanceTrackerStop } from '../reader-performance-tracker';
import { CustomerCouncilBanner } from './customer-council-banner';
import EmptyContent from './empty';
import PostLifecycle from './post-lifecycle';
import PostPlaceholder from './post-placeholder';
// minimal size for the two-column layout to show without cut off
// 64 is padding, 8 is margin
export const WIDE_DISPLAY_CUTOFF = 950 + 64 * 2 + 8 * 2;
const GUESSED_POST_HEIGHT = 600;
const noop = () => {};
const pagesByKey = new Map();
const inputTags = [ 'INPUT', 'SELECT', 'TEXTAREA' ];
class ReaderStream extends Component {
static propTypes = {
className: PropTypes.string,
emptyContent: PropTypes.func,
followSource: PropTypes.string,
forcePlaceholders: PropTypes.bool,
intro: PropTypes.func,
isDiscoverStream: PropTypes.bool,
isMain: PropTypes.bool,
onUpdatesShown: PropTypes.func,
placeholderFactory: PropTypes.func,
recsStreamKey: PropTypes.string,
showDefaultEmptyContentIfMissing: PropTypes.bool,
showFollowButton: PropTypes.bool,
showFollowInHeader: PropTypes.bool,
sidebarTabTitle: PropTypes.string,
streamHeader: PropTypes.func,
streamSidebar: PropTypes.func,
suppressSiteNameLink: PropTypes.bool,
trackScrollPage: PropTypes.func.isRequired,
translate: PropTypes.func,
useCompactCards: PropTypes.bool,
fixedHeaderHeight: PropTypes.number,
selectedStreamName: PropTypes.string,
isLoggedIn: PropTypes.bool,
};
static defaultProps = {
className: '',
forcePlaceholders: false,
intro: null,
isDiscoverStream: false,
isMain: true,
onUpdatesShown: noop,
showDefaultEmptyContentIfMissing: true,
showFollowButton: true,
showFollowInHeader: false,
suppressSiteNameLink: false,
useCompactCards: false,
isLoggedIn: false,
};
state = {
selectedTab: 'posts',
};
isMounted = false;
/**
* A mutation observer to watch whether the target exists
*/
observer = null;
// We can use to keep track of whether we need to scroll to the selected post in the update
// cycle.
wasSelectedByOpeningPost = false;
listRef = createRef();
overlayRef = createRef();
mountTimeout = null;
handlePostsSelected = () => {
this.setState( { selectedTab: 'posts' } );
};
handleSitesSelected = () => {
this.setState( { selectedTab: 'sites' } );
};
componentDidUpdate( { selectedPostKey, streamKey, selectedFeedId } ) {
// Fetch new page if selected feed or stream is changed.
if ( selectedFeedId !== this.props.selectedFeedId ) {
this.scrollFeedListToTop();
this.props.clearStream( { streamKey } );
this.fetchNextPage( {}, { ...this.props, stream: null } ); // Stream as null to start fresh pagination.
} else if ( streamKey !== this.props.streamKey ) {
this.props.resetCardExpansions();
this.props.viewStream( streamKey, window.location.pathname );
this.fetchNextPage( {} );
}
if ( ! keysAreEqual( selectedPostKey, this.props.selectedPostKey ) ) {
// Don't scroll to the post if it was clicked for selection. This causes the scroll to
// propagate into the full post screen the first time you click select an item in the
// reader, meaning the full post screen opens halfway scrolled down the post.
if ( ! this.wasSelectedByOpeningPost ) {
this.scrollToSelectedPost( true );
}
this.wasSelectedByOpeningPost = false;
this.focusSelectedPost( this.props.selectedPostKey );
}
if ( this.props.shouldRequestRecs ) {
this.props.requestPage( {
streamKey: this.props.recsStreamKey,
feedId: this.props.selectedFeedId,
pageHandle: this.props.recsStream.pageHandle,
localeSlug: this.props.localeSlug,
} );
}
}
focusSelectedPost = ( selectedPostKey ) => {
const postRefKey = this.getPostRef( selectedPostKey );
const ref = this.listRef.current && this.listRef.current.refs[ postRefKey ];
const node = ReactDom.findDOMNode( ref );
// if the post is found, focus the first anchor tag within it.
if ( node ) {
const firstLink = node.querySelector( 'a' );
if ( firstLink ) {
firstLink.focus();
}
}
};
_popstate = () => {
if ( this.props.selectedPostKey && window.history.scrollRestoration !== 'manual' ) {
this.scrollToSelectedPost( false );
}
};
scrollToSelectedPost( animate ) {
const scrollContainer = this.state.listContext || window;
const containerOffset = scrollContainer.getBoundingClientRect?.().top || 0;
const headerOffset = -1 * this.props.fixedHeaderHeight || 0; // a fixed position header means we can't just scroll the element into view.
const totalOffset = headerOffset - containerOffset - 20; // 20px of constant offset to ensure the post isnt cramped against the top container or header border.
const selectedNode = ReactDom.findDOMNode( this ).querySelector( '.card.is-selected' );
if ( selectedNode ) {
selectedNode.focus();
const scrollContainerPosition = scrollContainer.scrollTop;
const boundingClientRect = selectedNode.getBoundingClientRect();
const scrollY = parseInt(
scrollContainerPosition + boundingClientRect.top + totalOffset,
10
);
if ( animate ) {
scrollTo( {
x: 0,
y: scrollY,
duration: 200,
container: scrollContainer,
} );
} else {
scrollContainer.scrollTo( 0, scrollY );
}
}
}
componentDidMount() {
const { streamKey } = this.props;
this.props.resetCardExpansions();
this.props.viewStream( streamKey, window.location.pathname );
this.fetchNextPage( {} );
this.isMounted = true;
window.addEventListener( 'popstate', this._popstate );
if ( 'scrollRestoration' in window.history ) {
window.history.scrollRestoration = 'manual';
}
if ( this.props.selectedPostKey ) {
// Show an overlay while we are handling initial scroll and focus to prevent flashing
// content.
if ( this.overlayRef.current ) {
this.overlayRef.current.classList.add( 'stream__init-overlay-enabled' );
}
this.mountTimeout = setTimeout( () => {
this.scrollToSelectedPost( false );
this.focusSelectedPost( this.props.selectedPostKey );
if ( this.overlayRef.current ) {
this.overlayRef.current.classList.remove( 'stream__init-overlay-enabled' );
}
}, 100 );
}
document.addEventListener( 'keydown', this.handleKeydown, true );
/**
* Observe the class list of the body element because the scroll container depends on it.
*/
this.observer = new window.MutationObserver( () => {
if ( ! this.listRef.current ) {
return;
}
const scrollContainer = this.getScrollContainer(
ReactDom.findDOMNode( this.listRef.current )
);
if ( scrollContainer !== this.state.listContext ) {
this.setState( {
listContext: scrollContainer,
} );
}
} );
this.observer.observe( document.body, { attributeFilter: [ 'class' ] } );
}
componentWillUnmount() {
window.removeEventListener( 'popstate', this._popstate );
if ( 'scrollRestoration' in window.history ) {
window.history.scrollRestoration = 'auto';
}
document.removeEventListener( 'keydown', this.handleKeydown, true );
if ( this.observer ) {
this.observer.disconnect();
}
if ( this.mountTimeout ) {
clearTimeout( this.mountTimeout );
}
}
handleKeydown = ( event ) => {
if ( this.props.notificationsOpen ) {
return;
}
const tagName = ( event.target || event.srcElement ).tagName;
if (
inputTags.includes( tagName ) ||
event.target.isContentEditable ||
isEditorIframeFocused()
) {
return;
}
if ( event?.metaKey || event?.ctrlKey ) {
// avoid conflicting with the command palette shortcut cmd+k
return;
}
switch ( event.keyCode ) {
// Move selection down - j
case 74: {
return this.selectNextItem();
}
// Move selection up - k
case 75: {
return this.selectPrevItem();
}
// Open selection - Enter
case 13: {
return this.handleOpenSelection();
}
// Open selection in a new tab - v
case 86: {
return this.handleOpenSelectionNewTab();
}
// Like selection - l
case 76: {
return this.toggleLikeOnSelectedPost();
}
// Go to top - .
case 190: {
return this.goToTop();
}
}
};
handleOpenSelectionNewTab = () => {
const { selectedPostKey } = this.props;
if ( selectedPostKey ) {
window.open( selectedPostKey.url, '_blank', 'noreferrer,noopener' );
}
};
handleOpenSelection = () => {
this.props.showSelectedPost( {
store: this.props.streamKey,
postKey: this.props.selectedPostKey,
} );
};
toggleLikeOnSelectedPost = () => {
const { selectedPost } = this.props;
// only toggle a like on a x-post if we have the appropriate metadata,
// and original post is full screen
const xPostMetadata = XPostHelper.getXPostMetadata( selectedPost );
if ( xPostMetadata?.postURL ) {
return;
}
if ( shouldShowLikes( selectedPost ) ) {
this.toggleLikeAction();
}
};
toggleLikeAction() {
const { likedPost, selectedPost } = this.props;
if ( likedPost === null ) {
// unknown... ignore for now
return;
}
const toggler = likedPost ? this.props.unlikePost : this.props.likePost;
toggler( selectedPost.site_ID, selectedPost.ID, { source: 'reader' } );
}
goToTop = () => {
const { streamKey, updateCount } = this.props;
if ( updateCount > 0 ) {
this.props.showUpdates( { streamKey } );
}
};
getVisibleItemIndexes() {
return (
this.listRef.current &&
this.listRef.current.getVisibleItemIndexes( { offsetTop: this.props.fixedHeaderHeight || 0 } )
);
}
selectNextItem = () => {
// note that we grab the items directly from the stream because we don't want the transformed
// one with combined cards
const {
streamKey,
stream: { items },
} = this.props;
// This should already be false but this is a safety.
this.wasSelectedByOpeningPost = false;
// If the currently selected item is too far away in scroll position to be rendered by the
// infinite list, lets fall back to the magic selection functionality noted below.
const selectedItem = this.state.listContext?.querySelector( '.card.is-selected' );
// do we have a selected item? if so, just move to the next one
if ( this.props.selectedPostKey && selectedItem ) {
this.props.selectNextItem( { streamKey, items } );
return;
}
const visibleIndexes = this.getVisibleItemIndexes();
// This is slightly magical...
// When a user tries to select the "next" item, we really want to select
// the next item if and only if the currently selected item is at the top of the
// screen. If the currently selected item is off screen, we'd rather select the item
// at the top of the screen, rather than the strictly "next" item. This is so a user can
// pick an item with the keyboard shortcuts, then scroll down a bit, then hit `next` again
// and have it pick the item at the top of the screen, rather than the item we scrolled past
if ( visibleIndexes && visibleIndexes.length > 0 ) {
// default to the first item in the visible list. this item is likely off screen when the user
// is scrolled down the page
let index = visibleIndexes[ 0 ].index;
// walk down the list of "visible" items, looking for the first item whose top extent is on screen
for ( let i = 0; i < visibleIndexes.length; i++ ) {
const visibleIndex = visibleIndexes[ i ];
// skip items whose top are off screen or are recommendation blocks
if ( visibleIndex.bounds.top > 0 && ! items[ visibleIndex.index ].isRecommendationBlock ) {
index = visibleIndex.index;
break;
}
}
// find the index of the post / gap in the items array.
// Start the search from the index in the items array, which has to be equal to or larger than
// the index in the items array.
// Use lastIndexOf to walk the array from right to left
const selectedPostKey = findLast( items, items[ index ], index );
if ( keysAreEqual( selectedPostKey, this.props.selectedPostKey ) ) {
this.props.selectNextItem( { streamKey, items } );
} else {
this.props.selectItem( { streamKey, postKey: selectedPostKey } );
}
}
};
selectPrevItem = () => {
// note that we grab the items directly from the stream because we don't want the transformed
// one with combined cards
const {
streamKey,
selectedPostKey,
stream: { items },
} = this.props;
// This should already be false but this is a safety.
this.wasSelectedByOpeningPost = false;
// unlike selectNextItem, we don't want any magic here. Just move back an item if the user
// currently has a selected item. Otherwise do nothing.
// We avoid the magic here because we expect users to enter the flow using next, not previous.
if ( selectedPostKey ) {
this.props.selectPrevItem( { streamKey, items } );
}
};
poll = () => {
const { streamKey, localeSlug, selectedFeedId } = this.props;
this.props.requestPage( {
streamKey,
feedId: selectedFeedId,
isPoll: true,
localeSlug: localeSlug,
} );
};
getPageHandle = ( pageHandle, startDate ) => {
if ( pageHandle ) {
return pageHandle;
} else if ( startDate ) {
return { before: startDate };
}
return null;
};
fetchNextPage = ( options, props = this.props ) => {
if ( this.isLoginPromptVisible() ) {
return;
}
const { streamKey, stream, startDate, localeSlug, selectedFeedId } = props;
if ( options.triggeredByScroll ) {
const pageId = pagesByKey.get( streamKey ) || 0;
pagesByKey.set( streamKey, pageId + 1 );
props.trackScrollPage( pageId );
}
const pageHandle = stream ? this.getPageHandle( stream.pageHandle, startDate ) : null;
props.requestPage( { feedId: selectedFeedId, streamKey, pageHandle, localeSlug } );
};
isLoginPromptVisible = () => {
// Show login prompt for all logged out users after few posts.
return ! this.props.isLoggedIn && this.props.items.length > MAX_POSTS_FOR_LOGGED_OUT_USERS;
};
showUpdates = () => {
const { streamKey } = this.props;
this.props.onUpdatesShown();
this.props.showUpdates( { streamKey } );
this.scrollFeedListToTop();
};
scrollFeedListToTop = () => {
if ( ! this.listRef.current ) {
return;
}
this.listRef.current.scrollToTop();
};
renderLoadingPlaceholders = () => {
const { items } = this.props;
const count = items.length === 0 ? INITIAL_FETCH : PER_FETCH;
return times( count, ( i ) => {
if ( this.props.placeholderFactory ) {
return this.props.placeholderFactory( { key: 'feed-post-placeholder-' + i } );
}
return <PostPlaceholder key={ 'feed-post-placeholder-' + i } />;
} );
};
renderAppPromo = ( index ) => {
const { isDiscoverStream } = this.props;
// Only show it once in the 4th position.
if ( index !== 3 ) {
return;
}
return (
isDiscoverStream && (
<AppPromo
iconSize={ 40 }
campaign="calypso-reader-stream"
title={ this.props.translate( 'Read on the go with the Jetpack Mobile App' ) }
hasQRCode
hasGetAppButton={ false }
/>
)
);
};
getPostRef = ( postKey ) => {
return keyToString( postKey );
};
renderPost = ( postKey, index ) => {
const { selectedPostKey, streamKey, primarySiteId } = this.props;
const isSelected = !! ( selectedPostKey && keysAreEqual( selectedPostKey, postKey ) );
const itemKey = this.getPostRef( postKey );
const showPost = ( args ) => {
// Ensure the post selected becomes the selected item. It may already be the selected
// item through shortkeys, or not if using a mouse clicking flow. Setting the selected
// item this way adds consistency to scroll position when coming back from the full post
// view, as well as avoids conflict between our systems for preserving scroll position
// and scrolling to selected posts when users use a mix of shortkeys and mouse clicks.
if ( ! isSelected ) {
this.props.selectItem( { streamKey: this.props.streamKey, postKey } );
this.wasSelectedByOpeningPost = true;
}
this.props.showSelectedPost( {
...args,
postKey: postKey,
streamKey,
} );
};
return (
<Fragment key={ itemKey }>
{ this.renderAppPromo( index ) }
<PostLifecycle
ref={ itemKey /* The ref is stored into `InfiniteList`'s `this.ref` map */ }
isSelected={ isSelected }
handleClick={ showPost }
postKey={ postKey }
suppressSiteNameLink={ this.props.suppressSiteNameLink }
showFollowInHeader={ this.props.showFollowInHeader }
isDiscoverStream={ this.props.isDiscoverStream }
showSiteName={ this.props.showSiteNameOnCards }
selectedPostKey={ undefined }
followSource={ this.props.followSource }
blockedSites={ this.props.blockedSites }
streamKey={ streamKey }
recsStreamKey={ this.props.recsStreamKey }
index={ index }
compact={ this.props.useCompactCards }
siteId={ primarySiteId }
showFollowButton={ this.props.showFollowButton }
fixedHeaderHeight={ this.props.fixedHeaderHeight }
/>
{ index === 0 && <ReaderPerformanceTrackerStop /> }
</Fragment>
);
};
setListContext = ( component ) => {
if ( ! component ) {
return;
}
this.listRef.current = component;
this.setState( {
listContext: this.getScrollContainer( ReactDom.findDOMNode( component ) ),
} );
};
getScrollContainer = ( node ) => {
// Leave it to the default scroll container if we cannot find it or its the root element.
if ( ! node || node.ownerDocument === node.parentNode ) {
return false;
}
// Return when overflow is defined to either auto or scroll.
const { overflowY } = getComputedStyle( node );
if ( /(auto|scroll)/.test( overflowY ) ) {
return node;
}
// Continue traversing.
return this.getScrollContainer( node.parentNode );
};
render() {
const { translate, forcePlaceholders, lastPage, streamHeader, streamKey, selectedPostKey } =
this.props;
const wideDisplay = this.props.width > WIDE_DISPLAY_CUTOFF;
const isReaderCouncilStream = false; // Disabling banner. Original condition: ( this.props.isDiscoverStream || this.props.streamKey === 'following' );
let { items, isRequesting } = this.props;
let body;
let showingStream;
// trick an infinite list to showing placeholders
if ( forcePlaceholders ) {
items = [];
isRequesting = true;
}
const hasNoPosts = this.isMounted && items.length === 0 && ! isRequesting;
const streamType = getStreamType( streamKey );
// TODO: `following` probably shouldn't be added as a class to every stream, but style selectors need
// to be updated before we can remove it.
let baseClassnames = clsx( 'following', this.props.className );
// @TODO: has error of invalid tag?
if ( hasNoPosts ) {
body = this.props.emptyContent?.();
if ( ! body && this.props.showDefaultEmptyContentIfMissing ) {
body = <EmptyContent />;
}
showingStream = false;
} else {
/* eslint-disable wpcalypso/jsx-classname-namespace */
const bodyContent = (
<InfiniteList
ref={ this.setListContext }
items={ items }
lastPage={ lastPage }
fetchingNextPage={ isRequesting }
guessedItemHeight={ GUESSED_POST_HEIGHT }
fetchNextPage={ this.fetchNextPage }
getItemRef={ this.getPostRef }
renderItem={ this.renderPost }
renderLoadingPlaceholders={ this.renderLoadingPlaceholders }
className="stream__list"
context={ this.state.listContext }
selectedItem={ selectedPostKey }
/>
);
const sidebarContentFn = this.props.streamSidebar;
// Exclude the sidebar layout for the search stream, since it's handled by `<SiteResults>`.
if ( ! sidebarContentFn || streamType === 'search' ) {
body = (
<div className="reader__content">
{ isReaderCouncilStream && <CustomerCouncilBanner translate={ translate } /> }
{ bodyContent }
</div>
);
} else if ( wideDisplay ) {
body = (
<div className="stream__two-column">
<div className="reader__content">
{ streamHeader?.() }
{ isReaderCouncilStream && <CustomerCouncilBanner translate={ translate } /> }
{ bodyContent }
</div>
<div className="stream__right-column">{ sidebarContentFn?.() }</div>
</div>
);
baseClassnames = clsx( 'reader-two-column', baseClassnames );
} else {
body = (
<>
{ streamHeader?.() }
{ isReaderCouncilStream && (
<div style={ { margin: '32px 16px 0' } }>
<CustomerCouncilBanner translate={ translate } />
</div>
) }
<div className="stream__header">
<SectionNav selectedText={ this.state.selectedTab }>
<NavTabs label={ translate( 'Status' ) }>
<NavItem
key="posts"
selected={ this.state.selectedTab === 'posts' }
onClick={ this.handlePostsSelected }
>
{ translate( 'Posts' ) }
</NavItem>
<NavItem
key="sites"
selected={ this.state.selectedTab === 'sites' }
onClick={ this.handleSitesSelected }
>
{ this.props.sidebarTabTitle || translate( 'Subscriptions' ) }
</NavItem>
</NavTabs>
</SectionNav>
</div>
{ this.state.selectedTab === 'posts' && (
<div className="reader__content">{ bodyContent }</div>
) }
{ this.state.selectedTab === 'sites' && (
<div className="stream__right-column">{ sidebarContentFn?.() }</div>
) }
</>
);
}
showingStream = true;
/* eslint-enable wpcalypso/jsx-classname-namespace */
}
// Check array of streamTypes to see if we should poll for updates;
const shouldPoll = ! [ 'search', 'custom_recs_posts_with_images', 'discover' ].includes(
streamType
);
const TopLevel = this.props.isMain ? ReaderMain : 'div';
return (
<TopLevel className={ baseClassnames }>
<div ref={ this.overlayRef } className="stream__init-overlay" />
{ shouldPoll && <Interval onTick={ this.poll } period={ EVERY_MINUTE } /> }
<UpdateNotice streamKey={ streamKey } onClick={ this.showUpdates } />
{ this.props.children }
{ showingStream && items.length ? this.props.intro?.() : null }
{ body }
{ showingStream && items.length && ! isRequesting ? <ListEnd /> : null }
{ this.isLoginPromptVisible() && (
<ReaderStreamLoginPrompt redirectPath={ window.location.pathname } />
) }
</TopLevel>
);
}
}
/**
* Returns a modified stream key if necessary else returns the original stream key.
* @returns {string} Stream key.
*/
function getStreamKey( state, streamKey ) {
// For "following" stream, use a unique streamKey if a feed is selected. This prevent feed overwrites when rapid selections are made.
const selectedFeedId = getSelectedRecentFeedId( state );
const isFollowingFiltered = streamKey === 'following' && selectedFeedId;
if ( isFollowingFiltered ) {
return `following:feed-${ selectedFeedId }`;
}
return streamKey;
}
export default connect(
( state, { streamKey: tempStreamKey, recsStreamKey } ) => {
const streamKey = getStreamKey( state, tempStreamKey );
const stream = getStream( state, streamKey );
const selectedPost = getPostByKey( state, stream.selected );
const isLoggedIn = isUserLoggedIn( state );
let localeSlug = getCurrentLocaleSlug( state );
if ( isDefaultLocale( localeSlug ) ) {
localeSlug = null;
}
return {
blockedSites: getBlockedSites( state ),
items: getTransformedStreamItems( state, {
streamKey,
recsStreamKey,
} ),
notificationsOpen: isNotificationsOpen( state ),
stream,
streamKey,
recsStream: getStream( state, recsStreamKey ),
selectedFeedId: getSelectedRecentFeedId( state ),
selectedPostKey: stream.selected,
selectedPost,
lastPage: stream.lastPage,
isRequesting: stream.isRequesting,
shouldRequestRecs: shouldRequestRecs( state, streamKey, recsStreamKey ),
likedPost: selectedPost && isLikedPost( state, selectedPost.site_ID, selectedPost.ID ),
organizations: getReaderOrganizations( state ),
primarySiteId: getPrimarySiteId( state ),
localeSlug,
isLoggedIn,
};
},
{
clearStream,
resetCardExpansions,
likePost,
unlikePost,
requestPage,
selectItem,
selectNextItem,
selectPrevItem,
showSelectedPost,
showUpdates,
viewStream,
}
)( localize( withDimensions( ReaderStream ) ) );
|