| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- import React, { useState } from 'react';
- import type { IUser } from '@growi/core';
- import { Collapse } from 'reactstrap';
- import type { RendererOptions } from '~/interfaces/renderer-options';
- import type { ICommentHasId, ICommentHasIdList } from '../../interfaces/comment';
- import { useIsAllReplyShown } from '../../stores/context';
- import { Comment } from './Comment';
- import styles from './ReplyComments.module.scss';
- type ReplycommentsProps = {
- rendererOptions: RendererOptions,
- isReadOnly: boolean,
- revisionId: string,
- revisionCreatedAt: Date,
- currentUser: IUser,
- replyList: ICommentHasIdList,
- pageId: string,
- pagePath: string,
- deleteBtnClicked: (comment: ICommentHasId) => void,
- onComment: () => void,
- }
- export const ReplyComments = (props: ReplycommentsProps): JSX.Element => {
- const {
- rendererOptions, isReadOnly, revisionId, revisionCreatedAt, currentUser, replyList,
- pageId, pagePath, deleteBtnClicked, onComment,
- } = props;
- const { data: isAllReplyShown } = useIsAllReplyShown();
- const [isOlderRepliesShown, setIsOlderRepliesShown] = useState(false);
- const renderReply = (reply: ICommentHasId) => {
- return (
- <div key={reply._id} className={`${styles['page-comment-reply']} ms-4 ms-sm-5 me-3`}>
- <Comment
- rendererOptions={rendererOptions}
- comment={reply}
- revisionId={revisionId}
- revisionCreatedAt={revisionCreatedAt}
- currentUser={currentUser}
- isReadOnly={isReadOnly}
- pageId={pageId}
- pagePath={pagePath}
- deleteBtnClicked={deleteBtnClicked}
- onComment={onComment}
- />
- </div>
- );
- };
- if (isAllReplyShown) {
- return (
- <>
- {replyList.map((reply) => {
- return renderReply(reply);
- })}
- </>
- );
- }
- const areThereHiddenReplies = (replyList.length > 2);
- const toggleButtonIconName = isOlderRepliesShown ? 'expand_less' : 'more_vert';
- const toggleButtonIcon = <span className="material-icons-outlined me-1">{toggleButtonIconName}</span>;
- const toggleButtonLabel = isOlderRepliesShown ? '' : 'more';
- const shownReplies = replyList.slice(replyList.length - 2, replyList.length);
- const hiddenReplies = replyList.slice(0, replyList.length - 2);
- const hiddenElements = hiddenReplies.map((reply) => {
- return renderReply(reply);
- });
- const shownElements = shownReplies.map((reply) => {
- return renderReply(reply);
- });
- return (
- <>
- {areThereHiddenReplies && (
- <div className={`${styles['page-comments-hidden-replies']}`}>
- <Collapse isOpen={isOlderRepliesShown}>
- <div>{hiddenElements}</div>
- </Collapse>
- <div className="text-center">
- <button
- type="button"
- className="btn btn-link"
- onClick={() => setIsOlderRepliesShown(!isOlderRepliesShown)}
- >
- {toggleButtonIcon} {toggleButtonLabel}
- </button>
- </div>
- </div>
- )}
- {shownElements}
- </>
- );
- };
|