2019-08-12 13:31:20 +00:00
|
|
|
import { autoPlayGif, useSystemEmojiFont } from 'flavours/glitch/util/initial_state';
|
2017-10-06 01:42:34 +00:00
|
|
|
import unicodeMapping from './emoji_unicode_mapping_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 || '';
|
|
|
|
|
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
|
2020-06-10 19:56:14 +00:00
|
|
|
const darkEmoji = emojiFilenames(['🎱', '🐜', '⚫', '🖤', '⬛', '◼️', '◾', '◼️', '✒️', '▪️', '💣', '🎳', '📷', '📸', '♣️', '🕶️', '✴️', '🔌', '💂♀️', '📽️', '🍳', '🦍', '💂', '🔪', '🕳️', '🕹️', '🕋', '🖊️', '🖋️', '💂♂️', '🎤', '🎓', '🎥', '🎼', '♠️', '🎩', '🦃', '📼', '📹', '🎮', '🐃', '🏴']);
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2017-09-19 00:42:40 +00:00
|
|
|
const emojify = (str, customEmojis = {}) => {
|
2017-11-07 13:48:13 +00:00
|
|
|
const tagCharsWithoutEmojis = '<&';
|
|
|
|
const tagCharsWithEmojis = Object.keys(customEmojis).length ? '<&:' : '<&';
|
|
|
|
let rtn = '', tagChars = tagCharsWithEmojis, invisible = 0;
|
2017-09-19 21:27:29 +00:00
|
|
|
for (;;) {
|
|
|
|
let match, i = 0, tag;
|
2019-08-12 13:31:20 +00:00
|
|
|
while (i < str.length && (tag = tagChars.indexOf(str[i])) === -1 && (invisible || useSystemEmojiFont || !(match = trie.search(str.slice(i))))) {
|
2017-09-19 21:27:29 +00:00
|
|
|
i += str.codePointAt(i) < 65536 ? 1 : 2;
|
|
|
|
}
|
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 ':'
|
2017-09-19 21:27:29 +00:00
|
|
|
const lt = str.indexOf('<', i + 1);
|
2017-09-30 13:57:32 +00:00
|
|
|
if (!(lt === -1 || lt >= rend)) return false; // tag appeared before closing ':'
|
|
|
|
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;
|
|
|
|
} else if (tag >= 0) { // <, &
|
|
|
|
rend = str.indexOf('>;'[tag], i + 1) + 1;
|
2017-11-07 13:48:13 +00:00
|
|
|
if (!rend) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (tag === 0) {
|
|
|
|
if (invisible) {
|
|
|
|
if (str[i + 1] === '/') { // closing tag
|
|
|
|
if (!--invisible) {
|
|
|
|
tagChars = tagCharsWithEmojis;
|
|
|
|
}
|
|
|
|
} else if (str[rend - 2] !== '/') { // opening tag
|
|
|
|
invisible++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (str.startsWith('<span class="invisible">', i)) {
|
|
|
|
// avoid emojifying on invisible text
|
|
|
|
invisible = 1;
|
|
|
|
tagChars = tagCharsWithoutEmojis;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-30 13:57:32 +00:00
|
|
|
i = rend;
|
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
|
|
|
}
|
2017-09-30 13:57:32 +00:00
|
|
|
rtn += str.slice(0, i) + replacement;
|
|
|
|
str = str.slice(rend);
|
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;
|
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']));
|