2025-02-14 13:15:10 +01:00
|
|
|
import { NDKKind } from '@nostr-dev-kit/ndk'
|
|
|
|
import { ProfileLink } from 'components/ProfileSection'
|
|
|
|
import { nip19 } from 'nostr-tools'
|
2025-02-27 14:54:36 +01:00
|
|
|
import { useCallback, useMemo, useState } from 'react'
|
2025-02-14 13:15:10 +01:00
|
|
|
import { Fragment } from 'react/jsx-runtime'
|
|
|
|
import { BlogPreview } from './internal/BlogPreview'
|
|
|
|
import { ModPreview } from './internal/ModPreview'
|
|
|
|
import { NoteWrapper } from './internal/NoteWrapper'
|
2025-02-21 22:17:11 +01:00
|
|
|
import {
|
2025-02-24 14:40:46 +01:00
|
|
|
getIdFromYoutubeLink,
|
2025-02-21 22:17:11 +01:00
|
|
|
isValidAudioUrl,
|
|
|
|
isValidImageUrl,
|
|
|
|
isValidUrl,
|
2025-02-24 14:40:46 +01:00
|
|
|
isValidVideoUrl,
|
|
|
|
isYoutubeLink
|
2025-02-21 22:17:11 +01:00
|
|
|
} from 'utils'
|
2025-02-27 14:54:36 +01:00
|
|
|
import FsLightbox from 'fslightbox-react'
|
|
|
|
import { createPortal } from 'react-dom'
|
2025-02-14 13:15:10 +01:00
|
|
|
|
|
|
|
interface NoteRenderProps {
|
|
|
|
content: string
|
|
|
|
}
|
|
|
|
const link =
|
2025-02-21 21:46:37 +01:00
|
|
|
/(?:https?:\/\/|www\.)(?:[a-zA-Z0-9.-]+\.[a-zA-Z]+(?::\d+)?)(?:[/?#][\p{L}\p{N}\p{M}&.-/?=#\-@%+_,:!~*]*)?/u
|
2025-02-14 13:15:10 +01:00
|
|
|
const nostrMention =
|
2025-02-21 21:46:37 +01:00
|
|
|
/(?:nostr:|@)?(?:npub|note|nprofile|nevent|naddr)1[qpzry9x8gf2tvdw0s3jn54khce6mua7l]{58,}/i
|
2025-02-14 13:15:10 +01:00
|
|
|
const nostrEntity =
|
2025-02-21 21:46:37 +01:00
|
|
|
/(npub|note|nprofile|nevent|naddr)1[qpzry9x8gf2tvdw0s3jn54khce6mua7l]{58,}/i
|
|
|
|
const nostrNip05Mention = /(?:nostr:|@)[^\s]{1,64}@[^\s]+\.[^\s]{2,}/i
|
|
|
|
const nip05Entity = /(?:nostr:|@)([^\s]{1,64}@[^\s]+\.[^\s]{2,})/i
|
2025-02-14 13:15:10 +01:00
|
|
|
|
|
|
|
export const NoteRender = ({ content }: NoteRenderProps) => {
|
2025-02-27 14:54:36 +01:00
|
|
|
const [lightBoxController, setLightBoxController] = useState({
|
|
|
|
toggler: false,
|
|
|
|
slide: 1
|
|
|
|
})
|
|
|
|
const slides = useMemo(() => {
|
|
|
|
const urls: string[] = []
|
|
|
|
const parts = content.matchAll(new RegExp(`${link.source}`, 'gui'))
|
|
|
|
;[...parts]
|
|
|
|
.filter((p) => typeof p !== 'undefined')
|
|
|
|
.forEach((part) => {
|
|
|
|
const [href] = part
|
|
|
|
|
|
|
|
if (href && isValidUrl(href)) {
|
|
|
|
if (isValidImageUrl(href) || isValidVideoUrl(href)) {
|
|
|
|
urls.push(href)
|
|
|
|
} else if (isYoutubeLink(href)) {
|
|
|
|
const id = getIdFromYoutubeLink(href)
|
|
|
|
if (id) {
|
|
|
|
urls.push(`https://www.youtube.com/embed/${id}`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
return urls
|
|
|
|
}, [content])
|
|
|
|
|
|
|
|
const openLightBoxOnSlide = useCallback(
|
|
|
|
(url: string) => {
|
|
|
|
slides.length &&
|
|
|
|
setLightBoxController((prev) => ({
|
|
|
|
toggler: !prev.toggler,
|
|
|
|
slide: slides.findIndex((s) => s === url) + 1
|
|
|
|
}))
|
|
|
|
},
|
|
|
|
[slides]
|
|
|
|
)
|
|
|
|
|
2025-02-14 13:15:10 +01:00
|
|
|
const _content = useMemo(() => {
|
|
|
|
if (!content) return
|
|
|
|
|
|
|
|
const parts = content.split(
|
2025-02-21 14:20:18 +01:00
|
|
|
new RegExp(
|
2025-02-21 21:46:37 +01:00
|
|
|
`(${link.source})|(${nostrMention.source})|(${nostrNip05Mention.source})`,
|
2025-02-21 14:20:18 +01:00
|
|
|
'gui'
|
|
|
|
)
|
2025-02-14 13:15:10 +01:00
|
|
|
)
|
|
|
|
|
2025-02-21 21:46:37 +01:00
|
|
|
const _parts = parts
|
|
|
|
.filter((p) => typeof p !== 'undefined')
|
|
|
|
.map((part, index) => {
|
|
|
|
const key = `${index}-${part}`
|
|
|
|
if (link.test(part)) {
|
|
|
|
const [href] = part.match(link) || []
|
2025-02-21 14:49:24 +01:00
|
|
|
|
2025-02-21 21:46:37 +01:00
|
|
|
if (href && isValidUrl(href)) {
|
|
|
|
if (isValidImageUrl(href)) {
|
|
|
|
// Image
|
|
|
|
return (
|
2025-02-27 14:54:36 +01:00
|
|
|
<img
|
|
|
|
key={key}
|
|
|
|
className='imgFeedRender'
|
|
|
|
src={href}
|
|
|
|
alt=''
|
|
|
|
onClick={() => openLightBoxOnSlide(href)}
|
|
|
|
/>
|
2025-02-21 21:46:37 +01:00
|
|
|
)
|
|
|
|
} else if (isValidVideoUrl(href)) {
|
|
|
|
// Video
|
|
|
|
return (
|
|
|
|
<video
|
|
|
|
key={key}
|
|
|
|
className='videoFeedRender'
|
|
|
|
src={href}
|
|
|
|
controls
|
|
|
|
/>
|
|
|
|
)
|
2025-02-21 22:17:11 +01:00
|
|
|
} else if (isValidAudioUrl(href)) {
|
|
|
|
return <audio key={key} src={href} controls />
|
2025-02-24 14:40:46 +01:00
|
|
|
} else if (isYoutubeLink(href)) {
|
|
|
|
// Youtube
|
|
|
|
const id = getIdFromYoutubeLink(href)
|
|
|
|
if (id) {
|
|
|
|
return (
|
|
|
|
<iframe
|
|
|
|
key={key}
|
|
|
|
className='videoFeedRender'
|
|
|
|
title='Video embed'
|
|
|
|
width='560'
|
|
|
|
height='315'
|
|
|
|
src={`https://www.youtube.com/embed/${id}`}
|
|
|
|
frameBorder='0'
|
|
|
|
allow='accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share'
|
|
|
|
allowFullScreen
|
|
|
|
></iframe>
|
|
|
|
)
|
|
|
|
}
|
2025-02-21 21:46:37 +01:00
|
|
|
}
|
2025-02-21 14:49:24 +01:00
|
|
|
}
|
|
|
|
|
2025-02-21 21:46:37 +01:00
|
|
|
// Link
|
|
|
|
return (
|
|
|
|
<a key={key} target='_blank' href={href}>
|
|
|
|
{href}
|
|
|
|
</a>
|
|
|
|
)
|
|
|
|
} else if (nostrMention.test(part)) {
|
|
|
|
const [encoded] = part.match(nostrEntity) || []
|
2025-02-14 13:15:10 +01:00
|
|
|
|
2025-02-21 21:46:37 +01:00
|
|
|
if (!encoded) return part
|
2025-02-14 13:15:10 +01:00
|
|
|
|
2025-02-21 21:46:37 +01:00
|
|
|
try {
|
|
|
|
const decoded = nip19.decode(encoded)
|
2025-02-14 13:15:10 +01:00
|
|
|
|
2025-02-21 21:46:37 +01:00
|
|
|
switch (decoded.type) {
|
|
|
|
case 'nprofile':
|
|
|
|
return <ProfileLink key={key} pubkey={decoded.data.pubkey} />
|
|
|
|
case 'npub':
|
|
|
|
return <ProfileLink key={key} pubkey={decoded.data} />
|
|
|
|
case 'note':
|
|
|
|
return <NoteWrapper key={key} noteEntity={encoded} />
|
|
|
|
case 'nevent':
|
|
|
|
return <NoteWrapper key={key} noteEntity={encoded} />
|
|
|
|
case 'naddr':
|
|
|
|
return (
|
|
|
|
<Fragment key={key}>
|
|
|
|
{handleNaddr(decoded.data, part)}
|
|
|
|
</Fragment>
|
|
|
|
)
|
2025-02-14 13:15:10 +01:00
|
|
|
|
2025-02-21 21:46:37 +01:00
|
|
|
default:
|
|
|
|
return part
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
return part
|
2025-02-14 13:15:10 +01:00
|
|
|
}
|
2025-02-21 21:46:37 +01:00
|
|
|
} else if (nostrNip05Mention.test(part)) {
|
|
|
|
const matches = nip05Entity.exec(part) || []
|
|
|
|
const nip05 = matches?.[1] || part
|
|
|
|
return <ProfileLink key={key} nip05={nip05} fallback={nip05} />
|
|
|
|
} else {
|
|
|
|
return <Fragment key={key}>{part}</Fragment>
|
2025-02-14 13:15:10 +01:00
|
|
|
}
|
2025-02-21 21:46:37 +01:00
|
|
|
})
|
2025-02-14 13:15:10 +01:00
|
|
|
return _parts
|
2025-02-27 14:54:36 +01:00
|
|
|
}, [content, openLightBoxOnSlide])
|
2025-02-14 13:15:10 +01:00
|
|
|
|
2025-02-27 14:54:36 +01:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{_content}
|
|
|
|
{slides.length > 0 &&
|
|
|
|
createPortal(
|
|
|
|
<FsLightbox
|
|
|
|
toggler={lightBoxController.toggler}
|
|
|
|
sources={slides}
|
|
|
|
slide={lightBoxController.slide}
|
|
|
|
/>,
|
|
|
|
document.body
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
)
|
2025-02-14 13:15:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function handleNaddr(data: nip19.AddressPointer, original: string) {
|
|
|
|
const { kind } = data
|
|
|
|
|
|
|
|
if (kind === NDKKind.Article) {
|
|
|
|
return <BlogPreview {...data} original={original} />
|
|
|
|
} else if (kind === NDKKind.Classified) {
|
|
|
|
return <ModPreview {...data} original={original} />
|
|
|
|
} else {
|
|
|
|
return <>{original}</>
|
|
|
|
}
|
|
|
|
}
|