// @flow import { COMMENT_HIGHLIGHTED } from 'constants/classnames'; import { COMMENT_PAGE_SIZE_TOP_LEVEL, SORT_BY } from 'constants/comment'; import { ENABLE_COMMENT_REACTIONS } from 'config'; import { getChannelIdFromClaim } from 'util/claim'; import { useIsMobile, useIsMediumScreen } from 'effects/use-screensize'; import * as ICONS from 'constants/icons'; import * as REACTION_TYPES from 'constants/reactions'; import Button from 'component/button'; import Card from 'component/common/card'; import classnames from 'classnames'; import CommentCreate from 'component/commentCreate'; import CommentView from 'component/comment'; import debounce from 'util/debounce'; import Empty from 'component/common/empty'; import React, { useEffect } from 'react'; import Spinner from 'component/spinner'; import useFetched from 'effects/use-fetched'; import usePersistedState from 'effects/use-persisted-state'; const DEBOUNCE_SCROLL_HANDLER_MS = 200; function scaleToDevicePixelRatio(value) { const devicePixelRatio = window.devicePixelRatio || 1.0; if (devicePixelRatio < 1.0) { return Math.ceil(value / devicePixelRatio); } return Math.ceil(value * devicePixelRatio); } type Props = { allCommentIds: any, pinnedComments: Array, topLevelComments: Array, topLevelTotalPages: number, uri: string, claim: ?Claim, claimIsMine: boolean, myChannels: ?Array, isFetchingComments: boolean, isFetchingCommentsById: boolean, isFetchingReacts: boolean, linkedCommentId?: string, totalComments: number, fetchingChannels: boolean, myReactsByCommentId: ?{ [string]: Array }, // "CommentId:MyChannelId" -> reaction array (note the ID concatenation) othersReactsById: ?{ [string]: { [REACTION_TYPES.LIKE | REACTION_TYPES.DISLIKE]: number } }, activeChannelId: ?string, settingsByChannelId: { [channelId: string]: PerChannelSettings }, fetchReacts: (Array) => Promise, commentsAreExpanded?: boolean, fetchTopLevelComments: (string, number, number, number) => void, fetchComment: (string) => void, resetComments: (string) => void, }; function CommentList(props: Props) { const { allCommentIds, uri, pinnedComments, topLevelComments, topLevelTotalPages, claim, claimIsMine, myChannels, isFetchingComments, isFetchingCommentsById, isFetchingReacts, linkedCommentId, totalComments, fetchingChannels, myReactsByCommentId, othersReactsById, activeChannelId, settingsByChannelId, fetchReacts, commentsAreExpanded, fetchTopLevelComments, fetchComment, resetComments, } = props; const isMobile = useIsMobile(); const isMediumScreen = useIsMediumScreen(); const spinnerRef = React.useRef(); const DEFAULT_SORT = ENABLE_COMMENT_REACTIONS ? SORT_BY.POPULARITY : SORT_BY.NEWEST; const [sort, setSort] = usePersistedState('comment-sort-by', DEFAULT_SORT); const [page, setPage] = React.useState(0); const fetchedCommentsOnce = useFetched(isFetchingComments); const fetchedReactsOnce = useFetched(isFetchingReacts); const fetchedLinkedComment = useFetched(isFetchingCommentsById); const hasDefaultExpansion = commentsAreExpanded || (!isMobile && !isMediumScreen); const [expandedComments, setExpandedComments] = React.useState(hasDefaultExpansion); const totalFetchedComments = allCommentIds ? allCommentIds.length : 0; const channelId = getChannelIdFromClaim(claim); const channelSettings = channelId ? settingsByChannelId[channelId] : undefined; const moreBelow = page < topLevelTotalPages; // Display comments immediately if not fetching reactions // If not, wait to show comments until reactions are fetched const [readyToDisplayComments, setReadyToDisplayComments] = React.useState( Boolean(othersReactsById) || !ENABLE_COMMENT_REACTIONS ); function changeSort(newSort) { if (sort !== newSort) { setSort(newSort); setPage(0); // Invalidate existing comments } } // Reset comments useEffect(() => { if (page === 0) { if (claim) { resetComments(claim.claim_id); } setPage(1); } // eslint-disable-next-line react-hooks/exhaustive-deps }, [page, uri, resetComments]); // 'claim' is derived from 'uri' // Fetch top-level comments useEffect(() => { if (page !== 0) { if (page === 1 && linkedCommentId) { fetchComment(linkedCommentId); } fetchTopLevelComments(uri, page, COMMENT_PAGE_SIZE_TOP_LEVEL, sort); } }, [fetchComment, fetchTopLevelComments, linkedCommentId, page, sort, uri]); // Fetch reacts useEffect(() => { if (totalFetchedComments > 0 && ENABLE_COMMENT_REACTIONS && !fetchingChannels && !isFetchingReacts) { let idsForReactionFetch; if (!othersReactsById || !myReactsByCommentId) { idsForReactionFetch = allCommentIds; } else { idsForReactionFetch = allCommentIds.filter((commentId) => { const key = activeChannelId ? `${commentId}:${activeChannelId}` : commentId; return !othersReactsById[key] || (activeChannelId && !myReactsByCommentId[key]); }); } if (idsForReactionFetch.length !== 0) { fetchReacts(idsForReactionFetch) .then(() => { setReadyToDisplayComments(true); }) .catch(() => setReadyToDisplayComments(true)); } } }, [ activeChannelId, allCommentIds, fetchReacts, fetchingChannels, isFetchingReacts, myReactsByCommentId, othersReactsById, totalFetchedComments, ]); // Scroll to linked-comment useEffect(() => { if (fetchedLinkedComment && fetchedCommentsOnce && fetchedReactsOnce) { const elems = document.getElementsByClassName(COMMENT_HIGHLIGHTED); if (elems.length > 0) { const ROUGH_HEADER_HEIGHT = 125; // @see: --header-height const linkedComment = elems[0]; window.scrollTo({ top: linkedComment.getBoundingClientRect().top + window.scrollY - ROUGH_HEADER_HEIGHT, left: 0, behavior: 'smooth', }); } } }, [fetchedLinkedComment, fetchedCommentsOnce, fetchedReactsOnce]); // Infinite scroll useEffect(() => { function shouldFetchNextPage(page, topLevelTotalPages, window, document, yPrefetchPx = 1000) { if (!spinnerRef || !spinnerRef.current) return false; const rect = spinnerRef.current.getBoundingClientRect(); // $FlowFixMe const windowH = window.innerHeight || document.documentElement.clientHeight; // $FlowFixMe const windowW = window.innerWidth || document.documentElement.clientWidth; // $FlowFixMe const isApproachingViewport = yPrefetchPx !== 0 && rect.top < windowH + scaleToDevicePixelRatio(yPrefetchPx); const isInViewport = rect.width > 0 && rect.height > 0 && rect.bottom >= 0 && rect.right >= 0 && // $FlowFixMe rect.top <= windowH && // $FlowFixMe rect.left <= windowW; return (isInViewport || isApproachingViewport) && page < topLevelTotalPages; } const handleCommentScroll = debounce(() => { if (hasDefaultExpansion && shouldFetchNextPage(page, topLevelTotalPages, window, document)) { setPage(page + 1); } }, DEBOUNCE_SCROLL_HANDLER_MS); if (!isFetchingComments && readyToDisplayComments && moreBelow && spinnerRef && spinnerRef.current) { if (shouldFetchNextPage(page, topLevelTotalPages, window, document, 0)) { setPage(page + 1); } else { window.addEventListener('scroll', handleCommentScroll); return () => window.removeEventListener('scroll', handleCommentScroll); } } }, [hasDefaultExpansion, isFetchingComments, moreBelow, page, readyToDisplayComments, topLevelTotalPages]); const getCommentElems = (comments) => { return comments.map((comment) => ( claim_id === comment.channel_id) } linkedCommentId={linkedCommentId} isPinned={comment.is_pinned} supportAmount={comment.support_amount} numDirectReplies={comment.replies} isModerator={comment.is_moderator} isGlobalMod={comment.is_global_mod} isFiat={comment.is_fiat} /> )); }; const sortButton = (label, icon, sortOption) => { return (