{!(item.position && (pinnable || !item.subName)) && !(!item.parentId && Number(item.user?.id) === USER_ID.ad) &&
<>
{numWithUnits(item.sats)}
\
>}
{item.boost > 0 &&
<>
{abbrNum(item.boost)} boost
\
>}
{
const viewedAt = commentsViewedAt(item)
if (viewedAt) {
e.preventDefault()
router.push(
`/items/${item.id}?commentsViewedAt=${viewedAt}`,
`/items/${item.id}`)
}
}} title={numWithUnits(item.commentSats)} className='text-reset position-relative'
>
{numWithUnits(item.ncomments, {
abbreviate: false,
unitPlural: commentsText,
unitSingular: commentTextSingular
})}
{hasNewComments &&
{' '}
}
\
{showUser &&
@{item.user.name}
{embellishUser}
}
{timeSince(new Date(item.createdAt))}
{item.prior &&
<>
\
yesterday
>}
{item.subName &&
{' '}
{item.subName}
}
{sub?.nsfw &&
nsfw}
{(item.outlawed && !item.mine &&
{' '}
outlawed
) ||
(item.freebie && !item.position &&
{' '}
freebie
)}
{(item.apiKey &&
<>{' '}
bot>
)}
{extraBadges}
{
showActionDropdown &&
<>
{(item.parentId || item.text) && onQuoteReply &&
quote reply}
{me && }
{me && }
{item.otsHash &&
opentimestamp
}
{item?.noteId && (
window.open(`https://njump.me/${item.noteId}`, '_blank', 'noopener,noreferrer,nofollow')}>
nostr note
)}
{item && item.mine && !item.noteId && !item.isJob && !item.parentId &&
}
{me && !item.position &&
!item.mine && !item.deletedAt &&
(item.meDontLikeSats > meTotalSats
?
: )}
{me && sub && !item.mine && !item.outlawed && Number(me.id) === Number(sub.userId) && sub.moderated &&
<>
>}
{item.mine && item.invoice?.id &&
<>
view invoice
>}
{me && !nested && !item.mine && sub && Number(me.id) !== Number(sub.userId) &&
<>
>}
{canPin &&
<>
>}
{item.mine && !item.position && !item.deletedAt && !item.bio &&
<>
>}
{me && !item.mine &&
<>
>}
>
}
{extraInfo}
)
}