snort/packages/app/src/Element/Text.tsx

185 lines
5.3 KiB
TypeScript
Raw Normal View History

import "./Text.css";
import { useMemo, useCallback } from "react";
2023-01-06 11:05:27 +00:00
import { Link } from "react-router-dom";
2023-01-14 01:39:20 +00:00
import ReactMarkdown from "react-markdown";
import { visit, SKIP } from "unist-util-visit";
2023-01-06 11:05:27 +00:00
2023-02-03 16:43:21 +00:00
import { UrlRegex, MentionRegex, InvoiceRegex, HashtagRegex } from "Const";
2023-02-07 19:47:57 +00:00
import { eventLink, hexToBech32, unwrap } from "Util";
2023-01-20 11:11:50 +00:00
import Invoice from "Element/Invoice";
import Hashtag from "Element/Hashtag";
2023-01-14 14:37:31 +00:00
2023-02-11 20:05:46 +00:00
import { Tag } from "@snort/nostr";
import { MetadataCache } from "State/Users";
2023-01-20 11:11:50 +00:00
import Mention from "Element/Mention";
import HyperText from "Element/HyperText";
2023-02-11 20:05:46 +00:00
import { HexKey } from "@snort/nostr";
2023-02-07 19:47:57 +00:00
import * as unist from "unist";
2023-01-06 11:05:27 +00:00
2023-02-07 19:47:57 +00:00
export type Fragment = string | React.ReactNode;
2023-01-06 20:38:51 +00:00
2023-02-03 16:43:21 +00:00
export interface TextFragment {
2023-02-07 19:47:57 +00:00
body: React.ReactNode[];
tags: Tag[];
users: Map<string, MetadataCache>;
2023-01-06 11:05:27 +00:00
}
2023-02-03 16:43:21 +00:00
export interface TextProps {
content: string;
creator: HexKey;
tags: Tag[];
users: Map<string, MetadataCache>;
2023-01-06 11:05:27 +00:00
}
2023-02-03 16:43:21 +00:00
export default function Text({ content, tags, creator, users }: TextProps) {
function extractLinks(fragments: Fragment[]) {
return fragments
2023-02-09 12:26:54 +00:00
.map(f => {
if (typeof f === "string") {
2023-02-09 12:26:54 +00:00
return f.split(UrlRegex).map(a => {
if (a.startsWith("http")) {
return <HyperText key={a} link={a} creator={creator} />;
2023-02-03 16:43:21 +00:00
}
return a;
});
}
return f;
})
.flat();
}
2023-01-12 09:48:39 +00:00
function extractMentions(frag: TextFragment) {
return frag.body
2023-02-09 12:26:54 +00:00
.map(f => {
if (typeof f === "string") {
2023-02-09 12:26:54 +00:00
return f.split(MentionRegex).map(match => {
2023-02-07 19:47:57 +00:00
const matchTag = match.match(/#\[(\d+)\]/);
if (matchTag && matchTag.length === 2) {
2023-02-07 19:47:57 +00:00
const idx = parseInt(matchTag[1]);
2023-02-09 12:26:54 +00:00
const ref = frag.tags?.find(a => a.Index === idx);
if (ref) {
switch (ref.Key) {
case "p": {
2023-02-20 14:18:41 +00:00
return <Mention pubkey={ref.PubKey ?? ""} />;
}
case "e": {
2023-02-09 12:26:54 +00:00
const eText = hexToBech32("note", ref.Event).substring(0, 12);
return (
2023-02-20 14:18:41 +00:00
<Link to={eventLink(ref.Event ?? "")} onClick={e => e.stopPropagation()}>
#{eText}
</Link>
);
}
case "t": {
2023-02-20 14:18:41 +00:00
return <Hashtag tag={ref.Hashtag ?? ""} />;
}
}
}
return <b style={{ color: "var(--error)" }}>{matchTag[0]}?</b>;
} else {
return match;
2023-02-03 16:43:21 +00:00
}
});
}
return f;
})
.flat();
}
2023-01-12 09:48:39 +00:00
function extractInvoices(fragments: Fragment[]) {
return fragments
2023-02-09 12:26:54 +00:00
.map(f => {
if (typeof f === "string") {
2023-02-09 12:26:54 +00:00
return f.split(InvoiceRegex).map(i => {
if (i.toLowerCase().startsWith("lnbc")) {
2023-02-20 14:18:41 +00:00
return <Invoice invoice={i} />;
} else {
return i;
2023-02-03 16:43:21 +00:00
}
});
}
return f;
})
.flat();
}
2023-01-14 01:39:20 +00:00
function extractHashtags(fragments: Fragment[]) {
return fragments
2023-02-09 12:26:54 +00:00
.map(f => {
if (typeof f === "string") {
2023-02-09 12:26:54 +00:00
return f.split(HashtagRegex).map(i => {
if (i.toLowerCase().startsWith("#")) {
2023-02-20 14:18:41 +00:00
return <Hashtag tag={i.substring(1)} />;
} else {
return i;
2023-02-03 16:43:21 +00:00
}
});
}
return f;
})
.flat();
}
2023-01-14 01:39:20 +00:00
function transformLi(frag: TextFragment) {
2023-02-07 19:47:57 +00:00
const fragments = transformText(frag);
return <li>{fragments}</li>;
}
2023-01-16 17:48:25 +00:00
function transformParagraph(frag: TextFragment) {
const fragments = transformText(frag);
2023-02-09 12:26:54 +00:00
if (fragments.every(f => typeof f === "string")) {
return <p>{fragments}</p>;
2023-02-03 16:43:21 +00:00
}
return <>{fragments}</>;
}
2023-01-16 17:48:25 +00:00
function transformText(frag: TextFragment) {
let fragments = extractMentions(frag);
fragments = extractLinks(fragments);
fragments = extractInvoices(fragments);
fragments = extractHashtags(fragments);
return fragments;
}
2023-01-16 17:48:25 +00:00
const components = useMemo(() => {
return {
2023-02-09 12:26:54 +00:00
p: (x: { children?: React.ReactNode[] }) => transformParagraph({ body: x.children ?? [], tags, users }),
a: (x: { href?: string }) => <HyperText link={x.href ?? ""} creator={creator} />,
li: (x: { children?: Fragment[] }) => transformLi({ body: x.children ?? [], tags, users }),
};
}, [content]);
2023-02-03 16:43:21 +00:00
2023-02-07 19:47:57 +00:00
interface Node extends unist.Node<unist.Data> {
value: string;
}
const disableMarkdownLinks = useCallback(
2023-02-07 19:47:57 +00:00
() => (tree: Node) => {
visit(tree, (node, index, parent) => {
if (
parent &&
typeof index === "number" &&
(node.type === "link" ||
node.type === "linkReference" ||
node.type === "image" ||
node.type === "imageReference" ||
node.type === "definition")
) {
node.type = "text";
2023-02-07 19:47:57 +00:00
const position = unwrap(node.position);
2023-02-09 12:26:54 +00:00
node.value = content.slice(position.start.offset, position.end.offset).replace(/\)$/, " )");
return SKIP;
}
});
},
[content]
);
return (
<div dir="auto">
<ReactMarkdown className="text" components={components} remarkPlugins={[disableMarkdownLinks]}>
{content}
</ReactMarkdown>
</div>
);
2023-01-14 01:39:20 +00:00
}