import { Fragment, type ReactNode, useMemo, useState } from 'react'; import { useLocation, useParams } from 'react-router-dom'; import { Trans, useTranslation } from 'react-i18next'; import { Comment, useComment } from '@bitsocialnet/bitsocial-react-hooks'; import useCommunitiesPagesStore from '@bitsocialnet/bitsocial-react-hooks/dist/stores/communities-pages'; import usePostNumberStore from '../../stores/use-post-number-store'; import getShortAddress from '../../lib/get-short-address'; import { getFormattedDate, getFormattedTimeAgo } from '../../lib/utils/time-utils'; import { isUnavailableQuoteTarget } from '../../lib/utils/quote-link-utils'; import { isPostPageView } from '../../lib/utils/view-utils'; import useIsMobile from '../../hooks/use-is-mobile'; import useStateString from '../../hooks/use-state-string'; import LoadingEllipsis from '../../components/loading-ellipsis'; import ReplyQuotePreview from '../../components/reply-quote-preview'; import Markdown from '../../components/markdown'; import Tooltip from '../../components/tooltip'; import styles from '../../views/post/post.module.css'; import capitalize from 'lodash/capitalize'; import { getCommentCommunityAddress, withResolvedCommentCommunityAddress } from '../../lib/utils/comment-utils'; const QuotedCidLink = ({ cid, postCid }: { cid: string; postCid: string }) => { const quotedNumber = usePostNumberStore((state) => state.cidToNumber[cid]); const commentFromStore = useCommunitiesPagesStore((state) => state.comments[cid]); const commentFromHook = useComment({ commentCid: cid, onlyIfCached: true }); // Prefer hook version to ensure 'number' property is populated for deeper nested replies in Virtuoso const quotedComment = commentFromHook?.number !== undefined ? commentFromHook : commentFromStore; const isOP = cid === postCid; const isUnavailable = isUnavailableQuoteTarget(quotedComment); return ; }; const useScopedCidToNumber = (cids: string[]) => { const sortedUniqueCids = useMemo(() => { const uniqueCids = new Set(); for (const cid of cids) { if (cid) { uniqueCids.add(cid); } } return [...uniqueCids].sort(); }, [cids]); const cidToNumber = usePostNumberStore( useMemo( () => (state) => { if (sortedUniqueCids.length === 0) { return {} as Record; } const nextCidToNumber: Record = {}; for (const cid of sortedUniqueCids) { const number = state.cidToNumber[cid]; if (typeof number === 'number') { nextCidToNumber[cid] = number; } } return nextCidToNumber; }, [sortedUniqueCids], ), ); return cidToNumber; }; const CommentContent = ({ comment: post, prependContent }: { comment: Comment; prependContent?: ReactNode }) => { const { t } = useTranslation(); const params = useParams(); const location = useLocation(); const isInPostView = isPostPageView(location.pathname, params); const [showOriginal, setShowOriginal] = useState(false); const isMobile = useIsMobile(); const resolvedPost = withResolvedCommentCommunityAddress(post); const { cid, content, deleted, edit, original, parentCid, postCid, pendingApproval, quotedCids, reason, removed, state } = resolvedPost || {}; const communityAddress = getCommentCommunityAddress(resolvedPost); const purged = resolvedPost?.commentModeration?.purged; const banExpiresAt = resolvedPost?.author?.community?.banExpiresAt; const banned = !!banExpiresAt; const [showFullComment, setShowFullComment] = useState(false); const displayContent = content && (!isInPostView && content.length > 1000 && !showFullComment ? content.slice(0, 1000) : isInPostView && content.length > 2000 && !showFullComment ? content.slice(0, 2000) : content); const quotelinkReplyFromStore = useCommunitiesPagesStore((state) => state.comments[parentCid]); const quotelinkReplyFromHook = useComment({ commentCid: parentCid, onlyIfCached: true }); // Prefer hook version to ensure 'number' property is populated for deeper nested replies in Virtuoso const quotelinkReply = quotelinkReplyFromHook?.number !== undefined ? quotelinkReplyFromHook : quotelinkReplyFromStore; const isReply = !!parentCid; const isReplyingToReply = isReply && parentCid !== postCid; const contentNumbers = useMemo(() => { if (!content) return new Set(); return new Set([...content.matchAll(/(?/\w])>>(\d+)(?![\d/])/g)].map((m) => parseInt(m[1], 10))); }, [content]); const relevantQuotedCids = useMemo(() => { const cids = quotedCids ? [...quotedCids] : []; if (parentCid) { cids.push(parentCid); } return cids; }, [quotedCids, parentCid]); const cidToNumber = useScopedCidToNumber(relevantQuotedCids); const filteredQuotedCids = useMemo(() => { if (!quotedCids?.length) return []; return quotedCids.filter((cid: string) => { const num = cidToNumber[cid]; if (num === undefined) return false; return !contentNumbers.has(num); }); }, [quotedCids, cidToNumber, contentNumbers]); const parentNumber = parentCid ? cidToNumber[parentCid] : undefined; const shouldShowReplyingToReply = isReplyingToReply && parentNumber !== undefined && !contentNumbers.has(parentNumber); const stateString = useStateString(resolvedPost); const hasFailedState = state === 'failed'; const loadingString = (
{!hasFailedState ? : stateString || capitalize(t('failed'))}
); return (
{prependContent && ( <> {prependContent}
)} {isReply && !hasFailedState && !(deleted || removed || purged) && (filteredQuotedCids.length > 0 ? filteredQuotedCids.map((cid: string) => ) : shouldShowReplyingToReply && )} {purged ? ( {capitalize(t('this_post_was_purged'))} ) : removed ? ( reason ? ( <> ({t('this_post_was_removed')})

{`${capitalize(t('reason'))}: "${reason}"`} ) : ( {capitalize(t('this_post_was_removed'))}. ) ) : deleted ? ( reason ? ( <> {t('user_deleted_this_post')}{' '} {`${capitalize(t('reason'))}: "${reason}"`} ) : ( {t('user_deleted_this_post')} ) ) : ( <> {!showOriginal && } {pendingApproval && ( <>

({t('pending_mod_approval')}) )} {((!isInPostView && content?.length > 1000 && !showFullComment) || (isInPostView && content?.length > 2000 && !showFullComment)) && (

{ if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); setShowFullComment(true); } }} onClick={() => setShowFullComment(true)} /> ), }} />
)} {edit && original?.content !== content && ( {showOriginal && }

), }} />{' '} {reason && <>{t('reason_reason', { reason: reason, interpolation: { escapeValue: false } })} } {showOriginal ? ( { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); setShowOriginal(!showOriginal); } }} onClick={() => setShowOriginal(!showOriginal)} /> ), }} /> ) : ( { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); setShowOriginal(!showOriginal); } }} onClick={() => setShowOriginal(!showOriginal)} /> ), }} /> )}
)} )} {banned && (

{`(${t('user_banned')})`}
)} {!cid && ( <>

{loadingString} )}
); }; export default CommentContent;