mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 08:53:48 +01:00
[backend] Use happy-dom in generic mfm-to-html as well
This commit is contained in:
parent
49e2edfa6c
commit
9cc900faae
@ -1,4 +1,4 @@
|
|||||||
import { JSDOM } from "jsdom";
|
import { Window as HappyDom } from "happy-dom";
|
||||||
import type * as mfm from "mfm-js";
|
import type * as mfm from "mfm-js";
|
||||||
import config from "@/config/index.js";
|
import config from "@/config/index.js";
|
||||||
import { intersperse } from "@/prelude/array.js";
|
import { intersperse } from "@/prelude/array.js";
|
||||||
@ -14,7 +14,7 @@ export async function toHtml(
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { window } = new JSDOM("");
|
const { window } = new HappyDom();
|
||||||
|
|
||||||
const doc = window.document;
|
const doc = window.document;
|
||||||
|
|
||||||
@ -82,7 +82,7 @@ export async function toHtml(
|
|||||||
|
|
||||||
hashtag(node) {
|
hashtag(node) {
|
||||||
const a = doc.createElement("a");
|
const a = doc.createElement("a");
|
||||||
a.href = `${config.url}/tags/${node.props.hashtag}`;
|
a.setAttribute('href', `${config.url}/tags/${node.props.hashtag}`);
|
||||||
a.textContent = `#${node.props.hashtag}`;
|
a.textContent = `#${node.props.hashtag}`;
|
||||||
a.setAttribute("rel", "tag");
|
a.setAttribute("rel", "tag");
|
||||||
return a;
|
return a;
|
||||||
@ -108,7 +108,7 @@ export async function toHtml(
|
|||||||
|
|
||||||
async link(node) {
|
async link(node) {
|
||||||
const a = doc.createElement("a");
|
const a = doc.createElement("a");
|
||||||
a.href = node.props.url;
|
a.setAttribute('href', node.props.url);
|
||||||
await appendChildren(node.children, a);
|
await appendChildren(node.children, a);
|
||||||
return a;
|
return a;
|
||||||
},
|
},
|
||||||
@ -124,7 +124,7 @@ export async function toHtml(
|
|||||||
el.setAttribute("class", "h-card");
|
el.setAttribute("class", "h-card");
|
||||||
el.setAttribute("translate", "no");
|
el.setAttribute("translate", "no");
|
||||||
const a = doc.createElement("a");
|
const a = doc.createElement("a");
|
||||||
a.href = resolved.href;
|
a.setAttribute('href', resolved.href);
|
||||||
a.className = "u-url mention";
|
a.className = "u-url mention";
|
||||||
const span = doc.createElement("span");
|
const span = doc.createElement("span");
|
||||||
span.textContent = resolved.username;
|
span.textContent = resolved.username;
|
||||||
@ -157,14 +157,14 @@ export async function toHtml(
|
|||||||
|
|
||||||
url(node) {
|
url(node) {
|
||||||
const a = doc.createElement("a");
|
const a = doc.createElement("a");
|
||||||
a.href = node.props.url;
|
a.setAttribute('href', node.props.url);
|
||||||
a.textContent = node.props.url.replace(/^https?:\/\//, '');
|
a.textContent = node.props.url.replace(/^https?:\/\//, '');
|
||||||
return a;
|
return a;
|
||||||
},
|
},
|
||||||
|
|
||||||
search(node) {
|
search(node) {
|
||||||
const a = doc.createElement("a");
|
const a = doc.createElement("a");
|
||||||
a.href = `${config.searchEngine}${node.props.query}`;
|
a.setAttribute('href', `${config.searchEngine}${node.props.query}`);
|
||||||
a.textContent = node.props.content;
|
a.textContent = node.props.content;
|
||||||
return a;
|
return a;
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user