125 lines
4.5 KiB
JavaScript
125 lines
4.5 KiB
JavaScript
module.exports = (Plugin, Api, Vendor) => {
|
|
if (!global.BDFDB || typeof BDFDB != "object") global.BDFDB = {myPlugins:{}, BDv2Api: Api};
|
|
|
|
return class extends Plugin {
|
|
onStart () {
|
|
if (global.BDFDB && global.BDFDB.myPlugins && typeof global.BDFDB.myPlugins == "object") global.BDFDB.myPlugins[this.name] = this;
|
|
var libraryScript = document.querySelector('head script[src="https://mwittrien.github.io/BetterDiscordAddons/Plugins/BDFDB.js"]');
|
|
if (!global.BDFDB || typeof BDFDB != "object" || performance.now() - BDFDB.creationTime > 600000e.now() - BDFDB.creationTime > 600000) {
|
|
if (libraryScript) libraryScript.remove();
|
|
libraryScript = document.createElement("script");
|
|
libraryScript.setAttribute("type", "text/javascript");
|
|
libraryScript.setAttribute("src", "https://mwittrien.github.io/BetterDiscordAddons/Plugins/BDFDB.js");
|
|
libraryScript.setAttribute("date", performance.now());
|
|
libraryScript.addEventListener("load", () => {if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) this.initialize();});
|
|
document.head.appendChild(libraryScript);
|
|
}
|
|
else if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) this.initialize();
|
|
this.startTimeout = setTimeout(() => {this.initialize();}, 30000);
|
|
}
|
|
|
|
initialize () {
|
|
if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) {
|
|
if (this.started) return true;
|
|
BDFDB.loadMessage(this);
|
|
|
|
var observer = null;
|
|
|
|
observer = new MutationObserver((changes, _) => {
|
|
changes.forEach(
|
|
(change, i) => {
|
|
if (change.addedNodes) {
|
|
change.addedNodes.forEach((node) => {
|
|
if (node && BDFDB.containsClass(node, BDFDB.disCN.popout)) {
|
|
this.makeMoveable(node);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
);
|
|
});
|
|
BDFDB.addObserver(this, BDFDB.dotCN.popouts, {name:"popoutObserver",instance:observer}, {childList: true});
|
|
|
|
observer = new MutationObserver((changes, _) => {
|
|
changes.forEach(
|
|
(change, i) => {
|
|
if (change.addedNodes) {
|
|
change.addedNodes.forEach((node) => {
|
|
if (node && BDFDB.containsClass(node, BDFDB.disCN.modal) && !node.querySelector(BDFDB.dotCN.downloadlink)) {
|
|
this.makeMoveable(node.querySelector(BDFDB.dotCN.modalinner));
|
|
}
|
|
else if (node.tagName && node.querySelector(BDFDB.dotCN.modal) && !node.querySelector(BDFDB.dotCN.downloadlink)) {
|
|
this.makeMoveable(node.querySelector(BDFDB.dotCN.modalinner));
|
|
}
|
|
});
|
|
}
|
|
}
|
|
);
|
|
});
|
|
BDFDB.addObserver(this, BDFDB.dotCN.app + " ~ [class^='theme-']:not([class*='popouts'])", {name:"modalObserver",instance:observer}, {childList: true});
|
|
|
|
return true;
|
|
}
|
|
else {
|
|
console.error(`%c[${this.name}]%c`, 'color: #3a71c1; font-weight: 700;', '', 'Fatal Error: Could not load BD functions!');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
onStop () {
|
|
if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) {
|
|
BDFDB.unloadMessage(this);
|
|
return true;
|
|
}
|
|
else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
|
|
// begin of own functions
|
|
|
|
makeMoveable (div) {
|
|
div.removeEventListener("click", div.clickMovablePopups);
|
|
div.removeEventListener("mousedown", div.mousedownMovablePopups);
|
|
div.clickMovablePopups = e => {
|
|
if (this.dragging) {
|
|
e.stopPropagation();
|
|
e.preventDefault();
|
|
}
|
|
};
|
|
div.mousedownMovablePopups = e => {
|
|
if (!e.ctrlKey) return;
|
|
div.style.setProperty("position", "fixed", "important");
|
|
this.dragging = true;
|
|
var rects = BDFDB.getRects(div);
|
|
var transform = getComputedStyle(div,null).getPropertyValue("transform").replace(/[^0-9,-]/g,"").split(",");
|
|
var left = rects.left - (transform.length > 4 ? parseFloat(transform[4]) : 0);
|
|
var top = rects.top - (transform.length > 4 ? parseFloat(transform[5]) : 0);
|
|
var oldX = e.pageX;
|
|
var oldY = e.pageY;
|
|
var mouseup = e2 => {
|
|
BDFDB.removeLocalStyle("disableTextSelection");
|
|
document.removeEventListener("mouseup", mouseup);
|
|
document.removeEventListener("mousemove", mousemove);
|
|
setTimeout(() => {this.dragging = false},1);
|
|
};
|
|
var mousemove = e2 => {
|
|
left = left - (oldX - e2.pageX);
|
|
top = top - (oldY - e2.pageY);
|
|
oldX = e2.pageX;
|
|
oldY = e2.pageY;
|
|
div.style.setProperty("left", left + "px", "important");
|
|
div.style.setProperty("top", top + "px", "important");
|
|
|
|
};
|
|
document.addEventListener("mouseup", mouseup);
|
|
document.addEventListener("mousemove", mousemove);
|
|
};
|
|
div.addEventListener("click", div.clickMovablePopups);
|
|
div.addEventListener("mousedown", div.mousedownMovablePopups);
|
|
}
|
|
}
|
|
};
|