mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
074e73b0fd
This change adds JSDoc-style comments to several functions and classes across the codebase to improve readability and maintainability. Comments were added to: - `src/SEQTA.ts`: Explained the `init()` function. - `src/seqta/utils/waitForElm.ts`: Detailed the `waitForElm()` function, its parameters, and behavior. - `src/seqta/utils/stringToHTML.ts`: Clarified the `stringToHTML()` function, including its sanitization and styling features. - `src/seqta/utils/delay.ts`: Added a brief explanation for the `delay()` utility. - `src/seqta/utils/mutex.ts`: Documented the `Mutex` class and its `acquire` method (renamed from `lock`), explaining its asynchronous locking mechanism and the role of the returned unlock function.
90 lines
2.9 KiB
TypeScript
90 lines
2.9 KiB
TypeScript
import { eventManager } from "@/seqta/utils/listeners/EventManager";
|
|
import { delay } from "@/seqta/utils/delay";
|
|
|
|
/**
|
|
* Asynchronously waits for an element to be present in the DOM.
|
|
*
|
|
* This function can use either a polling mechanism (via `setTimeout`) or
|
|
* a `MutationObserver` (via `eventManager.register`) to detect the element.
|
|
* By default, it uses the `eventManager` which is more efficient.
|
|
*
|
|
* @param {string} selector The CSS selector for the target element.
|
|
* @param {boolean} [usePolling=false] If true, forces the use of `setTimeout` for polling.
|
|
* @param {number} [interval=100] The polling interval in milliseconds (only applicable if `usePolling` is true).
|
|
* @param {number} [maxIterations] Optional. The maximum number of polling attempts before rejecting (only applicable if `usePolling` is true).
|
|
* @returns {Promise<Element>} A Promise that resolves with the found DOM Element.
|
|
* If `usePolling` is true and `maxIterations` is reached, the Promise rejects with an Error.
|
|
*/
|
|
export async function waitForElm(
|
|
selector: string,
|
|
usePolling: boolean = false,
|
|
interval: number = 100,
|
|
maxIterations?: number,
|
|
): Promise<Element> {
|
|
if (usePolling) {
|
|
return new Promise((resolve, reject) => {
|
|
let iterations = 0;
|
|
if (maxIterations) {
|
|
iterations = 0;
|
|
}
|
|
const checkForElement = () => {
|
|
const element = document.querySelector(selector);
|
|
if (element) {
|
|
resolve(element);
|
|
} else {
|
|
if (maxIterations) {
|
|
iterations++;
|
|
if (iterations >= maxIterations) {
|
|
reject(new Error("Element not found"));
|
|
}
|
|
}
|
|
setTimeout(checkForElement, interval);
|
|
}
|
|
};
|
|
|
|
if (document.readyState === "loading") {
|
|
document.addEventListener("DOMContentLoaded", checkForElement);
|
|
} else {
|
|
checkForElement();
|
|
}
|
|
});
|
|
} else {
|
|
return new Promise((resolve) => {
|
|
const registerObserver = () => {
|
|
const { unregister } = eventManager.register(
|
|
`${selector}`,
|
|
{
|
|
customCheck: (element) => element.matches(selector),
|
|
},
|
|
async (element) => {
|
|
resolve(element);
|
|
await delay(1);
|
|
unregister(); // Remove the listener once the element is found
|
|
},
|
|
);
|
|
return unregister;
|
|
};
|
|
|
|
let unregister = null;
|
|
|
|
if (document.readyState === "loading") {
|
|
// DOM is still loading, wait for it to be ready
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
unregister = registerObserver();
|
|
});
|
|
} else {
|
|
unregister = registerObserver();
|
|
}
|
|
|
|
const querySelector = () => document.querySelector(selector);
|
|
const element = querySelector();
|
|
|
|
if (element) {
|
|
if (unregister) unregister();
|
|
resolve(element);
|
|
return;
|
|
}
|
|
});
|
|
}
|
|
}
|