// @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'; type Props = { comments: Array, fetchComments: string => void, fetchReacts: string => void, uri: string, claimIsMine: boolean, myChannels: ?Array, isFetchingComments: boolean, linkedComment: any, totalComments: number, }; function CommentList(props: Props) { const { fetchComments, fetchReacts, uri, comments, claimIsMine, myChannels, isFetchingComments, linkedComment, totalComments, } = props; const commentRef = React.useRef(); 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) { fetchReacts(uri); } }, [fetchReacts, uri, totalComments, activeChannel, ENABLE_COMMENT_REACTIONS]); useEffect(() => { if (linkedCommentId && commentRef && commentRef.current) { commentRef.current.scrollIntoView({ block: 'start' }); window.scrollBy(0, -100); } }, [linkedCommentId]); 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={