// @flow import * as ICONS from 'constants/icons'; import React, { useEffect } from 'react'; import Comment from 'component/comment'; import Spinner from 'component/spinner'; import Button from 'component/button'; import Card from 'component/common/card'; import CommentCreate from 'component/commentCreate'; import usePersistedState from 'effects/use-persisted-state'; import { ENABLE_COMMENT_REACTIONS } from 'config'; import { useIsMobile } from 'effects/use-screensize'; type Props = { comments: Array, fetchComments: string => void, fetchReacts: string => void, uri: string, claimIsMine: boolean, myChannels: ?Array, isFetchingComments: boolean, linkedComment: any, totalComments: number, fetchingChannels: boolean, }; function CommentList(props: Props) { const { fetchComments, fetchReacts, uri, comments, claimIsMine, myChannels, isFetchingComments, linkedComment, totalComments, fetchingChannels, } = props; const commentRef = React.useRef(); const isMobile = useIsMobile(); const [activeChannel] = usePersistedState('comment-channel', ''); const [start] = React.useState(0); const [end, setEnd] = React.useState(9); const linkedCommentId = linkedComment && linkedComment.comment_id; const hasNoComments = totalComments === 0; const moreBelow = totalComments - end > 0; // todo: implement comment_list --mine in SDK so redux can grab with selectCommentIsMine const isMyComment = (channelId: string) => { if (myChannels != null && channelId != null) { for (let i = 0; i < myChannels.length; i++) { if (myChannels[i].claim_id === channelId) { return true; } } } return false; }; const handleMoreBelow = () => { if (moreBelow) { setEnd(end + 10); } }; useEffect(() => { fetchComments(uri); }, [fetchComments, uri]); useEffect(() => { if (totalComments && ENABLE_COMMENT_REACTIONS && !fetchingChannels) { fetchReacts(uri); } }, [fetchReacts, uri, totalComments, activeChannel, fetchingChannels, ENABLE_COMMENT_REACTIONS]); useEffect(() => { if (linkedCommentId && commentRef && commentRef.current) { commentRef.current.scrollIntoView({ block: 'start' }); window.scrollBy(0, -100); } }, [linkedCommentId]); useEffect(() => { function handleCommentScroll(e) { // Use some arbitrary amount so comments start loading before a user actually reaches the real bottom of the page // $FlowFixMe if (window.innerHeight + window.scrollY >= document.body.offsetHeight - (isMobile ? 2750 : 300)) { handleMoreBelow(); } } if (moreBelow) { window.addEventListener('scroll', handleCommentScroll); } return () => window.removeEventListener('scroll', handleCommentScroll); }, [moreBelow, handleMoreBelow, isMobile]); function prepareComments(arrayOfComments, linkedComment) { let orderedComments = []; if (linkedComment) { if (!linkedComment.parent_id) { orderedComments = arrayOfComments.filter(c => c.comment_id !== linkedComment.comment_id); orderedComments.unshift(linkedComment); } else { const parentComment = arrayOfComments.find(c => c.comment_id === linkedComment.parent_id); orderedComments = arrayOfComments.filter(c => c.comment_id !== linkedComment.parent_id); orderedComments.unshift(parentComment); } } else { orderedComments = arrayOfComments; } return orderedComments; } const displayedComments = prepareComments(comments, linkedComment).slice(start, end); return ( 0 ? totalComments === 1 ? __('1 comment') : __('%total_comments% comments', { total_comments: totalComments }) : __('Leave a comment') } titleActions={