import React, { FC, useEffect, useState, useMemo, memo, useCallback, } from 'react'; import { Nullable } from '@growi/core'; import { Button } from 'reactstrap'; import { toastError } from '~/client/util/apiNotification'; import { apiPost } from '~/client/util/apiv1-client'; import { useCurrentPagePath } from '~/stores/context'; import { useSWRxCurrentPage } from '~/stores/page'; import { useCommentPreviewOptions } from '~/stores/renderer'; import { ICommentHasId, ICommentHasIdList } from '../interfaces/comment'; import { useSWRxPageComment } from '../stores/comment'; import { Comment } from './PageComment/Comment'; import { CommentEditor } from './PageComment/CommentEditor'; import { CommentEditorLazyRenderer } from './PageComment/CommentEditorLazyRenderer'; import DeleteCommentModal from './PageComment/DeleteCommentModal'; import { ReplayComments } from './PageComment/ReplayComments'; import styles from './PageComment.module.scss'; type Props = { pageId?: Nullable isReadOnly: boolean, titleAlign?: 'center' | 'left' | 'right', highlightKeywords?: string[], hideIfEmpty?: boolean, } export const PageComment: FC = memo((props:Props): JSX.Element => { const { pageId, highlightKeywords, isReadOnly, titleAlign, hideIfEmpty, } = props; const { data: comments, mutate } = useSWRxPageComment(pageId); const { data: rendererOptions } = useCommentPreviewOptions(); const { data: currentPage } = useSWRxCurrentPage(); const { data: currentPagePath } = useCurrentPagePath(); const [commentToBeDeleted, setCommentToBeDeleted] = useState(null); const [isDeleteConfirmModalShown, setIsDeleteConfirmModalShown] = useState(false); const [showEditorIds, setShowEditorIds] = useState>(new Set()); const [formatedComments, setFormatedComments] = useState(null); const [errorMessageOnDelete, setErrorMessageOnDelete] = useState(''); const commentsFromOldest = useMemo(() => (formatedComments != null ? [...formatedComments].reverse() : null), [formatedComments]); const commentsExceptReply: ICommentHasIdList | undefined = useMemo( () => commentsFromOldest?.filter(comment => comment.replyTo == null), [commentsFromOldest], ); const allReplies = {}; const highlightComment = useCallback((comment: string):string => { if (highlightKeywords == null) return comment; let highlightedComment = ''; highlightKeywords.forEach((highlightKeyword) => { highlightedComment = comment.replaceAll(highlightKeyword, '$&'); }); return highlightedComment; }, [highlightKeywords]); useEffect(() => { if (comments != null) { const preprocessedCommentList: string[] = comments.map((comment) => { const highlightedComment: string = highlightComment(comment.comment); return highlightedComment; }); const preprocessedComments: ICommentHasIdList = comments.map((comment, index) => { return { ...comment, comment: preprocessedCommentList[index] }; }); setFormatedComments(preprocessedComments); } }, [comments, highlightComment]); if (commentsFromOldest != null) { commentsFromOldest.forEach((comment) => { if (comment.replyTo != null) { allReplies[comment.replyTo] = allReplies[comment.replyTo] == null ? [comment] : [...allReplies[comment.replyTo], comment]; } }); } const onClickDeleteButton = useCallback((comment: ICommentHasId) => { setCommentToBeDeleted(comment); setIsDeleteConfirmModalShown(true); }, []); const onCancelDeleteComment = useCallback(() => { setCommentToBeDeleted(null); setIsDeleteConfirmModalShown(false); }, []); const onDeleteCommentAfterOperation = useCallback(() => { onCancelDeleteComment(); mutate(); }, [mutate, onCancelDeleteComment]); const onDeleteComment = useCallback(async() => { if (commentToBeDeleted == null) return; try { await apiPost('/comments.remove', { comment_id: commentToBeDeleted._id }); onDeleteCommentAfterOperation(); } catch (error:unknown) { setErrorMessageOnDelete(error as string); toastError(`error: ${error}`); } }, [commentToBeDeleted, onDeleteCommentAfterOperation]); const removeShowEditorId = useCallback((commentId: string) => { setShowEditorIds((previousState) => { const previousShowEditorIds = new Set(...previousState); previousShowEditorIds.delete(commentId); return previousShowEditorIds; }); }, []); let commentTitleClasses = 'border-bottom py-3 mb-3'; commentTitleClasses = titleAlign != null ? `${commentTitleClasses} text-${titleAlign}` : `${commentTitleClasses} text-center`; if (commentsFromOldest == null || commentsExceptReply == null || rendererOptions == null || currentPagePath == null || currentPage == null || (hideIfEmpty && comments?.length === 0)) { return ( <>
{/* TODO: container-lg expected global import, _override.scss */}

Comments

); } const generateCommentInnerElement = (comment: ICommentHasId) => ( ); const generateAllRepliesElement = (replyComments: ICommentHasIdList) => ( ); return ( <>
{/* TODO: container-lg expected global import, _override.scss */}

Comments

{ commentsExceptReply.map((comment) => { const defaultCommentThreadClasses = 'page-comment-thread pb-5'; const hasReply: boolean = Object.keys(allReplies).includes(comment._id); let commentThreadClasses = ''; commentThreadClasses = hasReply ? `${defaultCommentThreadClasses} page-comment-thread-no-replies` : defaultCommentThreadClasses; return (
{/* display comment */} {generateCommentInnerElement(comment)} {/* display reply comment */} {hasReply && generateAllRepliesElement(allReplies[comment._id])} {/* display reply button */} {(!isReadOnly && !showEditorIds.has(comment._id)) && (
)} {/* display reply editor */} {(!isReadOnly && showEditorIds.has(comment._id)) && ( { removeShowEditorId(comment._id); }} onCommentButtonClicked={() => { removeShowEditorId(comment._id); mutate(); }} /> )}
); })}
{/* TODO: Check if identical-page */}
{(!isReadOnly && commentToBeDeleted != null) && ( )} ); }); PageComment.displayName = 'PageComment';