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