import { Link } from "react-router-dom"; import { NostrPrefix, tryParseNostrLink } from "@snort/system"; import Mention from "Element/Embed/Mention"; import NoteQuote from "Element/Event/NoteQuote"; export default function NostrLink({ link, depth }: { link: string; depth?: number }) { const nav = tryParseNostrLink(link); if (nav?.type === NostrPrefix.PublicKey || nav?.type === NostrPrefix.Profile) { return ; } else if (nav?.type === NostrPrefix.Note || nav?.type === NostrPrefix.Event || nav?.type === NostrPrefix.Address) { if ((depth ?? 0) > 0) { const evLink = nav.encode(); return ( e.stopPropagation()} state={{ from: location.pathname }}> #{evLink.substring(0, 12)} ); } else { return ; } } else { return ( e.stopPropagation()} target="_blank" rel="noreferrer" className="ext"> {link} ); } }