import React, { useState } from 'react'; import { Collapse } from 'reactstrap'; import { ICommentHasId, ICommentHasIdList } from '../../interfaces/comment'; import { useIsAllReplyShown } from '../../stores/context'; import { Comment } from './Comment'; import styles from './ReplyComments.module.scss'; type ReplycommentsProps = { isReadOnly: boolean, replyList: ICommentHasIdList, deleteBtnClicked: (comment: ICommentHasId) => void, onComment: () => void, currentPagePath: string, currentRevisionId: string, currentRevisionCreatedAt: Date, } export const ReplyComments = (props: ReplycommentsProps): JSX.Element => { const { isReadOnly, replyList, deleteBtnClicked, onComment, currentPagePath, currentRevisionId, currentRevisionCreatedAt, } = props; const { data: isAllReplyShown } = useIsAllReplyShown(); const [isOlderRepliesShown, setIsOlderRepliesShown] = useState(false); const renderReply = (reply: ICommentHasId) => { return (