2022-10-11 08:17:04 +00:00
|
|
|
import { autoPlayGif, useSystemEmojiFont } from 'flavours/glitch/initial_state';
|
2017-10-06 01:42:34 +00:00
|
|
|
import unicodeMapping from './emoji_unicode_mapping_light';
|
2022-10-11 08:41:15 +00:00
|
|
|
import { assetHost } from 'flavours/glitch/utils/config';
|
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
|
|
|
|
2020-06-10 19:56:14 +00:00
|
|
|
// Convert to file names from emojis. (For different variation selector emojis)
|
|
|
|
const emojiFilenames = (emojis) => {
|
|
|
|
return emojis.map(v => unicodeMapping[v].filename);
|
|
|
|
};
|
|
|
|
|
2020-06-09 08:28:23 +00:00
|
|
|
// Emoji requiring extra borders depending on theme
|
2021-04-13 21:43:51 +00:00
|
|
|
const darkEmoji = emojiFilenames(['🎱', '🐜', '⚫', '🖤', '⬛', '◼️', '◾', '◼️', '✒️', '▪️', '💣', '🎳', '📷', '📸', '♣️', '🕶️', '✴️', '🔌', '💂♀️', '📽️', '🍳', '🦍', '💂', '🔪', '🕳️', '🕹️', '🕋', '🖊️', '🖋️', '💂♂️', '🎤', '🎓', '🎥', '🎼', '♠️', '🎩', '🦃', '📼', '📹', '🎮', '🐃', '🏴', '🐞', '🕺', '📱', '📲', '🚲']);
|
2020-06-10 19:56:14 +00:00
|
|
|
const lightEmoji = emojiFilenames(['👽', '⚾', '🐔', '☁️', '💨', '🕊️', '👀', '🍥', '👻', '🐐', '❕', '❔', '⛸️', '🌩️', '🔊', '🔇', '📃', '🌧️', '🐏', '🍚', '🍙', '🐓', '🐑', '💀', '☠️', '🌨️', '🔉', '🔈', '💬', '💭', '🏐', '🏳️', '⚪', '⬜', '◽', '◻️', '▫️']);
|
2020-06-09 08:28:23 +00:00
|
|
|
|
2020-06-10 19:56:14 +00:00
|
|
|
const emojiFilename = (filename) => {
|
2020-06-09 09:55:07 +00:00
|
|
|
const borderedEmoji = (document.body && document.body.classList.contains('skin-mastodon-light')) ? lightEmoji : darkEmoji;
|
2020-06-10 19:56:14 +00:00
|
|
|
return borderedEmoji.includes(filename) ? (filename + '_border') : filename;
|
2020-06-09 08:28:23 +00:00
|
|
|
};
|
|
|
|
|
2022-11-09 13:16:02 +00:00
|
|
|
const emojifyTextNode = (node, customEmojis) => {
|
|
|
|
const parentElement = node.parentElement;
|
|
|
|
let str = node.textContent;
|
|
|
|
|
2017-09-19 21:27:29 +00:00
|
|
|
for (;;) {
|
2022-11-09 13:16:02 +00:00
|
|
|
let match, i = 0;
|
|
|
|
|
|
|
|
if (customEmojis === null) {
|
|
|
|
while (i < str.length && !(match = trie.search(str.slice(i)))) {
|
|
|
|
i += str.codePointAt(i) < 65536 ? 1 : 2;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while (i < str.length && str[i] !== ':' && !(match = trie.search(str.slice(i)))) {
|
|
|
|
i += str.codePointAt(i) < 65536 ? 1 : 2;
|
|
|
|
}
|
2017-09-19 21:27:29 +00:00
|
|
|
}
|
2022-11-09 13:16:02 +00:00
|
|
|
|
2017-09-30 13:57:32 +00:00
|
|
|
let rend, replacement = '';
|
|
|
|
if (i === str.length) {
|
2017-09-19 21:27:29 +00:00
|
|
|
break;
|
2017-09-21 01:47:16 +00:00
|
|
|
} else if (str[i] === ':') {
|
2017-09-30 13:57:32 +00:00
|
|
|
if (!(() => {
|
|
|
|
rend = str.indexOf(':', i + 1) + 1;
|
|
|
|
if (!rend) return false; // no pair of ':'
|
|
|
|
const shortname = str.slice(i, rend);
|
|
|
|
// now got a replacee as ':shortname:'
|
|
|
|
// if you want additional emoji handler, add statements below which set replacement and return true.
|
2017-09-21 01:47:16 +00:00
|
|
|
if (shortname in customEmojis) {
|
2017-10-31 21:58:07 +00:00
|
|
|
const filename = autoPlayGif ? customEmojis[shortname].url : customEmojis[shortname].static_url;
|
2019-07-21 16:10:40 +00:00
|
|
|
replacement = `<img draggable="false" class="emojione custom-emoji" alt="${shortname}" title="${shortname}" src="${filename}" data-original="${customEmojis[shortname].url}" data-static="${customEmojis[shortname].static_url}" />`;
|
2017-09-30 13:57:32 +00:00
|
|
|
return true;
|
2017-09-19 21:27:29 +00:00
|
|
|
}
|
2017-09-30 13:57:32 +00:00
|
|
|
return false;
|
|
|
|
})()) rend = ++i;
|
2019-08-12 13:31:20 +00:00
|
|
|
} else if (!useSystemEmojiFont) { // matched to unicode emoji
|
2017-10-06 01:42:34 +00:00
|
|
|
const { filename, shortCode } = unicodeMapping[match];
|
|
|
|
const title = shortCode ? `:${shortCode}:` : '';
|
2020-06-10 19:56:14 +00:00
|
|
|
replacement = `<img draggable="false" class="emojione" alt="${match}" title="${title}" src="${assetHost}/emoji/${emojiFilename(filename)}.svg" />`;
|
2017-09-30 13:57:32 +00:00
|
|
|
rend = i + match.length;
|
2018-09-03 15:30:55 +00:00
|
|
|
// If the matched character was followed by VS15 (for selecting text presentation), skip it.
|
|
|
|
if (str.codePointAt(rend) === 65038) {
|
|
|
|
rend += 1;
|
|
|
|
}
|
2017-06-30 15:29:22 +00:00
|
|
|
}
|
2022-11-09 13:16:02 +00:00
|
|
|
|
|
|
|
node.textContent = str.slice(0, i);
|
|
|
|
parentElement.insertAdjacentHTML('beforeend', replacement);
|
2017-09-30 13:57:32 +00:00
|
|
|
str = str.slice(rend);
|
2022-11-09 13:16:02 +00:00
|
|
|
node = document.createTextNode(str);
|
|
|
|
parentElement.append(node);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const emojifyNode = (node, customEmojis) => {
|
|
|
|
for (const child of node.childNodes) {
|
|
|
|
switch(child.nodeType) {
|
|
|
|
case Node.TEXT_NODE:
|
|
|
|
emojifyTextNode(child, customEmojis);
|
|
|
|
break;
|
|
|
|
case Node.ELEMENT_NODE:
|
|
|
|
if (!child.classList.contains('invisible'))
|
|
|
|
emojifyNode(child, customEmojis);
|
|
|
|
break;
|
|
|
|
}
|
2017-03-29 20:27:24 +00:00
|
|
|
}
|
2022-11-09 13:16:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const emojify = (str, customEmojis = {}) => {
|
|
|
|
const wrapper = document.createElement('div');
|
|
|
|
wrapper.innerHTML = str;
|
|
|
|
|
|
|
|
if (!Object.keys(customEmojis).length)
|
|
|
|
customEmojis = null;
|
|
|
|
|
|
|
|
emojifyNode(wrapper, customEmojis);
|
|
|
|
|
|
|
|
return wrapper.innerHTML;
|
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;
|
2018-01-05 05:17:30 +00:00
|
|
|
export { unicodeMapping };
|
2017-09-23 03:40:28 +00:00
|
|
|
|
2017-10-31 21:58:07 +00:00
|
|
|
export const buildCustomEmojis = (customEmojis) => {
|
2017-09-23 03:40:28 +00:00
|
|
|
const emojis = [];
|
|
|
|
|
|
|
|
customEmojis.forEach(emoji => {
|
|
|
|
const shortcode = emoji.get('shortcode');
|
2017-10-31 21:58:07 +00:00
|
|
|
const url = autoPlayGif ? emoji.get('url') : emoji.get('static_url');
|
2017-09-23 03:40:28 +00:00
|
|
|
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,
|
2019-06-28 13:54:10 +00:00
|
|
|
customCategory: emoji.get('category'),
|
2017-09-23 03:40:28 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
return emojis;
|
|
|
|
};
|
2019-06-28 13:54:10 +00:00
|
|
|
|
2019-09-22 22:48:43 +00:00
|
|
|
export const categoriesFromEmojis = customEmojis => customEmojis.reduce((set, emoji) => set.add(emoji.get('category') ? `custom-${emoji.get('category')}` : 'custom'), new Set(['custom']));
|