2017-07-19 05:49:24 +09:00
|
|
|
import { unicodeMapping } from './emojione_light';
|
2017-07-03 18:02:36 +09:00
|
|
|
import Trie from 'substring-trie';
|
2016-11-16 02:38:57 +09:00
|
|
|
|
2017-07-19 05:49:24 +09:00
|
|
|
const trie = new Trie(Object.keys(unicodeMapping));
|
2017-03-30 05:27:24 +09:00
|
|
|
|
2017-09-23 08:41:00 +09:00
|
|
|
const assetHost = process.env.CDN_HOST || '';
|
|
|
|
|
2017-09-19 09:42:40 +09:00
|
|
|
const emojify = (str, customEmojis = {}) => {
|
2017-09-20 06:27:29 +09:00
|
|
|
let rtn = '';
|
|
|
|
for (;;) {
|
|
|
|
let match, i = 0, tag;
|
2017-09-21 10:47:16 +09:00
|
|
|
while (i < str.length && (tag = '<&'.indexOf(str[i])) === -1 && str[i] !== ':' && !(match = trie.search(str.slice(i)))) {
|
2017-09-20 06:27:29 +09:00
|
|
|
i += str.codePointAt(i) < 65536 ? 1 : 2;
|
|
|
|
}
|
|
|
|
if (i === str.length)
|
|
|
|
break;
|
|
|
|
else if (tag >= 0) {
|
2017-09-21 10:47:16 +09:00
|
|
|
const tagend = str.indexOf('>;'[tag], i + 1) + 1;
|
2017-09-20 06:27:29 +09:00
|
|
|
if (!tagend)
|
|
|
|
break;
|
2017-09-21 10:47:16 +09:00
|
|
|
rtn += str.slice(0, tagend);
|
|
|
|
str = str.slice(tagend);
|
|
|
|
} else if (str[i] === ':') {
|
|
|
|
try {
|
|
|
|
// if replacing :shortname: succeed, exit this block with "continue"
|
|
|
|
const closeColon = str.indexOf(':', i + 1) + 1;
|
|
|
|
if (!closeColon) throw null; // no pair of ':'
|
2017-09-20 06:27:29 +09:00
|
|
|
const lt = str.indexOf('<', i + 1);
|
2017-09-21 10:47:16 +09:00
|
|
|
if (!(lt === -1 || lt >= closeColon)) throw null; // tag appeared before closing ':'
|
|
|
|
const shortname = str.slice(i, closeColon);
|
|
|
|
if (shortname in customEmojis) {
|
2017-09-20 06:27:29 +09:00
|
|
|
rtn += str.slice(0, i) + `<img draggable="false" class="emojione" alt="${shortname}" title="${shortname}" src="${customEmojis[shortname]}" />`;
|
2017-09-21 10:47:16 +09:00
|
|
|
str = str.slice(closeColon);
|
|
|
|
continue;
|
2017-09-20 06:27:29 +09:00
|
|
|
}
|
2017-09-21 10:47:16 +09:00
|
|
|
} catch (e) {}
|
|
|
|
// replacing :shortname: failed
|
|
|
|
rtn += str.slice(0, i + 1);
|
|
|
|
str = str.slice(i + 1);
|
2017-09-20 06:27:29 +09:00
|
|
|
} else {
|
|
|
|
const [filename, shortCode] = unicodeMapping[match];
|
2017-09-23 08:41:00 +09:00
|
|
|
rtn += str.slice(0, i) + `<img draggable="false" class="emojione" alt="${match}" title=":${shortCode}:" src="${assetHost}/emoji/${filename}.svg" />`;
|
2017-09-20 06:27:29 +09:00
|
|
|
str = str.slice(i + match.length);
|
2017-07-01 00:29:22 +09:00
|
|
|
}
|
2017-03-30 05:27:24 +09:00
|
|
|
}
|
2017-09-20 06:27:29 +09:00
|
|
|
return rtn + str;
|
2017-08-03 04:05:17 +09:00
|
|
|
};
|
2016-11-16 02:38:57 +09:00
|
|
|
|
2017-07-03 18:02:36 +09:00
|
|
|
export default emojify;
|