2020-08-24 19:35:21 +02:00
|
|
|
// @flow
|
2020-08-25 21:54:06 +02:00
|
|
|
import * as ICONS from 'constants/icons';
|
2021-10-13 14:59:32 +02:00
|
|
|
import Button from 'component/button';
|
2021-10-13 22:28:19 +02:00
|
|
|
import Comment from 'component/comment';
|
|
|
|
import React from 'react';
|
2021-07-15 16:43:28 +02:00
|
|
|
import Spinner from 'component/spinner';
|
2020-08-24 19:35:21 +02:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
uri: string,
|
2021-07-15 16:43:28 +02:00
|
|
|
linkedCommentId?: string,
|
2020-10-07 21:14:52 +02:00
|
|
|
threadDepth: number,
|
2021-08-04 17:01:31 +02:00
|
|
|
numDirectReplies: number, // Total replies for parentId as reported by 'comment[replies]'. Includes blocked items.
|
|
|
|
hasMore: boolean,
|
2021-08-27 12:29:58 +02:00
|
|
|
supportDisabled: boolean,
|
2021-10-13 22:28:19 +02:00
|
|
|
onShowMore?: () => void,
|
2022-03-02 13:10:52 +01:00
|
|
|
// redux
|
|
|
|
fetchedReplies: Array<Comment>,
|
|
|
|
claimIsMine: boolean,
|
|
|
|
isFetching: boolean,
|
2020-08-24 19:35:21 +02:00
|
|
|
};
|
|
|
|
|
2022-03-02 13:10:52 +01:00
|
|
|
export default function CommentsReplies(props: Props) {
|
2021-07-15 16:43:28 +02:00
|
|
|
const {
|
|
|
|
uri,
|
|
|
|
fetchedReplies,
|
|
|
|
claimIsMine,
|
|
|
|
linkedCommentId,
|
|
|
|
threadDepth,
|
|
|
|
numDirectReplies,
|
2022-03-02 13:10:52 +01:00
|
|
|
isFetching,
|
2021-08-04 17:01:31 +02:00
|
|
|
hasMore,
|
2021-08-27 12:29:58 +02:00
|
|
|
supportDisabled,
|
2021-10-13 22:28:19 +02:00
|
|
|
onShowMore,
|
2021-07-15 16:43:28 +02:00
|
|
|
} = props;
|
|
|
|
|
2020-10-07 21:14:52 +02:00
|
|
|
const [isExpanded, setExpanded] = React.useState(true);
|
2021-10-14 13:54:07 +02:00
|
|
|
|
2021-10-13 22:28:19 +02:00
|
|
|
return !numDirectReplies ? null : (
|
|
|
|
<div className="comment__replies-container">
|
|
|
|
{!isExpanded ? (
|
|
|
|
<div className="comment__actions--nested">
|
|
|
|
<Button
|
|
|
|
className="comment__action"
|
|
|
|
label={__('Show Replies')}
|
|
|
|
onClick={() => setExpanded(!isExpanded)}
|
|
|
|
icon={isExpanded ? ICONS.UP : ICONS.DOWN}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<div className="comment__replies">
|
|
|
|
<Button className="comment__threadline" aria-label="Hide Replies" onClick={() => setExpanded(false)} />
|
2020-08-24 19:35:21 +02:00
|
|
|
|
2021-10-13 22:28:19 +02:00
|
|
|
<ul className="comments--replies">
|
2022-03-02 13:10:52 +01:00
|
|
|
{fetchedReplies.map((comment) => (
|
|
|
|
<Comment
|
|
|
|
key={comment.comment_id}
|
|
|
|
threadDepth={threadDepth}
|
|
|
|
uri={uri}
|
|
|
|
comment={comment}
|
|
|
|
claimIsMine={claimIsMine}
|
|
|
|
linkedCommentId={linkedCommentId}
|
|
|
|
supportDisabled={supportDisabled}
|
|
|
|
/>
|
|
|
|
))}
|
2021-10-13 22:28:19 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
)}
|
2022-03-02 13:10:52 +01:00
|
|
|
|
2021-10-13 22:28:19 +02:00
|
|
|
{isExpanded && fetchedReplies && hasMore && (
|
|
|
|
<div className="comment__actions--nested">
|
|
|
|
<Button
|
|
|
|
button="link"
|
|
|
|
label={__('Show more')}
|
|
|
|
onClick={() => onShowMore && onShowMore()}
|
|
|
|
className="button--uri-indicator"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)}
|
2022-03-02 13:10:52 +01:00
|
|
|
|
|
|
|
{isFetching && (
|
2021-10-13 22:28:19 +02:00
|
|
|
<div className="comment__replies-container">
|
2020-09-11 19:51:31 +02:00
|
|
|
<div className="comment__actions--nested">
|
2021-10-13 22:28:19 +02:00
|
|
|
<Spinner type="small" />
|
2021-07-15 16:43:28 +02:00
|
|
|
</div>
|
2021-10-13 22:28:19 +02:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
2020-08-24 19:35:21 +02:00
|
|
|
);
|
|
|
|
}
|