misskey/src/mfm/html.ts

120 lines
3.3 KiB
TypeScript
Raw Normal View History

2018-06-17 10:55:39 +00:00
const { lib: emojilib } = require('emojilib');
2018-08-04 02:39:59 +00:00
const jsdom = require('jsdom');
const { JSDOM } = jsdom;
2018-05-16 23:14:30 +00:00
import config from '../config';
2018-06-17 06:58:23 +00:00
import { INote } from '../models/note';
2018-06-17 10:55:39 +00:00
import { TextElement } from './parse';
2018-03-31 10:53:30 +00:00
2018-06-18 05:28:43 +00:00
const handlers: { [key: string]: (window: any, token: any, mentionedRemoteUsers: INote['mentionedRemoteUsers']) => void } = {
2018-03-31 10:53:30 +00:00
bold({ document }, { bold }) {
const b = document.createElement('b');
b.textContent = bold;
document.body.appendChild(b);
},
2018-08-03 14:27:37 +00:00
big({ document }, { big }) {
const b = document.createElement('strong');
b.textContent = big;
document.body.appendChild(b);
},
2018-08-05 03:33:51 +00:00
motion({ document }, { big }) {
const b = document.createElement('strong');
b.textContent = big;
document.body.appendChild(b);
},
2018-03-31 10:53:30 +00:00
code({ document }, { code }) {
const pre = document.createElement('pre');
const inner = document.createElement('code');
inner.innerHTML = code;
pre.appendChild(inner);
document.body.appendChild(pre);
},
emoji({ document }, { content, emoji }) {
const found = emojilib[emoji];
const node = document.createTextNode(found ? found.char : content);
document.body.appendChild(node);
},
hashtag({ document }, { hashtag }) {
2018-06-09 18:55:51 +00:00
const a = document.createElement('a');
2018-06-10 03:19:19 +00:00
a.href = config.url + '/tags/' + hashtag;
2018-06-09 18:55:51 +00:00
a.textContent = '#' + hashtag;
a.setAttribute('rel', 'tag');
document.body.appendChild(a);
2018-03-31 10:53:30 +00:00
},
'inline-code'({ document }, { code }) {
const element = document.createElement('code');
element.textContent = code;
document.body.appendChild(element);
},
link({ document }, { url, title }) {
const a = document.createElement('a');
a.href = url;
a.textContent = title;
document.body.appendChild(a);
},
2018-06-17 06:58:23 +00:00
mention({ document }, { content, username, host }, mentionedRemoteUsers) {
2018-03-31 10:53:30 +00:00
const a = document.createElement('a');
2018-06-17 06:58:23 +00:00
const remoteUserInfo = mentionedRemoteUsers.find(remoteUser => remoteUser.username === username && remoteUser.host === host);
a.href = remoteUserInfo ? remoteUserInfo.uri : `${config.url}/${content}`;
2018-03-31 10:53:30 +00:00
a.textContent = content;
document.body.appendChild(a);
},
quote({ document }, { quote }) {
const blockquote = document.createElement('blockquote');
blockquote.textContent = quote;
document.body.appendChild(blockquote);
},
2018-04-21 09:25:25 +00:00
title({ document }, { content }) {
2018-04-19 06:05:39 +00:00
const h1 = document.createElement('h1');
2018-04-21 09:25:25 +00:00
h1.textContent = content;
2018-04-19 06:05:39 +00:00
document.body.appendChild(h1);
},
2018-03-31 10:53:30 +00:00
text({ document }, { content }) {
2018-08-18 12:58:00 +00:00
const t = content.split('\n');
2018-08-18 02:36:43 +00:00
for (let i = 0; i < t.length; i++) {
document.body.appendChild(document.createTextNode(t[i]));
if (i != t.length - 1) {
document.body.appendChild(document.createElement('br'));
}
2018-03-31 10:53:30 +00:00
}
},
url({ document }, { url }) {
const a = document.createElement('a');
a.href = url;
a.textContent = url;
document.body.appendChild(a);
2018-04-21 09:59:16 +00:00
},
search({ document }, { content, query }) {
const a = document.createElement('a');
a.href = `https://www.google.com/?#q=${query}`;
a.textContent = content;
document.body.appendChild(a);
2018-03-31 10:53:30 +00:00
}
};
2018-06-17 10:55:39 +00:00
export default (tokens: TextElement[], mentionedRemoteUsers: INote['mentionedRemoteUsers'] = []) => {
2018-07-01 04:46:34 +00:00
if (tokens == null) {
return null;
}
2018-03-31 10:53:30 +00:00
const { window } = new JSDOM('');
for (const token of tokens) {
2018-06-17 06:58:23 +00:00
handlers[token.type](window, token, mentionedRemoteUsers);
2018-03-31 10:53:30 +00:00
}
return `<p>${window.document.body.innerHTML}</p>`;
};