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

129 lines
4 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 Spinner from 'component/spinner';
2020-08-24 19:35:21 +02:00
type Props = {
fetchedReplies: Array<any>,
2020-08-24 19:35:21 +02:00
uri: string,
parentId: string,
2020-08-24 19:35:21 +02:00
claimIsMine: boolean,
myChannels: ?Array<ChannelClaim>,
linkedCommentId?: string,
2020-08-24 19:35:21 +02:00
commentingEnabled: boolean,
2020-10-07 21:14:52 +02:00
threadDepth: number,
numDirectReplies: number, // Total replies for parentId as reported by 'comment[replies]'. Includes blocked items.
isFetchingByParentId: { [string]: boolean },
onShowMore?: () => void,
hasMore: boolean,
2021-08-27 12:29:58 +02:00
supportDisabled: boolean,
2020-08-24 19:35:21 +02:00
};
function CommentsReplies(props: Props) {
const {
uri,
parentId,
fetchedReplies,
claimIsMine,
myChannels,
linkedCommentId,
commentingEnabled,
threadDepth,
numDirectReplies,
isFetchingByParentId,
onShowMore,
hasMore,
2021-08-27 12:29:58 +02:00
supportDisabled,
} = props;
2020-10-07 21:14:52 +02:00
const [isExpanded, setExpanded] = React.useState(true);
2020-08-24 19:35:21 +02:00
2020-08-25 21:54:06 +02:00
function showMore() {
if (onShowMore) {
onShowMore();
2020-08-24 19:35:21 +02:00
}
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
const displayedComments = fetchedReplies;
2020-08-24 19:35:21 +02:00
return (
Boolean(numDirectReplies) && (
<div className="comment__replies-container">
{Boolean(numDirectReplies) && !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
)}
{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 &&
displayedComments.map((comment) => {
return (
<Comment
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)}
linkedCommentId={linkedCommentId}
commentingEnabled={commentingEnabled}
supportAmount={comment.support_amount}
numDirectReplies={comment.replies}
isModerator={comment.is_moderator}
isGlobalMod={comment.is_global_mod}
2021-08-27 12:29:58 +02:00
supportDisabled={supportDisabled}
/>
);
})}
</ul>
</div>
2020-08-24 19:35:21 +02:00
</div>
)}
{isExpanded && fetchedReplies && hasMore && (
<div className="comment__actions--nested">
<Button button="link" label={__('Show more')} onClick={showMore} className="button--uri-indicator" />
</div>
)}
{isFetchingByParentId[parentId] && (
<div className="comment__replies-container">
<div className="comment__actions--nested">
<Spinner type="small" />
</div>
</div>
)}
</div>
)
2020-08-24 19:35:21 +02:00
);
}
export default CommentsReplies;