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

156 lines
4.9 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';
import CommentCreate from 'component/commentCreate';
type Props = {
comments: Array<any>,
uri: string,
claimIsMine: boolean,
myChannels: ?Array<ChannelClaim>,
linkedComment?: Comment,
topLevelId: string,
2020-08-24 19:35:21 +02:00
commentingEnabled: boolean,
topLevelIsReplying: boolean,
setTopLevelIsReplying: boolean => void,
2020-08-24 19:35:21 +02:00
};
function CommentsReplies(props: Props) {
2020-08-25 21:54:06 +02:00
const {
uri,
comments,
claimIsMine,
myChannels,
linkedComment,
topLevelId,
commentingEnabled,
topLevelIsReplying,
setTopLevelIsReplying,
} = props;
2020-08-24 19:35:21 +02:00
const [isExpanded, setExpanded] = React.useState(false);
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 : '';
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);
setTopLevelIsReplying(false);
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 (
(Boolean(numberOfComments) || topLevelIsReplying) && (
<div className="comment__replies-container">
2020-09-08 18:58:09 +02:00
{Boolean(numberOfComments) && (
<div className="comment__actions--nested">
<Button
className="comment__action"
label={
isExpanded
? __('Hide %number% Replies', { number: numberOfComments })
: __('Show %number% Replies', { number: numberOfComments })
}
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
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}
hideReplyButton={index !== displayedComments.length - 1}
topLevelIsReplying={topLevelIsReplying}
setTopLevelIsReplying={setTopLevelIsReplying}
/>
);
})}
</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>
)}
2020-08-24 19:35:21 +02:00
{topLevelIsReplying && (
<CommentCreate
isNested={isExpanded}
key={topLevelId}
uri={uri}
topLevelId={topLevelId}
onDoneReplying={() => handleCommentDone()}
onCancelReplying={() => setTopLevelIsReplying(false)}
/>
)}
</div>
)
2020-08-24 19:35:21 +02:00
);
}
export default CommentsReplies;