Recode EmojiText, fix bug for some emojis not being replaced
This commit is contained in:
parent
c3f80cec9b
commit
fb798ce895
1 changed files with 14 additions and 26 deletions
|
@ -2,41 +2,29 @@ function EmojiText({ text, emojis }) {
|
||||||
if (!text) return '';
|
if (!text) return '';
|
||||||
if (!emojis?.length) return text;
|
if (!emojis?.length) return text;
|
||||||
if (text.indexOf(':') === -1) return text;
|
if (text.indexOf(':') === -1) return text;
|
||||||
|
const regex = new RegExp(
|
||||||
const components = [];
|
`:(${emojis.map((e) => e.shortcode).join('|')}):`,
|
||||||
let lastIndex = 0;
|
'g',
|
||||||
|
);
|
||||||
emojis.forEach((shortcodeObj) => {
|
const elements = text.split(regex).map((word) => {
|
||||||
const { shortcode, staticUrl, url } = shortcodeObj;
|
const emoji = emojis.find((e) => e.shortcode === word);
|
||||||
const regex = new RegExp(`:${shortcode}:`, 'g');
|
if (emoji) {
|
||||||
let match;
|
return (
|
||||||
|
|
||||||
while ((match = regex.exec(text))) {
|
|
||||||
const beforeText = text.substring(lastIndex, match.index);
|
|
||||||
if (beforeText) {
|
|
||||||
components.push(beforeText);
|
|
||||||
}
|
|
||||||
components.push(
|
|
||||||
<img
|
<img
|
||||||
src={url}
|
key={word}
|
||||||
alt={shortcode}
|
src={emoji.url}
|
||||||
|
alt={word}
|
||||||
class="shortcode-emoji emoji"
|
class="shortcode-emoji emoji"
|
||||||
width="12"
|
width="12"
|
||||||
height="12"
|
height="12"
|
||||||
loading="lazy"
|
loading="lazy"
|
||||||
decoding="async"
|
decoding="async"
|
||||||
/>,
|
/>
|
||||||
);
|
);
|
||||||
lastIndex = match.index + match[0].length;
|
|
||||||
}
|
}
|
||||||
|
return word;
|
||||||
});
|
});
|
||||||
|
return elements;
|
||||||
const afterText = text.substring(lastIndex);
|
|
||||||
if (afterText) {
|
|
||||||
components.push(afterText);
|
|
||||||
}
|
|
||||||
|
|
||||||
return components;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default EmojiText;
|
export default EmojiText;
|
||||||
|
|
Loading…
Add table
Reference in a new issue