212 lines
6.9 KiB
TypeScript
212 lines
6.9 KiB
TypeScript
import { Separator } from '@/components/ui/separator'
|
|
import { BIG_RELAY_URLS } from '@/constants'
|
|
import { isProtectedEvent, isReplyNoteEvent } from '@/lib/event'
|
|
import { isReplyETag, isRootETag } from '@/lib/tag'
|
|
import { cn } from '@/lib/utils'
|
|
import { useNostr } from '@/providers/NostrProvider'
|
|
import { useNoteStats } from '@/providers/NoteStatsProvider'
|
|
import client from '@/services/client.service'
|
|
import dayjs from 'dayjs'
|
|
import { Event as NEvent, kinds } from 'nostr-tools'
|
|
import { useCallback, useEffect, useRef, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import ReplyNote from '../ReplyNote'
|
|
|
|
const LIMIT = 100
|
|
|
|
export default function ReplyNoteList({ event, className }: { event: NEvent; className?: string }) {
|
|
const { t } = useTranslation()
|
|
const { pubkey } = useNostr()
|
|
const [timelineKey, setTimelineKey] = useState<string | undefined>(undefined)
|
|
const [until, setUntil] = useState<number | undefined>(() => dayjs().unix())
|
|
const [replies, setReplies] = useState<NEvent[]>([])
|
|
const [replyMap, setReplyMap] = useState<
|
|
Record<string, { event: NEvent; level: number; parent?: NEvent } | undefined>
|
|
>({})
|
|
const [loading, setLoading] = useState<boolean>(false)
|
|
const [highlightReplyId, setHighlightReplyId] = useState<string | undefined>(undefined)
|
|
const { updateNoteReplyCount } = useNoteStats()
|
|
const replyRefs = useRef<Record<string, HTMLDivElement | null>>({})
|
|
const bottomRef = useRef<HTMLDivElement | null>(null)
|
|
|
|
useEffect(() => {
|
|
const handleEventPublished = (data: Event) => {
|
|
const customEvent = data as CustomEvent<NEvent>
|
|
const evt = customEvent.detail
|
|
if (
|
|
isReplyNoteEvent(evt) &&
|
|
evt.tags.some(([tagName, tagValue]) => tagName === 'e' && tagValue === event.id)
|
|
) {
|
|
onNewReply(evt)
|
|
}
|
|
}
|
|
|
|
client.addEventListener('eventPublished', handleEventPublished)
|
|
return () => {
|
|
client.removeEventListener('eventPublished', handleEventPublished)
|
|
}
|
|
}, [event])
|
|
|
|
useEffect(() => {
|
|
if (loading) return
|
|
|
|
const init = async () => {
|
|
setLoading(true)
|
|
setReplies([])
|
|
|
|
try {
|
|
const relayList = await client.fetchRelayList(event.pubkey)
|
|
const relayUrls = relayList.read.concat(BIG_RELAY_URLS)
|
|
if (isProtectedEvent(event)) {
|
|
const seenOn = client.getSeenEventRelayUrls(event.id)
|
|
relayUrls.unshift(...seenOn)
|
|
}
|
|
const { closer, timelineKey } = await client.subscribeTimeline(
|
|
relayUrls.slice(0, 4),
|
|
{
|
|
'#e': [event.id],
|
|
kinds: [kinds.ShortTextNote],
|
|
limit: LIMIT
|
|
},
|
|
{
|
|
onEvents: (evts, eosed) => {
|
|
setReplies(evts.filter((evt) => isReplyNoteEvent(evt)).reverse())
|
|
if (eosed) {
|
|
setLoading(false)
|
|
setUntil(evts.length >= LIMIT ? evts[evts.length - 1].created_at - 1 : undefined)
|
|
}
|
|
},
|
|
onNew: (evt) => {
|
|
if (!isReplyNoteEvent(evt)) return
|
|
onNewReply(evt)
|
|
}
|
|
}
|
|
)
|
|
setTimelineKey(timelineKey)
|
|
return closer
|
|
} catch {
|
|
setLoading(false)
|
|
}
|
|
return
|
|
}
|
|
|
|
const promise = init()
|
|
return () => {
|
|
promise.then((closer) => closer?.())
|
|
}
|
|
}, [event])
|
|
|
|
useEffect(() => {
|
|
updateNoteReplyCount(event.id, replies.length)
|
|
|
|
const replyMap: Record<string, { event: NEvent; level: number; parent?: NEvent } | undefined> =
|
|
{}
|
|
for (const reply of replies) {
|
|
const parentReplyTag = reply.tags.find(isReplyETag)
|
|
if (parentReplyTag) {
|
|
const parentReplyInfo = replyMap[parentReplyTag[1]]
|
|
const level = parentReplyInfo ? parentReplyInfo.level + 1 : 1
|
|
replyMap[reply.id] = { event: reply, level, parent: parentReplyInfo?.event }
|
|
continue
|
|
}
|
|
|
|
const rootReplyTag = reply.tags.find(isRootETag)
|
|
if (rootReplyTag) {
|
|
replyMap[reply.id] = { event: reply, level: 1 }
|
|
continue
|
|
}
|
|
|
|
let level = 0
|
|
let parent: NEvent | undefined
|
|
for (const [tagName, tagValue] of reply.tags) {
|
|
if (tagName === 'e') {
|
|
const info = replyMap[tagValue]
|
|
if (info && info.level > level) {
|
|
level = info.level
|
|
parent = info.event
|
|
}
|
|
}
|
|
}
|
|
replyMap[reply.id] = { event: reply, level: level + 1, parent }
|
|
}
|
|
setReplyMap(replyMap)
|
|
}, [replies, event.id, updateNoteReplyCount])
|
|
|
|
const loadMore = useCallback(async () => {
|
|
if (loading || !until || !timelineKey) return
|
|
|
|
setLoading(true)
|
|
const events = await client.loadMoreTimeline(timelineKey, until, LIMIT)
|
|
const olderReplies = events.filter((evt) => isReplyNoteEvent(evt)).reverse()
|
|
if (olderReplies.length > 0) {
|
|
setReplies((pre) => [...olderReplies, ...pre])
|
|
}
|
|
setUntil(events.length ? events[events.length - 1].created_at - 1 : undefined)
|
|
setLoading(false)
|
|
}, [loading, until, timelineKey])
|
|
|
|
const onNewReply = useCallback(
|
|
(evt: NEvent) => {
|
|
setReplies((pre) => {
|
|
if (pre.some((reply) => reply.id === evt.id)) return pre
|
|
return [...pre, evt]
|
|
})
|
|
if (evt.pubkey === pubkey) {
|
|
setTimeout(() => {
|
|
if (bottomRef.current) {
|
|
bottomRef.current.scrollIntoView({ behavior: 'smooth', block: 'nearest' })
|
|
}
|
|
highlightReply(evt.id, false)
|
|
}, 100)
|
|
}
|
|
},
|
|
[pubkey]
|
|
)
|
|
|
|
const highlightReply = useCallback((eventId: string, scrollTo = true) => {
|
|
if (scrollTo) {
|
|
const ref = replyRefs.current[eventId]
|
|
if (ref) {
|
|
ref.scrollIntoView({ behavior: 'smooth', block: 'nearest' })
|
|
}
|
|
}
|
|
setHighlightReplyId(eventId)
|
|
setTimeout(() => {
|
|
setHighlightReplyId((pre) => (pre === eventId ? undefined : pre))
|
|
}, 1500)
|
|
}, [])
|
|
|
|
return (
|
|
<>
|
|
{(loading || until) && (
|
|
<div
|
|
className={`text-sm text-center text-muted-foreground mt-2 ${!loading ? 'hover:text-foreground cursor-pointer' : ''}`}
|
|
onClick={loadMore}
|
|
>
|
|
{loading ? t('loading...') : t('load more older replies')}
|
|
</div>
|
|
)}
|
|
{replies.length === 0 && !loading && !until && (
|
|
<div className="text-sm mt-2 text-center text-muted-foreground">{t('no replies')}</div>
|
|
)}
|
|
{replies.length > 0 && (loading || until) && <Separator className="mt-2" />}
|
|
<div className={cn('mb-2', className)}>
|
|
{replies.map((reply) => {
|
|
const info = replyMap[reply.id]
|
|
return (
|
|
<div ref={(el) => (replyRefs.current[reply.id] = el)} key={reply.id}>
|
|
<ReplyNote
|
|
event={reply}
|
|
parentEvent={info?.parent}
|
|
onClickParent={highlightReply}
|
|
highlight={highlightReplyId === reply.id}
|
|
/>
|
|
</div>
|
|
)
|
|
})}
|
|
</div>
|
|
<div ref={bottomRef} />
|
|
</>
|
|
)
|
|
}
|