stuff
This commit is contained in:
parent
efc64b234d
commit
f9b5b626d8
|
@ -3258,8 +3258,8 @@
|
|||
catch (err) {template.innerHTML = html.replace(/>[\t\r\n]+<(?!pre)/g, "><");}
|
||||
if (template.content.childNodes.length == 1) return template.content.firstElementChild;
|
||||
else {
|
||||
var wrapper = document.createElement("span");
|
||||
var nodes = Array.from(template.content.childNodes);
|
||||
let wrapper = document.createElement("span");
|
||||
let nodes = Array.from(template.content.childNodes);
|
||||
while (nodes.length) wrapper.appendChild(nodes.shift());
|
||||
return wrapper;
|
||||
}
|
||||
|
@ -3352,29 +3352,31 @@
|
|||
}
|
||||
return 0;
|
||||
};
|
||||
BDFDB.DOMUtils.appendWebScript = function (path, container) {
|
||||
BDFDB.DOMUtils.appendWebScript = function (url, container) {
|
||||
if (!container && !document.head.querySelector("bd-head bd-scripts")) document.head.appendChild(BDFDB.DOMUtils.create(`<bd-head><bd-scripts></bd-scripts></bd-head>`));
|
||||
container = container || document.head.querySelector("bd-head bd-scripts") || document.head;
|
||||
container = Node.prototype.isPrototypeOf(container) ? container : document.head;
|
||||
BDFDB.DOMUtils.removeWebScript(path, container);
|
||||
container.appendChild(BDFDB.DOMUtils.create(`<script src="${path}"></script>`));
|
||||
BDFDB.DOMUtils.removeWebScript(url, container);
|
||||
let script = document.createElement("script");
|
||||
script.src = url;
|
||||
container.appendChild(script);
|
||||
};
|
||||
BDFDB.DOMUtils.removeWebScript = function (path, container) {
|
||||
BDFDB.DOMUtils.removeWebScript = function (url, container) {
|
||||
container = container || document.head.querySelector("bd-head bd-scripts") || document.head;
|
||||
container = Node.prototype.isPrototypeOf(container) ? container : document.head;
|
||||
BDFDB.DOMUtils.remove(container.querySelectorAll(`script[src="${path}"]`));
|
||||
BDFDB.DOMUtils.remove(container.querySelectorAll(`script[src="${url}"]`));
|
||||
};
|
||||
BDFDB.DOMUtils.appendWebStyle = function (path, container) {
|
||||
BDFDB.DOMUtils.appendWebStyle = function (url, container) {
|
||||
if (!container && !document.head.querySelector("bd-head bd-styles")) document.head.appendChild(BDFDB.DOMUtils.create(`<bd-head><bd-styles></bd-styles></bd-head>`));
|
||||
container = container || document.head.querySelector("bd-head bd-styles") || document.head;
|
||||
container = Node.prototype.isPrototypeOf(container) ? container : document.head;
|
||||
BDFDB.DOMUtils.removeWebStyle(path, container);
|
||||
container.appendChild(BDFDB.DOMUtils.create(`<link type="text/css" rel="Stylesheet" href="${path}"></link>`));
|
||||
BDFDB.DOMUtils.removeWebStyle(url, container);
|
||||
container.appendChild(BDFDB.DOMUtils.create(`<link type="text/css" rel="Stylesheet" href="${url}"></link>`));
|
||||
};
|
||||
BDFDB.DOMUtils.removeWebStyle = function (path, container) {
|
||||
BDFDB.DOMUtils.removeWebStyle = function (url, container) {
|
||||
container = container || document.head.querySelector("bd-head bd-styles") || document.head;
|
||||
container = Node.prototype.isPrototypeOf(container) ? container : document.head;
|
||||
BDFDB.DOMUtils.remove(container.querySelectorAll(`link[href="${path}"]`));
|
||||
BDFDB.DOMUtils.remove(container.querySelectorAll(`link[href="${url}"]`));
|
||||
};
|
||||
BDFDB.DOMUtils.appendLocalStyle = function (id, css, container) {
|
||||
if (!container && !document.head.querySelector("bd-head bd-styles")) document.head.appendChild(BDFDB.DOMUtils.create(`<bd-head><bd-styles></bd-styles></bd-head>`));
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,15 +1,16 @@
|
|||
console.log("this is a test");
|
||||
|
||||
window.global = window;
|
||||
if (!window.BDFDB) {
|
||||
window.global = window;
|
||||
|
||||
window.onload = function () {
|
||||
window.onload = function () {
|
||||
window.parent.postMessage({origin:"DiscordPreview",reason:"OnLoad"},"*");
|
||||
};
|
||||
window.onkeyup = function (e) {
|
||||
var which = e.which;
|
||||
};
|
||||
window.onkeyup = function (e) {
|
||||
let which = e.which;
|
||||
window.parent.postMessage({origin:"DiscordPreview",reason:"KeyUp",which},"*");
|
||||
};
|
||||
window.onmessage = function (e) {
|
||||
};
|
||||
window.onmessage = function (e) {
|
||||
if (typeof e.data === "object" && (e.data.origin == "PluginRepo" || e.data.origin == "ThemeRepo")) {
|
||||
switch (e.data.reason) {
|
||||
case "OnLoad":
|
||||
|
@ -78,11 +79,11 @@ window.onmessage = function (e) {
|
|||
break;
|
||||
}
|
||||
}
|
||||
};
|
||||
window.require = function () {
|
||||
};
|
||||
window.require = function () {
|
||||
return _ => {};
|
||||
};
|
||||
window.getString = function (obj) {
|
||||
};
|
||||
window.getString = function (obj) {
|
||||
var string = "";
|
||||
if (typeof obj == "string") string = obj;
|
||||
else if (obj && obj.props) {
|
||||
|
@ -90,11 +91,11 @@ window.getString = function (obj) {
|
|||
else if (Array.isArray(obj.props.children)) for (let c of obj.props.children) string += typeof c == "string" ? c : getString(c);
|
||||
}
|
||||
return string;
|
||||
};
|
||||
window.webpackJsonp = function () {
|
||||
};
|
||||
window.webpackJsonp = function () {
|
||||
return {default:{m:{},c:{}}};
|
||||
};
|
||||
window.WebModulesFind = function (filter) {
|
||||
};
|
||||
window.WebModulesFind = function (filter) {
|
||||
const id = "PluginRepo-WebModules";
|
||||
const req = typeof(window.webpackJsonp) == "function" ? window.webpackJsonp([], {[id]: (module, exports, req) => exports.default = req}, [id]).default : window.webpackJsonp.push([[], {[id]: (module, exports, req) => module.exports = req}, [[id]]]);
|
||||
delete req.m[id];
|
||||
|
@ -106,8 +107,8 @@ window.WebModulesFind = function (filter) {
|
|||
if (module && filter(module)) return module;
|
||||
}
|
||||
}
|
||||
};
|
||||
window.WebModulesFindByProperties = function (properties) {
|
||||
};
|
||||
window.WebModulesFindByProperties = function (properties) {
|
||||
properties = Array.isArray(properties) ? properties : Array.from(arguments);
|
||||
var module = WebModulesFind(module => properties.every(prop => module[prop] !== undefined));
|
||||
if (!module) {
|
||||
|
@ -115,16 +116,16 @@ window.WebModulesFindByProperties = function (properties) {
|
|||
for (let property of properties) module[property] = property;
|
||||
}
|
||||
return module;
|
||||
};
|
||||
window.WebModulesFindByName = function (name) {
|
||||
};
|
||||
window.WebModulesFindByName = function (name) {
|
||||
return WebModulesFind(module => module.displayName === name) || "";
|
||||
};
|
||||
window.disCN = new Proxy({}, {
|
||||
};
|
||||
window.disCN = new Proxy({}, {
|
||||
get: function (list, item) {
|
||||
return window.getDiscordClass(item).replace('#', '');
|
||||
}
|
||||
});
|
||||
window.getDiscordClass = function (item) {
|
||||
});
|
||||
window.getDiscordClass = function (item) {
|
||||
var classname = "Preview_undefined";
|
||||
if (window.DiscordClasses === undefined || window.DiscordClassModules === undefined) return classname;
|
||||
else if (window.DiscordClasses[item] === undefined) {
|
||||
|
@ -144,19 +145,20 @@ window.getDiscordClass = function (item) {
|
|||
return classname;
|
||||
}
|
||||
else return classname = window.DiscordClassModules[window.DiscordClasses[item][0]][window.DiscordClasses[item][1]];
|
||||
};
|
||||
window.BDV2 = {};
|
||||
window.BDV2.react = window.React;
|
||||
window.BDV2.reactDom = window.ReactDOM;
|
||||
window.BDV2.WebpackModules = {};
|
||||
window.BDV2.WebpackModules.find = window.WebModulesFind;
|
||||
window.BDV2.WebpackModules.findByUniqueProperties = window.WebModulesFindByProperties;
|
||||
window.BDV2.WebpackModules.findByDisplayName = window.WebModulesFindByName;
|
||||
window.BdApi = {};
|
||||
window.BdApi.getData = _ => {return {};};
|
||||
window.BdApi.loadData = _ => {return {};};
|
||||
window.BdApi.saveData = _ => {};
|
||||
window.BdApi.React = window.React;
|
||||
window.BdApi.ReactDOM = window.ReactDOM;
|
||||
window.BdApi.findModule = window.WebModulesFind;
|
||||
window.BdApi.findModuleByProps = window.WebModulesFindByProperties;
|
||||
};
|
||||
window.BDV2 = {};
|
||||
window.BDV2.react = window.React;
|
||||
window.BDV2.reactDom = window.ReactDOM;
|
||||
window.BDV2.WebpackModules = {};
|
||||
window.BDV2.WebpackModules.find = window.WebModulesFind;
|
||||
window.BDV2.WebpackModules.findByUniqueProperties = window.WebModulesFindByProperties;
|
||||
window.BDV2.WebpackModules.findByDisplayName = window.WebModulesFindByName;
|
||||
window.BdApi = {};
|
||||
window.BdApi.getData = _ => {return {};};
|
||||
window.BdApi.loadData = _ => {return {};};
|
||||
window.BdApi.saveData = _ => {};
|
||||
window.BdApi.React = window.React;
|
||||
window.BdApi.ReactDOM = window.ReactDOM;
|
||||
window.BdApi.findModule = window.WebModulesFind;
|
||||
window.BdApi.findModuleByProps = window.WebModulesFindByProperties;
|
||||
}
|
Loading…
Reference in New Issue