import { Fragment, useState } from 'react'; import { useLocation, useParams } from 'react-router-dom'; import { Trans, useTranslation } from 'react-i18next'; import { Comment } from '@plebbit/plebbit-react-hooks'; import { getFormattedDate, getFormattedTimeAgo } from '../../lib/utils/time-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 _ from 'lodash'; const CommentContent = ({ comment: post, replies }: { comment: Comment; replies: Comment[] }) => { const { t } = useTranslation(); const params = useParams(); const location = useLocation(); const isInPostView = isPostPageView(location.pathname, params); const [showOriginal, setShowOriginal] = useState(false); const isMobile = useIsMobile(); // TODO: commentAuthor is not yet available outside of editedComment, wait for API to be updated const { cid, content, deleted, edit, isRules, original, parentCid, postCid, reason, removed, state } = post || {}; // const banned = !!post?.commentAuthor?.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 quotelinkReply = parentCid && replies?.find((reply) => reply.cid === parentCid); const isReply = !!parentCid; const isReplyingToReply = isReply && parentCid !== postCid; const stateString = useStateString(post); const loadingString =
{isReply && state !== 'failed' && isReplyingToReply && !(deleted || removed) && (); }; export default CommentContent;)} {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 &&} {((!isInPostView && content?.length > 1000 && !showFullComment) || (isInPostView && content?.length > 2000 && !showFullComment)) && (
setShowFullComment(true)} /> }} /> )} {edit && original?.content !== content && ( {showOriginal &&}
} /> }} />{' '} {reason && <>{t('reason_reason', { reason: reason, interpolation: { escapeValue: false } })} >} {showOriginal ? ( )} > )} {/* TODO: commentAuthor is not yet available outside of editedComment, wait for API to be updated */} {/* {banned && (setShowOriginal(!showOriginal)} /> }} /> ) : ( setShowOriginal(!showOriginal)} /> }} /> )}
)} */} {!cid && state === 'pending' && stateString !== 'Failed' && ( <>
{loadingString} > )}