feat: support nip 89
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import { cn } from "@lume/utils";
|
||||
import { NDKKind } from "@nostr-dev-kit/ndk";
|
||||
import { useNoteContext, useRichContent } from "../..";
|
||||
import { NIP89 } from "./nip89";
|
||||
|
||||
export function NoteContent({
|
||||
className,
|
||||
@@ -10,18 +11,7 @@ export function NoteContent({
|
||||
const event = useNoteContext();
|
||||
const { parsedContent } = useRichContent(event.content);
|
||||
|
||||
if (event.kind === NDKKind.Text) {
|
||||
return (
|
||||
<div
|
||||
className={cn(
|
||||
"break-p select-text whitespace-pre-line text-balance leading-normal",
|
||||
className,
|
||||
)}
|
||||
>
|
||||
{parsedContent}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
if (event.kind !== NDKKind.Text) return <NIP89 className={className} />;
|
||||
|
||||
return (
|
||||
<div
|
||||
@@ -30,7 +20,7 @@ export function NoteContent({
|
||||
className,
|
||||
)}
|
||||
>
|
||||
Unsupported kind
|
||||
{parsedContent}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user