Fix not all classes removed

This is due to DomTokenList being dynamic, looping it while removing items from it cause wrong indices
This commit is contained in:
Lim Chee Aun 2023-09-16 15:45:09 +08:00
parent 941d2efeb1
commit 1a714d214b

View file

@ -1,6 +1,7 @@
import emojifyText from './emojify-text'; import emojifyText from './emojify-text';
const fauxDiv = document.createElement('div'); const fauxDiv = document.createElement('div');
const whitelistLinkClasses = ['u-url', 'mention', 'hashtag'];
function enhanceContent(content, opts = {}) { function enhanceContent(content, opts = {}) {
const { emojis, postEnhanceDOM = () => {} } = opts; const { emojis, postEnhanceDOM = () => {} } = opts;
@ -22,10 +23,9 @@ function enhanceContent(content, opts = {}) {
// Remove all classes except `u-url`, `mention`, `hashtag` // Remove all classes except `u-url`, `mention`, `hashtag`
const links = Array.from(dom.querySelectorAll('a[class]')); const links = Array.from(dom.querySelectorAll('a[class]'));
const whitelistClasses = ['u-url', 'mention', 'hashtag'];
links.forEach((link) => { links.forEach((link) => {
link.classList.forEach((c) => { Array.from(link.classList).forEach((c) => {
if (!whitelistClasses.includes(c)) { if (!whitelistLinkClasses.includes(c)) {
link.classList.remove(c); link.classList.remove(c);
} }
}); });