79 lines
2.9 KiB
TypeScript
79 lines
2.9 KiB
TypeScript
import NoteMetadata from '@components/note/metadata';
|
|
import { ImagePreview } from '@components/note/preview/image';
|
|
import { VideoPreview } from '@components/note/preview/video';
|
|
import { UserLarge } from '@components/user/large';
|
|
import { UserMention } from '@components/user/mention';
|
|
|
|
import destr from 'destr';
|
|
import { memo, useMemo } from 'react';
|
|
import ReactPlayer from 'react-player/lazy';
|
|
import reactStringReplace from 'react-string-replace';
|
|
|
|
export const NoteExtend = memo(function NoteExtend({ event }: { event: any }) {
|
|
const content = useMemo(() => {
|
|
let parsedContent = event.content;
|
|
// get data tags
|
|
const tags = destr(event.tags);
|
|
// handle urls
|
|
parsedContent = reactStringReplace(parsedContent, /(https?:\/\/\S+)/g, (match, i) => {
|
|
if (match.toLowerCase().match(/\.(jpg|jpeg|gif|png|webp)$/)) {
|
|
// image url
|
|
return <ImagePreview key={match + i} url={match} />;
|
|
} else if (ReactPlayer.canPlay(match)) {
|
|
return <VideoPreview key={match + i} url={match} />;
|
|
} else {
|
|
return (
|
|
<a key={match + i} href={match} target="_blank" rel="noreferrer">
|
|
{match}
|
|
</a>
|
|
);
|
|
}
|
|
});
|
|
// handle #-hashtags
|
|
parsedContent = reactStringReplace(parsedContent, /#(\w+)/g, (match, i) => (
|
|
<span key={match + i} className="cursor-pointer text-fuchsia-500">
|
|
#{match}
|
|
</span>
|
|
));
|
|
// handle mentions
|
|
if (tags.length > 0) {
|
|
parsedContent = reactStringReplace(parsedContent, /\#\[(\d+)\]/gm, (match, i) => {
|
|
if (tags[match][0] === 'p') {
|
|
// @-mentions
|
|
return <UserMention key={match + i} pubkey={tags[match][1]} />;
|
|
} else if (tags[match][0] === 'e') {
|
|
// note-mentions
|
|
return <p key={match + i}>note-{tags[match][1]}</p>;
|
|
} else {
|
|
return;
|
|
}
|
|
});
|
|
}
|
|
|
|
return parsedContent;
|
|
}, [event.content, event.tags]);
|
|
|
|
return (
|
|
<div className="relative z-10 flex h-min min-h-min w-full select-text flex-col">
|
|
<div className="relative z-10 flex flex-col">
|
|
<UserLarge pubkey={event.pubkey} time={event.created_at} />
|
|
<div className="mt-2">
|
|
<div className="flex flex-col gap-2">
|
|
<div className="prose prose-zinc max-w-none break-words text-[15px] leading-tight dark:prose-invert prose-headings:mt-3 prose-headings:mb-2 prose-p:m-0 prose-p:text-[15px] prose-p:leading-tight prose-a:font-normal prose-a:text-fuchsia-500 prose-a:no-underline prose-ul:mt-2 prose-li:my-1 prose-img:mt-2 prose-img:mb-0 prose-video:mt-1 prose-video:mb-0">
|
|
{content}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mt-5 flex items-center border-t border-b border-zinc-800 py-2">
|
|
<NoteMetadata
|
|
eventID={event.id}
|
|
eventPubkey={event.pubkey}
|
|
eventContent={event.content}
|
|
eventTime={event.created_at}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
});
|