2017-07-18 16:49:24 -04:00
|
|
|
import { unicodeMapping } from './emojione_light';
|
2017-07-03 05:02:36 -04:00
|
|
|
import Trie from 'substring-trie';
|
2016-11-15 12:38:57 -05:00
|
|
|
|
2017-07-18 16:49:24 -04:00
|
|
|
const trie = new Trie(Object.keys(unicodeMapping));
|
2017-03-29 16:27:24 -04:00
|
|
|
|
2017-07-03 05:02:36 -04:00
|
|
|
function emojify(str) {
|
|
|
|
// This walks through the string from start to end, ignoring any tags (<p>, <br>, etc.)
|
2017-07-14 13:47:53 -04:00
|
|
|
// and replacing valid unicode strings
|
2017-07-03 05:02:36 -04:00
|
|
|
// that _aren't_ within tags with an <img> version.
|
2017-07-14 13:47:53 -04:00
|
|
|
// The goal is to be the same as an emojione.regUnicode replacement, but faster.
|
2017-07-03 05:02:36 -04:00
|
|
|
let i = -1;
|
2017-06-30 11:29:22 -04:00
|
|
|
let insideTag = false;
|
2017-07-03 05:02:36 -04:00
|
|
|
let match;
|
|
|
|
while (++i < str.length) {
|
2017-06-30 11:29:22 -04:00
|
|
|
const char = str.charAt(i);
|
2017-07-14 13:47:53 -04:00
|
|
|
if (insideTag && char === '>') {
|
2017-06-30 11:29:22 -04:00
|
|
|
insideTag = false;
|
2017-07-03 05:02:36 -04:00
|
|
|
} else if (char === '<') {
|
2017-06-30 11:29:22 -04:00
|
|
|
insideTag = true;
|
2017-07-03 05:02:36 -04:00
|
|
|
} else if (!insideTag && (match = trie.search(str.substring(i)))) {
|
|
|
|
const unicodeStr = match;
|
2017-07-18 16:49:24 -04:00
|
|
|
if (unicodeStr in unicodeMapping) {
|
|
|
|
const [filename, shortCode] = unicodeMapping[unicodeStr];
|
2017-07-14 14:30:12 -04:00
|
|
|
const alt = unicodeStr;
|
2017-07-18 16:49:24 -04:00
|
|
|
const replacement = `<img draggable="false" class="emojione" alt="${alt}" title=":${shortCode}:" src="/emoji/${filename}.svg" />`;
|
2017-07-03 05:02:36 -04:00
|
|
|
str = str.substring(0, i) + replacement + str.substring(i + unicodeStr.length);
|
|
|
|
i += (replacement.length - unicodeStr.length); // jump ahead the length we've added to the string
|
|
|
|
}
|
2017-06-30 11:29:22 -04:00
|
|
|
}
|
2017-03-29 16:27:24 -04:00
|
|
|
}
|
2017-06-30 11:29:22 -04:00
|
|
|
return str;
|
2017-07-03 05:02:36 -04:00
|
|
|
}
|
2016-11-15 12:38:57 -05:00
|
|
|
|
2017-07-03 05:02:36 -04:00
|
|
|
export default emojify;
|