iceshrimp-legacy/src/mfm/toHtml.ts

188 lines
4.4 KiB
TypeScript
Raw Normal View History

import { JSDOM } from 'jsdom';
2018-05-17 01:14:30 +02:00
import config from '../config';
2018-06-17 08:58:23 +02:00
import { INote } from '../models/note';
2018-09-05 19:28:04 +02:00
import { intersperse } from '../prelude/array';
import { MfmForest, MfmTree } from './prelude';
2018-08-18 17:31:25 +02:00
2019-01-30 08:56:27 +01:00
export function toHtml(tokens: MfmForest, mentionedRemoteUsers: INote['mentionedRemoteUsers'] = []) {
2018-07-01 06:46:34 +02:00
if (tokens == null) {
return null;
}
2018-03-31 12:53:30 +02:00
const { window } = new JSDOM('');
const doc = window.document;
function appendChildren(children: MfmForest, targetElement: any): void {
for (const child of children.map(t => handlers[t.node.type](t))) targetElement.appendChild(child);
2018-03-31 12:53:30 +02:00
}
const handlers: { [key: string]: (token: MfmTree) => any } = {
bold(token) {
const el = doc.createElement('b');
appendChildren(token.children, el);
return el;
},
big(token) {
const el = doc.createElement('strong');
appendChildren(token.children, el);
return el;
},
2018-12-05 12:11:54 +01:00
small(token) {
const el = doc.createElement('small');
appendChildren(token.children, el);
2018-12-05 12:11:54 +01:00
return el;
},
strike(token) {
const el = doc.createElement('del');
appendChildren(token.children, el);
return el;
},
2018-12-05 09:39:26 +01:00
italic(token) {
const el = doc.createElement('i');
appendChildren(token.children, el);
2018-12-05 09:39:26 +01:00
return el;
},
motion(token) {
const el = doc.createElement('i');
appendChildren(token.children, el);
return el;
},
2019-01-27 08:18:04 +01:00
spin(token) {
const el = doc.createElement('i');
appendChildren(token.children, el);
return el;
},
jump(token) {
const el = doc.createElement('i');
appendChildren(token.children, el);
return el;
},
2019-01-27 08:31:00 +01:00
flip(token) {
const el = doc.createElement('span');
appendChildren(token.children, el);
return el;
},
blockCode(token) {
const pre = doc.createElement('pre');
const inner = doc.createElement('code');
inner.innerHTML = token.node.props.code;
pre.appendChild(inner);
return pre;
},
2018-11-25 05:36:40 +01:00
center(token) {
const el = doc.createElement('div');
appendChildren(token.children, el);
2018-11-25 05:36:40 +01:00
return el;
},
emoji(token) {
return doc.createTextNode(token.node.props.emoji ? token.node.props.emoji : `:${token.node.props.name}:`);
},
hashtag(token) {
const a = doc.createElement('a');
a.href = `${config.url}/tags/${token.node.props.hashtag}`;
a.textContent = `#${token.node.props.hashtag}`;
a.setAttribute('rel', 'tag');
return a;
},
inlineCode(token) {
const el = doc.createElement('code');
el.textContent = token.node.props.code;
return el;
},
mathInline(token) {
const el = doc.createElement('code');
el.textContent = token.node.props.formula;
return el;
},
mathBlock(token) {
const el = doc.createElement('code');
el.textContent = token.node.props.formula;
return el;
},
link(token) {
const a = doc.createElement('a');
a.href = token.node.props.url;
appendChildren(token.children, a);
return a;
},
mention(token) {
const a = doc.createElement('a');
const { username, host, acct } = token.node.props;
2018-12-12 17:33:18 +01:00
switch (host) {
case 'github.com':
a.href = `https://github.com/${username}`;
break;
case 'twitter.com':
a.href = `https://twitter.com/${username}`;
break;
default:
const remoteUserInfo = mentionedRemoteUsers.find(remoteUser => remoteUser.username === username && remoteUser.host === host);
a.href = remoteUserInfo ? remoteUserInfo.uri : `${config.url}/${acct}`;
a.className = 'mention';
2018-12-12 17:33:18 +01:00
break;
}
a.textContent = acct;
return a;
},
quote(token) {
const el = doc.createElement('blockquote');
appendChildren(token.children, el);
return el;
},
title(token) {
const el = doc.createElement('h1');
appendChildren(token.children, el);
return el;
},
text(token) {
const el = doc.createElement('span');
const nodes = (token.node.props.text as string).split(/\r\n|\r|\n/).map(x => doc.createTextNode(x) as Node);
for (const x of intersperse<Node | 'br'>('br', nodes)) {
2018-12-08 19:40:40 +01:00
el.appendChild(x === 'br' ? doc.createElement('br') : x);
}
return el;
},
url(token) {
const a = doc.createElement('a');
a.href = token.node.props.url;
a.textContent = token.node.props.url;
return a;
},
search(token) {
const a = doc.createElement('a');
a.href = `https://www.google.com/?#q=${token.node.props.query}`;
a.textContent = token.node.props.content;
return a;
}
};
appendChildren(tokens, doc.body);
return `<p>${doc.body.innerHTML}</p>`;
2019-01-30 08:56:27 +01:00
}