import itemStyles from './item.module.css' import styles from './comment.module.css' import Text from './text' import Link from 'next/link' import Reply from './reply' import { useEffect, useRef, useState } from 'react' import { timeSince } from '../lib/time' import UpVote from './upvote' import Eye from '../svgs/eye-fill.svg' import EyeClose from '../svgs/eye-close-line.svg' import { useRouter } from 'next/router' import CommentEdit from './comment-edit' import Countdown from './countdown' import { NOFOLLOW_LIMIT } from '../lib/constants' import { ignoreClick } from '../lib/clicks' function Parent ({ item, rootText }) { const ParentFrag = () => ( <> \ parent ) if (!item.root) { return } return ( <> {Number(item.root.id) !== Number(item.parentId) && } \ {rootText || 'on:'} {item.root.title} ) } const truncateString = (string = '', maxLength = 140) => string.length > maxLength ? `${string.substring(0, maxLength)} […]` : string export function CommentFlat ({ item, ...props }) { const router = useRouter() return (
{ if (ignoreClick(e)) { return } router.push({ pathname: '/items/[id]', query: { id: item.root.id, commentId: item.id } }, `/items/${item.root.id}`) }} >
) } export default function Comment ({ item, children, replyOpen, includeParent, rootText, noComments, noReply, truncate }) { const [edit, setEdit] = useState() const [collapse, setCollapse] = useState(false) const ref = useRef(null) const router = useRouter() const mine = item.mine const editThreshold = new Date(item.createdAt).getTime() + 10 * 60000 const [canEdit, setCanEdit] = useState(mine && (Date.now() < editThreshold)) useEffect(() => { if (Number(router.query.commentId) === Number(item.id)) { ref.current.scrollIntoView() ref.current.classList.add('flash-it') router.replace({ pathname: router.pathname, query: { id: router.query.id } }, undefined, { scroll: false }) } setCollapse(localStorage.getItem(`commentCollapse:${item.id}`)) }, [item]) const op = item.root.user.name === item.user.name return (
{item.sats} sats \ {item.boost > 0 && <> {item.boost} boost \ } {item.ncomments} replies \ @{item.user.name}{op && ' OP'} {timeSince(new Date(item.createdAt))} {includeParent && } {canEdit && <> \
{ setEdit(!edit) }} > {edit ? 'cancel' : 'edit'} { setCanEdit(false) }} />
}
{!includeParent && (collapse ? { setCollapse(false) localStorage.removeItem(`commentCollapse:${item.id}`) }} /> : { setCollapse(true) localStorage.setItem(`commentCollapse:${item.id}`, 'yep') }} />)}
{edit ? ( { setEdit(!edit) setCanEdit(mine && (Date.now() < editThreshold)) }} /> ) : (
{truncate ? truncateString(item.text) : item.searchText || item.text}
)}
{!noReply && } {children}
{item.comments && !noComments ? item.comments.map((item) => ( )) : null}
) } export function CommentSkeleton ({ skeletonChildren }) { return (
{skeletonChildren ? : null}
) }