lbry-desktop/ui/component/commentsReplies/view.jsx

127 lines
4.1 KiB
React
Raw Normal View History

2020-08-24 19:35:21 +02:00
// @flow
2020-08-25 21:54:06 +02:00
import * as ICONS from 'constants/icons';
2020-08-24 19:35:21 +02:00
import React from 'react';
import Comment from 'component/comment';
import Button from 'component/button';
type Props = {
comments: Array<any>,
uri: string,
claimIsMine: boolean,
myChannels: ?Array<ChannelClaim>,
linkedComment?: Comment,
commentingEnabled: boolean,
2020-10-07 21:14:52 +02:00
threadDepth: number,
2020-08-24 19:35:21 +02:00
};
function CommentsReplies(props: Props) {
2020-10-07 21:14:52 +02:00
const { uri, comments, claimIsMine, myChannels, linkedComment, commentingEnabled, threadDepth } = props;
const [isExpanded, setExpanded] = React.useState(true);
2020-08-24 19:35:21 +02:00
const [start, setStart] = React.useState(0);
const [end, setEnd] = React.useState(9);
const sortedComments = comments ? [...comments].reverse() : [];
const numberOfComments = comments ? comments.length : 0;
2020-08-25 21:54:06 +02:00
const linkedCommentId = linkedComment ? linkedComment.comment_id : '';
2021-04-23 21:59:48 +02:00
const commentsIndexOfLInked = comments && sortedComments.findIndex((e) => e.comment_id === linkedCommentId);
2020-08-24 19:35:21 +02:00
2020-08-25 21:54:06 +02:00
function showMore() {
2020-08-24 19:35:21 +02:00
if (start > 0) {
setStart(0);
} else {
setEnd(numberOfComments);
}
2020-08-25 21:54:06 +02:00
}
2020-08-24 19:35:21 +02:00
// todo: implement comment_list --mine in SDK so redux can grab with selectCommentIsMine
2020-08-25 21:54:06 +02:00
function isMyComment(channelId: string) {
2020-08-24 19:35:21 +02:00
if (myChannels != null && channelId != null) {
for (let i = 0; i < myChannels.length; i++) {
if (myChannels[i].claim_id === channelId) {
return true;
}
}
}
return false;
2020-08-25 21:54:06 +02:00
}
2020-08-24 19:35:21 +02:00
2020-08-25 21:54:06 +02:00
function handleCommentDone() {
2020-08-24 19:35:21 +02:00
if (!isExpanded) {
setExpanded(true);
setStart(numberOfComments || 0);
}
setEnd(numberOfComments + 1);
2020-08-25 21:54:06 +02:00
}
2020-08-24 19:35:21 +02:00
React.useEffect(() => {
if (
setStart &&
setEnd &&
setExpanded &&
linkedCommentId &&
Number.isInteger(commentsIndexOfLInked) &&
commentsIndexOfLInked > -1
) {
setStart(commentsIndexOfLInked);
setEnd(commentsIndexOfLInked + 1);
setExpanded(true);
}
}, [setStart, setEnd, setExpanded, linkedCommentId, commentsIndexOfLInked]);
const displayedComments = sortedComments.slice(start, end);
return (
2020-10-07 21:14:52 +02:00
Boolean(numberOfComments) && (
<div className="comment__replies-container">
2020-10-07 21:14:52 +02:00
{Boolean(numberOfComments) && !isExpanded && (
<div className="comment__actions--nested">
<Button
className="comment__action"
2020-10-07 21:14:52 +02:00
label={__('Show Replies')}
onClick={() => setExpanded(!isExpanded)}
icon={isExpanded ? ICONS.UP : ICONS.DOWN}
/>
</div>
2020-08-24 19:35:21 +02:00
)}
{comments && displayedComments && isExpanded && (
<div>
<div className="comment__replies">
<Button className="comment__threadline" aria-label="Hide Replies" onClick={() => setExpanded(false)} />
2020-08-24 19:35:21 +02:00
<ul className="comments--replies">
{displayedComments.map((comment, index) => {
return (
<Comment
2020-10-07 21:14:52 +02:00
threadDepth={threadDepth}
uri={uri}
authorUri={comment.channel_url}
author={comment.channel_name}
claimId={comment.claim_id}
commentId={comment.comment_id}
key={comment.comment_id}
message={comment.comment}
timePosted={comment.timestamp * 1000}
claimIsMine={claimIsMine}
commentIsMine={comment.channel_id && isMyComment(comment.channel_id)}
linkedComment={linkedComment}
commentingEnabled={commentingEnabled}
2020-10-07 21:14:52 +02:00
handleCommentDone={handleCommentDone}
2021-04-23 21:59:48 +02:00
supportAmount={comment.support_amount}
/>
);
})}
</ul>
</div>
2020-08-24 19:35:21 +02:00
</div>
)}
{isExpanded && comments && (end < numberOfComments || start > 0) && (
<div className="comment__actions">
<Button button="link" label={__('Show more')} onClick={showMore} className="button--uri-indicator" />
</div>
)}
</div>
)
2020-08-24 19:35:21 +02:00
);
}
export default CommentsReplies;