mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
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:
parent
0198e29f46
commit
3e7319464e
@ -1,6 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* emoji sets
|
* emoji sets
|
||||||
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
* (c) 2020 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
|
||||||
|
* (c) minor fixes by Arecsu from martyr— (https://martyr.shop/)
|
||||||
* under the MIT license
|
* under the MIT license
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -47,13 +48,19 @@ module.exports = {
|
|||||||
if (!queue.length) requestAnimationFrame(handle);
|
if (!queue.length) requestAnimationFrame(handle);
|
||||||
queue.push(...list);
|
queue.push(...list);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const observe = ()=> {
|
||||||
observer.observe(document.body, {
|
observer.observe(document.body, {
|
||||||
childList: true,
|
childList: true,
|
||||||
subtree: true,
|
subtree: true,
|
||||||
characterData: true,
|
characterData: true,
|
||||||
});
|
});
|
||||||
|
};
|
||||||
|
observe(); // initiate observer
|
||||||
|
|
||||||
function handle() {
|
function handle() {
|
||||||
queue = [];
|
queue = [];
|
||||||
|
observer.disconnect(); // stop observer from getting stuck into an infinite loop from here
|
||||||
const isMac = process.platform === 'darwin',
|
const isMac = process.platform === 'darwin',
|
||||||
native =
|
native =
|
||||||
(store().style === 'microsoft' && process.platform === 'win32') ||
|
(store().style === 'microsoft' && process.platform === 'win32') ||
|
||||||
@ -139,6 +146,7 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
tweaked = true;
|
tweaked = true;
|
||||||
}
|
}
|
||||||
|
observe(); // re-initiating the observer now that we don't risk an infinite loop
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user