iceshrimp-legacy/packages/backend/src/mfm/to-html.ts

175 lines
3.8 KiB
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
import { JSDOM } from "jsdom";
import type * as mfm from "mfm-js";
import config from "@/config/index.js";
import { intersperse } from "@/prelude/array.js";
import type { IMentionedRemoteUsers } from "@/models/entities/note.js";
export function toHtml(
nodes: mfm.MfmNode[] | null,
mentionedRemoteUsers: IMentionedRemoteUsers = [],
) {
if (nodes == null) {
2018-07-01 06:46:34 +02:00
return null;
}
2023-01-13 05:40:33 +01:00
const { window } = new JSDOM("");
2018-03-31 12:53:30 +02:00
const doc = window.document;
function appendChildren(children: mfm.MfmNode[], targetElement: any): void {
if (children) {
2023-01-13 05:40:33 +01:00
for (const child of children.map((x) => (handlers as any)[x.type](x)))
targetElement.appendChild(child);
}
2018-03-31 12:53:30 +02:00
}
2023-01-13 05:40:33 +01:00
const handlers: {
[K in mfm.MfmNode["type"]]: (node: mfm.NodeType<K>) => any;
} = {
bold(node) {
2023-01-13 05:40:33 +01:00
const el = doc.createElement("b");
appendChildren(node.children, el);
return el;
},
small(node) {
2023-01-13 05:40:33 +01:00
const el = doc.createElement("small");
appendChildren(node.children, el);
2018-12-05 12:11:54 +01:00
return el;
},
strike(node) {
2023-01-13 05:40:33 +01:00
const el = doc.createElement("del");
appendChildren(node.children, el);
return el;
},
italic(node) {
2023-01-13 05:40:33 +01:00
const el = doc.createElement("i");
appendChildren(node.children, el);
2018-12-05 09:39:26 +01:00
return el;
},
fn(node) {
2023-01-13 05:40:33 +01:00
const el = doc.createElement("i");
appendChildren(node.children, el);
2019-01-27 08:18:04 +01:00
return el;
},
blockCode(node) {
2023-01-13 05:40:33 +01:00
const pre = doc.createElement("pre");
const inner = doc.createElement("code");
inner.textContent = node.props.code;
pre.appendChild(inner);
return pre;
},
center(node) {
2023-01-13 05:40:33 +01:00
const el = doc.createElement("div");
appendChildren(node.children, el);
2018-11-25 05:36:40 +01:00
return el;
},
emojiCode(node) {
return doc.createTextNode(`\u200B:${node.props.name}:\u200B`);
},
unicodeEmoji(node) {
return doc.createTextNode(node.props.emoji);
},
hashtag(node) {
2023-01-13 05:40:33 +01:00
const a = doc.createElement("a");
a.href = `${config.url}/tags/${node.props.hashtag}`;
a.textContent = `#${node.props.hashtag}`;
2023-01-13 05:40:33 +01:00
a.setAttribute("rel", "tag");
return a;
},
inlineCode(node) {
2023-01-13 05:40:33 +01:00
const el = doc.createElement("code");
el.textContent = node.props.code;
return el;
},
mathInline(node) {
2023-01-13 05:40:33 +01:00
const el = doc.createElement("code");
el.textContent = node.props.formula;
return el;
},
mathBlock(node) {
2023-01-13 05:40:33 +01:00
const el = doc.createElement("code");
el.textContent = node.props.formula;
return el;
},
link(node) {
2023-01-13 05:40:33 +01:00
const a = doc.createElement("a");
a.href = node.props.url;
appendChildren(node.children, a);
return a;
},
mention(node) {
2023-01-13 05:40:33 +01:00
const a = doc.createElement("a");
const { username, host, acct } = node.props;
2023-01-13 05:40:33 +01:00
const remoteUserInfo = mentionedRemoteUsers.find(
(remoteUser) =>
remoteUser.username === username && remoteUser.host === host,
);
a.href = remoteUserInfo
? remoteUserInfo.url
? remoteUserInfo.url
: remoteUserInfo.uri
: `${config.url}/${acct}`;
a.className = "u-url mention";
a.textContent = acct;
return a;
},
quote(node) {
2023-01-13 05:40:33 +01:00
const el = doc.createElement("blockquote");
appendChildren(node.children, el);
return el;
},
text(node) {
2023-01-13 05:40:33 +01:00
const el = doc.createElement("span");
const nodes = node.props.text
.split(/\r\n|\r|\n/)
.map((x) => doc.createTextNode(x));
2023-01-13 05:40:33 +01:00
for (const x of intersperse<FIXME | "br">("br", nodes)) {
el.appendChild(x === "br" ? doc.createElement("br") : x);
}
return el;
},
url(node) {
2023-01-13 05:40:33 +01:00
const a = doc.createElement("a");
a.href = node.props.url;
a.textContent = node.props.url;
return a;
},
search(node) {
2023-01-13 05:40:33 +01:00
const a = doc.createElement("a");
2022-07-19 06:32:02 +02:00
a.href = `https://search.annoyingorange.xyz/search?q=${node.props.query}`;
a.textContent = node.props.content;
return a;
2021-12-09 15:58:30 +01:00
},
2022-07-12 05:03:38 +02:00
plain(node) {
2023-01-13 05:40:33 +01:00
const el = doc.createElement("span");
2022-07-12 05:03:38 +02:00
appendChildren(node.children, el);
return el;
},
};
appendChildren(nodes, doc.body);
return `<p>${doc.body.innerHTML}</p>`;
2019-01-30 08:56:27 +01:00
}