Skip to content

Commit

Permalink
Les Echos : Enhance error handling (querySelector). Refactor Mutation…
Browse files Browse the repository at this point in the history
…Observers. (#243)

* Enhance error handling (querySelector). Refactor MutationObservers.
- Reduce querySelector usage by passing metaElement to isPremium function.
- Fix race condition.
- Correctly disconnect observer.

* Correctly check if metaElement exist in callbackTitle. Rename callbback to callbackDirectAccess to differentiate the two callbackes. Removing useless check in isPremium function

* Rename observerTitle to observerDynamicLoading for better readability

* LesEchos : Yet another try to fix the race conditions where two buttons are added
  • Loading branch information
Write committed Sep 1, 2024
1 parent da493d2 commit 04feb4a
Showing 1 changed file with 30 additions and 29 deletions.
59 changes: 30 additions & 29 deletions ophirofox/content_scripts/lesechos.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,13 @@ function extractKeywords() {
return titleElem && titleElem.textContent;
}

let buttonAdded = false;

async function addEuropresseButton() {
if (!buttonAdded) {
const ophiroBtnPresence = document.querySelector('.ophirofox-europresse');
if (!ophiroBtnPresence) {
const elt = document.querySelector("button[aria-label=Commenter]")?.parentElement?.parentElement;
if (elt) {
const a = await ophirofoxEuropresseLink(extractKeywords());
elt.appendChild(a);
buttonAdded = true;
}
}
}
Expand All @@ -23,54 +21,57 @@ async function onLoad() {
by a new meta with name ad:postAcces) and add the button (this is the first observer).
2. Or a page is newly routed (for instance, when one goes from the homepage to an article) :
- it is detected with the second observer that watches for changes in <title> and reset the button
- we wait for the end of actual loading of the new content by observing <main><meta content>.
- we wait for the end of actual loading of the new content by checking if meta[name="ad:postAccess"] exist.
*/

const isPremium = () => {
if (document.querySelector("meta[name='ad:postAccess']").content == 'subscribers') {
const isPremium = (metaElement) => {
if (metaElement.content == 'subscribers') {
return true;
}
return false;
};

const callback = (mutationList, observer) => {
if (document.querySelector('meta[name="ad:postAccess"]')) {
addEuropresseButton();
// Observer [ Direct URL Access ]
const callbackDirectAccess = (mutationList, observer) => {
const metaElement = document.querySelector('meta[name="ad:postAccess"]');
if (metaElement) {
if (isPremium(metaElement)) {
addEuropresseButton();
}
observer.disconnect();
return;
}
for (const mutation of mutationList) {
for (const e of mutation.addedNodes) {
if (e.name == "ad:postAccess") {
if (isPremium())
if (isPremium(e)) {
addEuropresseButton();
}
observer.disconnect();
return;
}
}
}
};

const observer = new MutationObserver(callback);
observer.observe(document.body, {
childList: true
});

const observerTitle = new MutationObserver(() => {
buttonAdded = false;
if (isPremium())
addEuropresseButton();
});

const title = document.querySelector("title")
observerTitle.observe(title, {
const observerDirectAccess = new MutationObserver(callbackDirectAccess);
observerDirectAccess.observe(document.body, {
childList: true,
subtree: false
});

const observerMain = new MutationObserver(() => {
addEuropresseButton();
});
const main = document.querySelector("main meta[content]")
observerMain.observe(main, {
// Observer [ Dynamic page Loading ]
const callbackDynamicLoading = (mutationList, observer) => {
const metaElement = document.querySelector('meta[name="ad:postAccess"]');
if (metaElement) {
if (isPremium(metaElement)) {
addEuropresseButton();
}
}
};

const observerDynamicLoading = new MutationObserver(callbackDynamicLoading);
observerDynamicLoading.observe(document.querySelector('title'), {
childList: true,
subtree: false
});
Expand Down

0 comments on commit 04feb4a

Please sign in to comment.