Fix persistent high CPU usage when emoji-sets is enabled (#586)

MutationObserver enters into an infinite loop by iterating on itself. By disconnecting the observer and reconnecting it after parsing the DOM for emoji-sets to work, we stop the problem and Notion goes back to sane 0% CPU idle usage.
This commit is contained in:
Alejandro Romano 2021-10-18 08:19:34 -03:00 committed by GitHub
parent 0198e29f46
commit 3e7319464e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
/*
* emoji sets
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (c) minor fixes by Arecsu from martyr (https://martyr.shop/)
* under the MIT license
*/
@ -47,13 +48,19 @@ module.exports = {
if (!queue.length) requestAnimationFrame(handle);
queue.push(...list);
});
observer.observe(document.body, {
childList: true,
subtree: true,
characterData: true,
});
const observe = ()=> {
observer.observe(document.body, {
childList: true,
subtree: true,
characterData: true,
});
};
observe(); // initiate observer
function handle() {
queue = [];
observer.disconnect(); // stop observer from getting stuck into an infinite loop from here
const isMac = process.platform === 'darwin',
native =
(store().style === 'microsoft' && process.platform === 'win32') ||
@ -139,6 +146,7 @@ module.exports = {
}
tweaked = true;
}
observe(); // re-initiating the observer now that we don't risk an infinite loop
}
});
},