2017-07-18 20:49:24 +00:00
|
|
|
import { unicodeMapping } from './emojione_light';
|
2017-07-03 09:02:36 +00:00
|
|
|
import Trie from 'substring-trie';
|
2016-11-15 17:38:57 +00:00
|
|
|
|
2017-07-18 20:49:24 +00:00
|
|
|
const trie = new Trie(Object.keys(unicodeMapping));
|
2017-03-29 20:27:24 +00:00
|
|
|
|
2017-09-22 23:41:00 +00:00
|
|
|
const assetHost = process.env.CDN_HOST || '';
|
|
|
|
|
2017-09-19 00:42:40 +00:00
|
|
|
const emojify = (str, customEmojis = {}) => {
|
2017-09-19 21:27:29 +00:00
|
|
|
let rtn = '';
|
|
|
|
for (;;) {
|
|
|
|
let match, i = 0, tag;
|
2017-09-21 01:47:16 +00:00
|
|
|
while (i < str.length && (tag = '<&'.indexOf(str[i])) === -1 && str[i] !== ':' && !(match = trie.search(str.slice(i)))) {
|
2017-09-19 21:27:29 +00:00
|
|
|
i += str.codePointAt(i) < 65536 ? 1 : 2;
|
|
|
|
}
|
|
|
|
if (i === str.length)
|
|
|
|
break;
|
|
|
|
else if (tag >= 0) {
|
2017-09-21 01:47:16 +00:00
|
|
|
const tagend = str.indexOf('>;'[tag], i + 1) + 1;
|
2017-09-19 21:27:29 +00:00
|
|
|
if (!tagend)
|
|
|
|
break;
|
2017-09-21 01:47:16 +00: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-19 21:27:29 +00:00
|
|
|
const lt = str.indexOf('<', i + 1);
|
2017-09-21 01:47:16 +00:00
|
|
|
if (!(lt === -1 || lt >= closeColon)) throw null; // tag appeared before closing ':'
|
|
|
|
const shortname = str.slice(i, closeColon);
|
|
|
|
if (shortname in customEmojis) {
|
2017-09-19 21:27:29 +00:00
|
|
|
rtn += str.slice(0, i) + `<img draggable="false" class="emojione" alt="${shortname}" title="${shortname}" src="${customEmojis[shortname]}" />`;
|
2017-09-21 01:47:16 +00:00
|
|
|
str = str.slice(closeColon);
|
|
|
|
continue;
|
2017-09-19 21:27:29 +00:00
|
|
|
}
|
2017-09-21 01:47:16 +00:00
|
|
|
} catch (e) {}
|
|
|
|
// replacing :shortname: failed
|
|
|
|
rtn += str.slice(0, i + 1);
|
|
|
|
str = str.slice(i + 1);
|
2017-09-19 21:27:29 +00:00
|
|
|
} else {
|
|
|
|
const [filename, shortCode] = unicodeMapping[match];
|
2017-09-22 23:41:00 +00:00
|
|
|
rtn += str.slice(0, i) + `<img draggable="false" class="emojione" alt="${match}" title=":${shortCode}:" src="${assetHost}/emoji/${filename}.svg" />`;
|
2017-09-19 21:27:29 +00:00
|
|
|
str = str.slice(i + match.length);
|
2017-06-30 15:29:22 +00:00
|
|
|
}
|
2017-03-29 20:27:24 +00:00
|
|
|
}
|
2017-09-19 21:27:29 +00:00
|
|
|
return rtn + str;
|
2017-08-02 19:05:17 +00:00
|
|
|
};
|
2016-11-15 17:38:57 +00:00
|
|
|
|
2017-07-03 09:02:36 +00:00
|
|
|
export default emojify;
|
2017-09-23 03:40:28 +00:00
|
|
|
|
|
|
|
export const buildCustomEmojis = customEmojis => {
|
|
|
|
const emojis = [];
|
|
|
|
|
|
|
|
customEmojis.forEach(emoji => {
|
|
|
|
const shortcode = emoji.get('shortcode');
|
|
|
|
const url = emoji.get('url');
|
|
|
|
const name = shortcode.replace(':', '');
|
|
|
|
|
|
|
|
emojis.push({
|
2017-09-23 12:47:32 +00:00
|
|
|
id: name,
|
2017-09-23 03:40:28 +00:00
|
|
|
name,
|
|
|
|
short_names: [name],
|
|
|
|
text: '',
|
|
|
|
emoticons: [],
|
|
|
|
keywords: [name],
|
|
|
|
imageUrl: url,
|
2017-09-23 12:47:32 +00:00
|
|
|
custom: true,
|
2017-09-23 03:40:28 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
return emojis;
|
|
|
|
};
|