2016-11-15 12:38:57 -05:00
|
|
|
import emojione from 'emojione';
|
2017-07-03 05:02:36 -04:00
|
|
|
import Trie from 'substring-trie';
|
2016-11-15 12:38:57 -05:00
|
|
|
|
2017-07-03 05:02:36 -04:00
|
|
|
const mappedUnicode = emojione.mapUnicodeToShort();
|
|
|
|
const trie = new Trie(Object.keys(emojione.jsEscapeMap));
|
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.)
|
|
|
|
// and replacing valid shortnames like :smile: and :wink: as well as unicode strings
|
|
|
|
// that _aren't_ within tags with an <img> version.
|
|
|
|
// The goal is to be the same as an emojione.regShortNames/regUnicode replacement, but faster.
|
|
|
|
let i = -1;
|
2017-06-30 11:29:22 -04:00
|
|
|
let insideTag = false;
|
|
|
|
let insideShortname = false;
|
2017-07-03 05:02:36 -04:00
|
|
|
let shortnameStartIndex = -1;
|
|
|
|
let match;
|
|
|
|
while (++i < str.length) {
|
2017-06-30 11:29:22 -04:00
|
|
|
const char = str.charAt(i);
|
|
|
|
if (insideShortname && char === ':') {
|
2017-07-03 05:02:36 -04:00
|
|
|
const shortname = str.substring(shortnameStartIndex, i + 1);
|
2017-06-30 11:29:22 -04:00
|
|
|
if (shortname in emojione.emojioneList) {
|
|
|
|
const unicode = emojione.emojioneList[shortname].unicode[emojione.emojioneList[shortname].unicode.length - 1];
|
|
|
|
const alt = emojione.convert(unicode.toUpperCase());
|
|
|
|
const replacement = `<img draggable="false" class="emojione" alt="${alt}" title="${shortname}" src="/emoji/${unicode}.svg" />`;
|
2017-07-03 05:02:36 -04:00
|
|
|
str = str.substring(0, shortnameStartIndex) + replacement + str.substring(i + 1);
|
|
|
|
i += (replacement.length - shortname.length - 1); // jump ahead the length we've added to the string
|
2017-06-30 11:29:22 -04:00
|
|
|
} else {
|
2017-07-03 05:02:36 -04:00
|
|
|
i--; // stray colon, try again
|
2017-06-30 11:29:22 -04:00
|
|
|
}
|
|
|
|
insideShortname = false;
|
2017-07-03 05:02:36 -04:00
|
|
|
} else 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;
|
|
|
|
insideShortname = false;
|
|
|
|
} else if (!insideTag && char === ':') {
|
|
|
|
insideShortname = true;
|
2017-07-03 05:02:36 -04:00
|
|
|
shortnameStartIndex = i;
|
|
|
|
} else if (!insideTag && (match = trie.search(str.substring(i)))) {
|
|
|
|
const unicodeStr = match;
|
|
|
|
if (unicodeStr in emojione.jsEscapeMap) {
|
|
|
|
const unicode = emojione.jsEscapeMap[unicodeStr];
|
|
|
|
const short = mappedUnicode[unicode];
|
|
|
|
const filename = emojione.emojioneList[short].fname;
|
|
|
|
const alt = emojione.convert(unicode.toUpperCase());
|
|
|
|
const replacement = `<img draggable="false" class="emojione" alt="${alt}" title="${short}" src="/emoji/${filename}.svg" />`;
|
|
|
|
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;
|