fd1fee852c
Use a `filter` instead of a loop with an index.
47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
class DomHelper {
|
|
static isVisible(element) {
|
|
return element.offsetParent !== null;
|
|
}
|
|
|
|
static openNewTab(url) {
|
|
let win = window.open("");
|
|
win.opener = null;
|
|
win.location = url;
|
|
win.focus();
|
|
}
|
|
|
|
static scrollPageTo(element, evenIfOnScreen) {
|
|
let windowScrollPosition = window.pageYOffset;
|
|
let windowHeight = document.documentElement.clientHeight;
|
|
let viewportPosition = windowScrollPosition + windowHeight;
|
|
let itemBottomPosition = element.offsetTop + element.offsetHeight;
|
|
|
|
if (evenIfOnScreen || viewportPosition - itemBottomPosition < 0 || viewportPosition - element.offsetTop > windowHeight) {
|
|
window.scrollTo(0, element.offsetTop - 10);
|
|
}
|
|
}
|
|
|
|
static getVisibleElements(selector) {
|
|
const elements = document.querySelectorAll(selector);
|
|
return [...elements].filter((element) => this.isVisible(element));
|
|
}
|
|
|
|
static hasPassiveEventListenerOption() {
|
|
var passiveSupported = false;
|
|
|
|
try {
|
|
var options = Object.defineProperty({}, "passive", {
|
|
get: function() {
|
|
passiveSupported = true;
|
|
}
|
|
});
|
|
|
|
window.addEventListener("test", options, options);
|
|
window.removeEventListener("test", options, options);
|
|
} catch(err) {
|
|
passiveSupported = false;
|
|
}
|
|
|
|
return passiveSupported;
|
|
}
|
|
}
|