Updated emoji in status, comments to be large if conditions apply
• Updated: - emoji in status, comments to be large if conditions apply: no other text and < 4 emojis
This commit is contained in:
parent
edac4026f0
commit
1f78bc6879
|
@ -66,7 +66,7 @@ export function normalizeStatus(status, normalOldStatus) {
|
||||||
const theContent = !!normalStatus.rich_content ? normalStatus.rich_content : normalStatus.content;
|
const theContent = !!normalStatus.rich_content ? normalStatus.rich_content : normalStatus.content;
|
||||||
|
|
||||||
normalStatus.search_index = domParser.parseFromString(searchContent, 'text/html').documentElement.textContent;
|
normalStatus.search_index = domParser.parseFromString(searchContent, 'text/html').documentElement.textContent;
|
||||||
normalStatus.contentHtml = emojify(theContent, emojiMap);
|
normalStatus.contentHtml = emojify(theContent, emojiMap, false, true);
|
||||||
normalStatus.spoilerHtml = emojify(escapeTextContentForBrowser(spoilerText), emojiMap);
|
normalStatus.spoilerHtml = emojify(escapeTextContentForBrowser(spoilerText), emojiMap);
|
||||||
normalStatus.hidden = expandSpoilers ? false : spoilerText.length > 0 || normalStatus.sensitive;
|
normalStatus.hidden = expandSpoilers ? false : spoilerText.length > 0 || normalStatus.sensitive;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,19 +6,26 @@ const trie = new Trie(Object.keys(unicodeMapping));
|
||||||
|
|
||||||
const assetHost = process.env.CDN_HOST || '';
|
const assetHost = process.env.CDN_HOST || '';
|
||||||
|
|
||||||
const emojify = (str, customEmojis = {}, plain = false) => {
|
const emojify = (str, customEmojis = {}, plain = false, largeEnabled = false, forceLarge) => {
|
||||||
|
const originalStr = str
|
||||||
const tagCharsWithoutEmojis = '<&';
|
const tagCharsWithoutEmojis = '<&';
|
||||||
const tagCharsWithEmojis = Object.keys(customEmojis).length ? '<&:' : '<&';
|
const tagCharsWithEmojis = Object.keys(customEmojis).length ? '<&:' : '<&';
|
||||||
let rtn = '', tagChars = tagCharsWithEmojis, invisible = 0;
|
let rtn = '', tagChars = tagCharsWithEmojis, invisible = 0;
|
||||||
|
let emojiCount = 0
|
||||||
|
let hasText = false
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
let match, i = 0, tag;
|
let match, i = 0, tag;
|
||||||
while (i < str.length && (tag = tagChars.indexOf(str[i])) === -1 && (invisible || !(match = trie.search(str.slice(i))))) {
|
while (i < str.length && (tag = tagChars.indexOf(str[i])) === -1 && (invisible || !(match = trie.search(str.slice(i))))) {
|
||||||
i += str.codePointAt(i) < 65536 ? 1 : 2;
|
i += str.codePointAt(i) < 65536 ? 1 : 2;
|
||||||
|
let x = trie.search(str.slice(i))
|
||||||
|
if (!x && str[i] !== ':') {
|
||||||
|
hasText = true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let size = 16;
|
let size = forceLarge ? 36 : 16;
|
||||||
let mt = -3;
|
let mt = forceLarge ? 2 : -3;
|
||||||
|
|
||||||
let rend, replacement = '';
|
let rend, replacement = '';
|
||||||
if (i === str.length) {
|
if (i === str.length) {
|
||||||
|
@ -26,17 +33,29 @@ const emojify = (str, customEmojis = {}, plain = false) => {
|
||||||
} else if (str[i] === ':') {
|
} else if (str[i] === ':') {
|
||||||
if (!(() => {
|
if (!(() => {
|
||||||
rend = str.indexOf(':', i + 1) + 1;
|
rend = str.indexOf(':', i + 1) + 1;
|
||||||
if (!rend) return false; // no pair of ':'
|
if (!rend) {
|
||||||
|
// no pair of ':'
|
||||||
|
hasText = true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
const lt = str.indexOf('<', i + 1);
|
const lt = str.indexOf('<', i + 1);
|
||||||
if (!(lt === -1 || lt >= rend)) return false; // tag appeared before closing ':'
|
if (!(lt === -1 || lt >= rend)) {
|
||||||
|
// tag appeared before closing ':'
|
||||||
|
hasText = true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
const shortname = str.slice(i, rend);
|
const shortname = str.slice(i, rend);
|
||||||
// now got a replacee as ':shortname:'
|
// now got a replacee as ':shortname:'
|
||||||
// if you want additional emoji handler, add statements below which set replacement and return true.
|
// if you want additional emoji handler, add statements below which set replacement and return true.
|
||||||
if (shortname in customEmojis) {
|
if (shortname in customEmojis) {
|
||||||
const filename = autoPlayGif ? customEmojis[shortname].url : customEmojis[shortname].static_url;
|
const filename = autoPlayGif ? customEmojis[shortname].url : customEmojis[shortname].static_url;
|
||||||
replacement = plain ? '' : `<img draggable="false" style="height:${size}px;width:${size}px;margin:${mt}px 0 0;font-family:'object-fit:contain',inherit;vertical-align:middle;-o-object-fit:contain;object-fit:contain;" alt="${shortname}" title="${shortname}" src="${filename}" />`;
|
replacement = plain ? '' : `<img draggable="false" style="height:${size}px;width:${size}px;margin:${mt}px 0 0;font-family:'object-fit:contain',inherit;vertical-align:middle;-o-object-fit:contain;object-fit:contain;" alt="${shortname}" title="${shortname}" src="${filename}" />`;
|
||||||
|
emojiCount++;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
hasText = true;
|
||||||
return false;
|
return false;
|
||||||
})()) rend = ++i;
|
})()) rend = ++i;
|
||||||
} else if (tag >= 0) { // <, &
|
} else if (tag >= 0) { // <, &
|
||||||
|
@ -67,6 +86,7 @@ const emojify = (str, customEmojis = {}, plain = false) => {
|
||||||
const title = shortCode ? `:${shortCode}:` : '';
|
const title = shortCode ? `:${shortCode}:` : '';
|
||||||
replacement = plain ? '' : `<img draggable="false" style="height:${size}px;width:${size}px;margin:${mt}px 0 0;font-family:'object-fit:contain',inherit;vertical-align:middle;-o-object-fit:contain;object-fit:contain;" alt="${match}" title="${title}" src="${assetHost}/emoji/${filename}.svg" />`;
|
replacement = plain ? '' : `<img draggable="false" style="height:${size}px;width:${size}px;margin:${mt}px 0 0;font-family:'object-fit:contain',inherit;vertical-align:middle;-o-object-fit:contain;object-fit:contain;" alt="${match}" title="${title}" src="${assetHost}/emoji/${filename}.svg" />`;
|
||||||
rend = i + match.length;
|
rend = i + match.length;
|
||||||
|
emojiCount++;
|
||||||
// If the matched character was followed by VS15 (for selecting text presentation), skip it.
|
// If the matched character was followed by VS15 (for selecting text presentation), skip it.
|
||||||
if (str.codePointAt(rend) === 65038) {
|
if (str.codePointAt(rend) === 65038) {
|
||||||
rend += 1;
|
rend += 1;
|
||||||
|
@ -75,6 +95,11 @@ const emojify = (str, customEmojis = {}, plain = false) => {
|
||||||
rtn += str.slice(0, i) + replacement;
|
rtn += str.slice(0, i) + replacement;
|
||||||
str = str.slice(rend);
|
str = str.slice(rend);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (emojiCount < 4 && largeEnabled && !forceLarge && !hasText) {
|
||||||
|
return emojify(originalStr, customEmojis, plain, largeEnabled, true);
|
||||||
|
}
|
||||||
|
|
||||||
return `${rtn + str}`.trim();
|
return `${rtn + str}`.trim();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue