// @flow import React from 'react'; import classnames from 'classnames'; import Spinner from 'component/spinner'; import CommentCreate from 'component/commentCreate'; import LivestreamComment from 'component/livestreamComment'; import Button from 'component/button'; import UriIndicator from 'component/uriIndicator'; import CreditAmount from 'component/common/credit-amount'; import ChannelThumbnail from 'component/channelThumbnail'; import Tooltip from 'component/common/tooltip'; type Props = { uri: string, claim: ?StreamClaim, activeViewers: number, embed?: boolean, doCommentSocketConnect: (string, string) => void, doCommentSocketDisconnect: (string) => void, doCommentList: (string, string, number, number) => void, comments: Array, fetchingComments: boolean, doSuperChatList: (string) => void, superChats: Array, superChatsReversed: Array, superChatsTotalAmount: number, superChatsFiatAmount: number, myChannels: ?Array, }; const VIEW_MODE_CHAT = 'view_chat'; const VIEW_MODE_SUPER_CHAT = 'view_superchat'; const COMMENT_SCROLL_OFFSET = 100; const COMMENT_SCROLL_TIMEOUT = 25; export default function LivestreamComments(props: Props) { const { claim, uri, embed, doCommentSocketConnect, doCommentSocketDisconnect, comments, // superchats in chronological format doCommentList, fetchingComments, doSuperChatList, superChatsTotalAmount, myChannels, superChats, // superchats organized by tip amount } = props; let { superChatsReversed, superChatsFiatAmount } = props; superChatsFiatAmount = 0; if(superChats){ console.log(superChats); let fiatAmount = 0; for(const superChat of superChats){ if(superChat.is_fiat){ fiatAmount = fiatAmount + superChat.support_amount; } } superChatsFiatAmount = fiatAmount; } // TODO: why doesn't this work? React.useEffect(() => { if(superChats){ console.log(superChats); // let fiatAmount = 0; // for(const superChat of superChats){ // if(superChat.is_fiat){ // fiatAmount = fiatAmount + superChat.support_amount; // } // } // // console.log(fiatAmount); // // superChatsFiatAmount = fiatAmount.toString(); } }, [superChats]); if (superChats) { const clonedSuperchats = JSON.parse(JSON.stringify(superChats)); // sort by fiat first then by support amount superChatsReversed = clonedSuperchats.sort(function(a,b) { if (a.is_fiat === b.is_fiat) { return b.support_amount - a.support_amount; } else { return (a.is_fiat === b.is_fiat) ? 0 : a.is_fiat ? -1 : 1; } }).reverse(); } const commentsRef = React.createRef(); const [scrollBottom, setScrollBottom] = React.useState(true); const [viewMode, setViewMode] = React.useState(VIEW_MODE_CHAT); const [performedInitialScroll, setPerformedInitialScroll] = React.useState(false); const claimId = claim && claim.claim_id; const commentsLength = comments && comments.length; const commentsToDisplay = viewMode === VIEW_MODE_CHAT ? comments : superChats; const discussionElement = document.querySelector('.livestream__comments'); const commentElement = document.querySelector('.livestream-comment'); // todo: implement comment_list --mine in SDK so redux can grab with selectCommentIsMine function 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; } React.useEffect(() => { if (claimId) { doCommentList(uri, '', 1, 75); doSuperChatList(uri); doCommentSocketConnect(uri, claimId); } return () => { if (claimId) { doCommentSocketDisconnect(claimId); } }; }, [claimId, uri, doCommentList, doSuperChatList, doCommentSocketConnect, doCommentSocketDisconnect]); const handleScroll = React.useCallback(() => { if (discussionElement) { const negativeCommentHeight = commentElement && -1 * commentElement.offsetHeight; const isAtRecent = negativeCommentHeight && discussionElement.scrollTop >= negativeCommentHeight; setScrollBottom(isAtRecent); } }, [commentElement, discussionElement]); React.useEffect(() => { if (discussionElement) { discussionElement.addEventListener('scroll', handleScroll); if (commentsLength > 0) { // Only update comment scroll if the user hasn't scrolled up to view old comments // If they have, do nothing if (!performedInitialScroll) { setTimeout( () => (discussionElement.scrollTop = discussionElement.scrollHeight - discussionElement.offsetHeight + COMMENT_SCROLL_OFFSET), COMMENT_SCROLL_TIMEOUT ); setPerformedInitialScroll(true); } } return () => discussionElement.removeEventListener('scroll', handleScroll); } }, [commentsLength, discussionElement, handleScroll, performedInitialScroll, setPerformedInitialScroll]); if (!claim) { return null; } function scrollBack() { if (discussionElement) { discussionElement.scrollTop = 0; setScrollBottom(true); } } return (
{__('Live discussion')}
{superChatsTotalAmount > 0 && (
{/* the superchats in chronological order button */}
)}
<> {fetchingComments && !comments && (
)}
{viewMode === VIEW_MODE_CHAT && superChatsTotalAmount > 0 && superChats && (
{superChats.map((superChat: Comment) => (
))}
)} {/* top to bottom comment display */} {!fetchingComments && comments.length > 0 ? (
{viewMode === VIEW_MODE_CHAT && commentsToDisplay.map((comment) => ( ))} {viewMode === VIEW_MODE_SUPER_CHAT && superChatsReversed && superChatsReversed.map((comment) => ( ))}
) : (
)} {!scrollBottom && (
); }