2018-08-03 21:39:59 -05:00
|
|
|
const jsdom = require('jsdom');
|
|
|
|
const { JSDOM } = jsdom;
|
2018-05-16 18:14:30 -05:00
|
|
|
import config from '../config';
|
2018-06-17 01:58:23 -05:00
|
|
|
import { INote } from '../models/note';
|
2018-09-05 12:28:04 -05:00
|
|
|
import { intersperse } from '../prelude/array';
|
2018-12-20 04:41:04 -06:00
|
|
|
import { MfmForest, MfmTree } from './parser';
|
2018-08-18 10:31:25 -05:00
|
|
|
|
2018-12-20 04:41:04 -06:00
|
|
|
export default (tokens: MfmForest, mentionedRemoteUsers: INote['mentionedRemoteUsers'] = []) => {
|
2018-06-30 23:46:34 -05:00
|
|
|
if (tokens == null) {
|
|
|
|
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;
|
|
|
|
|
2018-12-20 04:41:04 -06:00
|
|
|
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 05:53:30 -05:00
|
|
|
}
|
|
|
|
|
2018-12-20 04:41:04 -06:00
|
|
|
const handlers: { [key: string]: (token: MfmTree) => any } = {
|
2018-11-20 14:11:00 -06:00
|
|
|
bold(token) {
|
|
|
|
const el = doc.createElement('b');
|
2018-12-08 22:15:32 -06:00
|
|
|
appendChildren(token.children, el);
|
2018-11-20 14:11:00 -06:00
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
|
|
|
big(token) {
|
|
|
|
const el = doc.createElement('strong');
|
2018-12-08 22:15:32 -06:00
|
|
|
appendChildren(token.children, el);
|
2018-11-20 14:11:00 -06:00
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
2018-12-05 05:11:54 -06:00
|
|
|
small(token) {
|
|
|
|
const el = doc.createElement('small');
|
2018-12-08 22:15:32 -06:00
|
|
|
appendChildren(token.children, el);
|
2018-12-05 05:11:54 -06:00
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
2018-12-03 10:28:21 -06:00
|
|
|
strike(token) {
|
|
|
|
const el = doc.createElement('del');
|
2018-12-08 22:15:32 -06:00
|
|
|
appendChildren(token.children, el);
|
2018-12-03 10:28:21 -06:00
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
2018-12-05 02:39:26 -06:00
|
|
|
italic(token) {
|
|
|
|
const el = doc.createElement('i');
|
2018-12-08 22:15:32 -06:00
|
|
|
appendChildren(token.children, el);
|
2018-12-05 02:39:26 -06:00
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
2018-11-20 14:11:00 -06:00
|
|
|
motion(token) {
|
|
|
|
const el = doc.createElement('i');
|
2018-12-08 22:15:32 -06:00
|
|
|
appendChildren(token.children, el);
|
2018-11-20 14:11:00 -06:00
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
2019-01-27 01:18:04 -06:00
|
|
|
spin(token) {
|
|
|
|
const el = doc.createElement('i');
|
|
|
|
appendChildren(token.children, el);
|
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
2019-01-27 01:31:00 -06:00
|
|
|
flip(token) {
|
|
|
|
const el = doc.createElement('span');
|
|
|
|
appendChildren(token.children, el);
|
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
2018-11-20 14:11:00 -06:00
|
|
|
blockCode(token) {
|
|
|
|
const pre = doc.createElement('pre');
|
|
|
|
const inner = doc.createElement('code');
|
2018-12-20 04:41:04 -06:00
|
|
|
inner.innerHTML = token.node.props.code;
|
2018-11-20 14:11:00 -06:00
|
|
|
pre.appendChild(inner);
|
|
|
|
return pre;
|
|
|
|
},
|
|
|
|
|
2018-11-24 22:36:40 -06:00
|
|
|
center(token) {
|
|
|
|
const el = doc.createElement('div');
|
2018-12-08 22:15:32 -06:00
|
|
|
appendChildren(token.children, el);
|
2018-11-24 22:36:40 -06:00
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
2018-11-20 14:11:00 -06:00
|
|
|
emoji(token) {
|
2018-12-20 04:41:04 -06:00
|
|
|
return doc.createTextNode(token.node.props.emoji ? token.node.props.emoji : `:${token.node.props.name}:`);
|
2018-11-20 14:11:00 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
hashtag(token) {
|
|
|
|
const a = doc.createElement('a');
|
2018-12-20 04:41:04 -06:00
|
|
|
a.href = `${config.url}/tags/${token.node.props.hashtag}`;
|
|
|
|
a.textContent = `#${token.node.props.hashtag}`;
|
2018-11-20 14:11:00 -06:00
|
|
|
a.setAttribute('rel', 'tag');
|
|
|
|
return a;
|
|
|
|
},
|
|
|
|
|
|
|
|
inlineCode(token) {
|
|
|
|
const el = doc.createElement('code');
|
2018-12-20 04:41:04 -06:00
|
|
|
el.textContent = token.node.props.code;
|
2018-11-20 14:11:00 -06:00
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
2019-01-25 08:08:06 -06:00
|
|
|
mathInline(token) {
|
|
|
|
const el = doc.createElement('code');
|
|
|
|
el.textContent = token.node.props.formula;
|
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
|
|
|
mathBlock(token) {
|
2018-11-20 14:11:00 -06:00
|
|
|
const el = doc.createElement('code');
|
2018-12-20 04:41:04 -06:00
|
|
|
el.textContent = token.node.props.formula;
|
2018-11-20 14:11:00 -06:00
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
|
|
|
link(token) {
|
|
|
|
const a = doc.createElement('a');
|
2018-12-20 04:41:04 -06:00
|
|
|
a.href = token.node.props.url;
|
2018-12-08 22:15:32 -06:00
|
|
|
appendChildren(token.children, a);
|
2018-11-20 14:11:00 -06:00
|
|
|
return a;
|
|
|
|
},
|
|
|
|
|
|
|
|
mention(token) {
|
|
|
|
const a = doc.createElement('a');
|
2018-12-20 04:41:04 -06:00
|
|
|
const { username, host, acct } = token.node.props;
|
2018-12-12 10:33:18 -06: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}`;
|
|
|
|
break;
|
|
|
|
}
|
2018-11-20 14:11:00 -06:00
|
|
|
a.textContent = acct;
|
|
|
|
return a;
|
|
|
|
},
|
|
|
|
|
|
|
|
quote(token) {
|
|
|
|
const el = doc.createElement('blockquote');
|
2018-12-08 22:15:32 -06:00
|
|
|
appendChildren(token.children, el);
|
2018-11-20 14:11:00 -06:00
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
|
|
|
title(token) {
|
|
|
|
const el = doc.createElement('h1');
|
2018-12-08 22:15:32 -06:00
|
|
|
appendChildren(token.children, el);
|
2018-11-20 14:11:00 -06:00
|
|
|
return el;
|
|
|
|
},
|
|
|
|
|
|
|
|
text(token) {
|
|
|
|
const el = doc.createElement('span');
|
2018-12-20 04:41:04 -06:00
|
|
|
const nodes = (token.node.props.text as string).split('\n').map(x => doc.createTextNode(x));
|
2018-11-20 14:11:00 -06:00
|
|
|
|
|
|
|
for (const x of intersperse('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;
|
|
|
|
},
|
|
|
|
|
|
|
|
url(token) {
|
|
|
|
const a = doc.createElement('a');
|
2018-12-20 04:41:04 -06:00
|
|
|
a.href = token.node.props.url;
|
|
|
|
a.textContent = token.node.props.url;
|
2018-11-20 14:11:00 -06:00
|
|
|
return a;
|
|
|
|
},
|
|
|
|
|
|
|
|
search(token) {
|
|
|
|
const a = doc.createElement('a');
|
2018-12-20 04:41:04 -06:00
|
|
|
a.href = `https://www.google.com/?#q=${token.node.props.query}`;
|
|
|
|
a.textContent = token.node.props.content;
|
2018-11-20 14:11:00 -06:00
|
|
|
return a;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-12-08 22:15:32 -06:00
|
|
|
appendChildren(tokens, doc.body);
|
2018-11-20 14:11:00 -06:00
|
|
|
|
|
|
|
return `<p>${doc.body.innerHTML}</p>`;
|
2018-03-31 05:53:30 -05:00
|
|
|
};
|