mirror of
https://github.com/Instadapp/chains.git
synced 2024-07-29 22:37:19 +00:00
573 lines
29 KiB
JavaScript
573 lines
29 KiB
JavaScript
/* Partytown 0.7.6 - MIT builder.io */
|
|
(window => {
|
|
const isPromise = v => "object" == typeof v && v && v.then;
|
|
const noop = () => {};
|
|
const len = obj => obj.length;
|
|
const getConstructorName = obj => {
|
|
var _a, _b, _c;
|
|
try {
|
|
const constructorName = null === (_a = null == obj ? void 0 : obj.constructor) || void 0 === _a ? void 0 : _a.name;
|
|
if (constructorName) {
|
|
return constructorName;
|
|
}
|
|
} catch (e) {}
|
|
try {
|
|
const zoneJsConstructorName = null === (_c = null === (_b = null == obj ? void 0 : obj.__zone_symbol__originalInstance) || void 0 === _b ? void 0 : _b.constructor) || void 0 === _c ? void 0 : _c.name;
|
|
if (zoneJsConstructorName) {
|
|
return zoneJsConstructorName;
|
|
}
|
|
} catch (e) {}
|
|
return "";
|
|
};
|
|
const startsWith = (str, val) => str.startsWith(val);
|
|
const isValidMemberName = memberName => !(startsWith(memberName, "webkit") || startsWith(memberName, "toJSON") || startsWith(memberName, "constructor") || startsWith(memberName, "toString") || startsWith(memberName, "_"));
|
|
const getNodeName = node => 11 === node.nodeType && node.host ? "#s" : node.nodeName;
|
|
const randomId = () => Math.round(Math.random() * Number.MAX_SAFE_INTEGER).toString(36);
|
|
const defineConstructorName = (Cstr, value) => ((obj, memberName, descriptor) => Object.defineProperty(obj, memberName, {
|
|
...descriptor,
|
|
configurable: true
|
|
}))(Cstr, "name", {
|
|
value: value
|
|
});
|
|
const htmlConstructorTags = {
|
|
Anchor: "a",
|
|
DList: "dl",
|
|
Image: "img",
|
|
OList: "ol",
|
|
Paragraph: "p",
|
|
Quote: "q",
|
|
TableCaption: "caption",
|
|
TableCell: "td",
|
|
TableCol: "colgroup",
|
|
TableRow: "tr",
|
|
TableSection: "tbody",
|
|
UList: "ul"
|
|
};
|
|
const svgConstructorTags = {
|
|
Graphics: "g",
|
|
SVG: "svg"
|
|
};
|
|
const InstanceIdKey = Symbol();
|
|
const CreatedKey = Symbol();
|
|
const instances = new Map;
|
|
const mainRefs = new Map;
|
|
const winCtxs = {};
|
|
const windowIds = new WeakMap;
|
|
const getAndSetInstanceId = (instance, instanceId) => {
|
|
if (instance) {
|
|
if (instanceId = windowIds.get(instance)) {
|
|
return instanceId;
|
|
}
|
|
(instanceId = instance[InstanceIdKey]) || setInstanceId(instance, instanceId = randomId());
|
|
return instanceId;
|
|
}
|
|
};
|
|
const getInstance = (winId, instanceId, win, doc, docId) => {
|
|
if ((win = winCtxs[winId]) && win.$window$) {
|
|
if (winId === instanceId) {
|
|
return win.$window$;
|
|
}
|
|
doc = win.$window$.document;
|
|
docId = instanceId.split(".").pop();
|
|
if ("d" === docId) {
|
|
return doc;
|
|
}
|
|
if ("e" === docId) {
|
|
return doc.documentElement;
|
|
}
|
|
if ("h" === docId) {
|
|
return doc.head;
|
|
}
|
|
if ("b" === docId) {
|
|
return doc.body;
|
|
}
|
|
}
|
|
return instances.get(instanceId);
|
|
};
|
|
const setInstanceId = (instance, instanceId, now) => {
|
|
if (instance) {
|
|
instances.set(instanceId, instance);
|
|
instance[InstanceIdKey] = instanceId;
|
|
instance[CreatedKey] = now = Date.now();
|
|
if (now > lastCleanup + 5e3) {
|
|
instances.forEach(((storedInstance, instanceId) => {
|
|
storedInstance[CreatedKey] < lastCleanup && storedInstance.nodeType && !storedInstance.isConnected && instances.delete(instanceId);
|
|
}));
|
|
lastCleanup = now;
|
|
}
|
|
}
|
|
};
|
|
let lastCleanup = 0;
|
|
const mainWindow = window.parent;
|
|
const docImpl = document.implementation.createHTMLDocument();
|
|
const config = mainWindow.partytown || {};
|
|
const libPath = (config.lib || "/~partytown/") + "debug/";
|
|
const logMain = msg => {
|
|
console.debug.apply(console, [ "%cMain 🌎", "background: #717171; color: white; padding: 2px 3px; border-radius: 2px; font-size: 0.8em;", msg ]);
|
|
};
|
|
const winIds = [];
|
|
const normalizedWinId = winId => {
|
|
winIds.includes(winId) || winIds.push(winId);
|
|
return winIds.indexOf(winId) + 1;
|
|
};
|
|
const defineCustomElement = (winId, worker, ceData) => {
|
|
const Cstr = defineConstructorName(class extends winCtxs[winId].$window$.HTMLElement {}, ceData[0]);
|
|
const ceCallbackMethods = "connectedCallback,disconnectedCallback,attributeChangedCallback,adoptedCallback".split(",");
|
|
ceCallbackMethods.map((callbackMethodName => Cstr.prototype[callbackMethodName] = function(...args) {
|
|
worker.postMessage([ 15, winId, getAndSetInstanceId(this), callbackMethodName, args ]);
|
|
}));
|
|
Cstr.observedAttributes = ceData[1];
|
|
return Cstr;
|
|
};
|
|
const serializeForWorker = ($winId$, value, added, type, cstrName) => void 0 !== value && (type = typeof value) ? "string" === type || "number" === type || "boolean" === type || null == value ? [ 0, value ] : "function" === type ? [ 6 ] : (added = added || new Set) && Array.isArray(value) ? added.has(value) ? [ 1, [] ] : added.add(value) && [ 1, value.map((v => serializeForWorker($winId$, v, added))) ] : "object" === type ? serializedValueIsError(value) ? [ 14, {
|
|
name: value.name,
|
|
message: value.message,
|
|
stack: value.stack
|
|
} ] : "" === (cstrName = getConstructorName(value)) ? [ 2, {} ] : "Window" === cstrName ? [ 3, [ $winId$, $winId$ ] ] : "HTMLCollection" === cstrName || "NodeList" === cstrName ? [ 7, Array.from(value).map((v => serializeForWorker($winId$, v, added)[1])) ] : cstrName.endsWith("Event") ? [ 5, serializeObjectForWorker($winId$, value, added) ] : "CSSRuleList" === cstrName ? [ 12, Array.from(value).map(serializeCssRuleForWorker) ] : startsWith(cstrName, "CSS") && cstrName.endsWith("Rule") ? [ 11, serializeCssRuleForWorker(value) ] : "CSSStyleDeclaration" === cstrName ? [ 13, serializeObjectForWorker($winId$, value, added) ] : "Attr" === cstrName ? [ 10, [ value.name, value.value ] ] : value.nodeType ? [ 3, [ $winId$, getAndSetInstanceId(value), getNodeName(value) ] ] : [ 2, serializeObjectForWorker($winId$, value, added, true, true) ] : void 0 : value;
|
|
const serializeObjectForWorker = (winId, obj, added, includeFunctions, includeEmptyStrings, serializedObj, propName, propValue) => {
|
|
serializedObj = {};
|
|
if (!added.has(obj)) {
|
|
added.add(obj);
|
|
for (propName in obj) {
|
|
if (isValidMemberName(propName)) {
|
|
propValue = "path" === propName && getConstructorName(obj).endsWith("Event") ? obj.composedPath() : obj[propName];
|
|
(includeFunctions || "function" != typeof propValue) && (includeEmptyStrings || "" !== propValue) && (serializedObj[propName] = serializeForWorker(winId, propValue, added));
|
|
}
|
|
}
|
|
}
|
|
return serializedObj;
|
|
};
|
|
const serializeCssRuleForWorker = cssRule => {
|
|
let obj = {};
|
|
let key;
|
|
for (key in cssRule) {
|
|
validCssRuleProps.includes(key) && (obj[key] = String(cssRule[key]));
|
|
}
|
|
return obj;
|
|
};
|
|
const serializedValueIsError = value => value instanceof window.top.Error;
|
|
const deserializeFromWorker = (worker, serializedTransfer, serializedType, serializedValue) => {
|
|
if (serializedTransfer) {
|
|
serializedType = serializedTransfer[0];
|
|
serializedValue = serializedTransfer[1];
|
|
return 0 === serializedType ? serializedValue : 4 === serializedType ? deserializeRefFromWorker(worker, serializedValue) : 1 === serializedType ? serializedValue.map((v => deserializeFromWorker(worker, v))) : 3 === serializedType ? getInstance(serializedValue[0], serializedValue[1]) : 5 === serializedType ? constructEvent(deserializeObjectFromWorker(worker, serializedValue)) : 2 === serializedType ? deserializeObjectFromWorker(worker, serializedValue) : 8 === serializedType ? serializedValue : 9 === serializedType ? new window[serializedTransfer[2]](serializedValue) : void 0;
|
|
}
|
|
};
|
|
const deserializeRefFromWorker = (worker, {$winId$: $winId$, $instanceId$: $instanceId$, $refId$: $refId$}, ref) => {
|
|
ref = mainRefs.get($refId$);
|
|
if (!ref) {
|
|
ref = function(...args) {
|
|
worker.postMessage([ 9, {
|
|
$winId$: $winId$,
|
|
$instanceId$: $instanceId$,
|
|
$refId$: $refId$,
|
|
$thisArg$: serializeForWorker($winId$, this),
|
|
$args$: serializeForWorker($winId$, args)
|
|
} ]);
|
|
};
|
|
mainRefs.set($refId$, ref);
|
|
}
|
|
return ref;
|
|
};
|
|
const constructEvent = eventProps => new ("detail" in eventProps ? CustomEvent : Event)(eventProps.type, eventProps);
|
|
const deserializeObjectFromWorker = (worker, serializedValue, obj, key) => {
|
|
obj = {};
|
|
for (key in serializedValue) {
|
|
obj[key] = deserializeFromWorker(worker, serializedValue[key]);
|
|
}
|
|
return obj;
|
|
};
|
|
const validCssRuleProps = "cssText,selectorText,href,media,namespaceURI,prefix,name,conditionText".split(",");
|
|
const mainAccessHandler = async (worker, accessReq) => {
|
|
let accessRsp = {
|
|
$msgId$: accessReq.$msgId$
|
|
};
|
|
let totalTasks = len(accessReq.$tasks$);
|
|
let i = 0;
|
|
let task;
|
|
let winId;
|
|
let applyPath;
|
|
let instance;
|
|
let rtnValue;
|
|
let isLast;
|
|
for (;i < totalTasks; i++) {
|
|
try {
|
|
isLast = i === totalTasks - 1;
|
|
task = accessReq.$tasks$[i];
|
|
winId = task.$winId$;
|
|
applyPath = task.$applyPath$;
|
|
!winCtxs[winId] && winId.startsWith("f_") && await new Promise((resolve => {
|
|
let check = 0;
|
|
let callback = () => {
|
|
winCtxs[winId] || check++ > 1e3 ? resolve() : requestAnimationFrame(callback);
|
|
};
|
|
callback();
|
|
}));
|
|
if (1 === applyPath[0] && applyPath[1] in winCtxs[winId].$window$) {
|
|
setInstanceId(new winCtxs[winId].$window$[applyPath[1]](...deserializeFromWorker(worker, applyPath[2])), task.$instanceId$);
|
|
} else {
|
|
instance = getInstance(winId, task.$instanceId$);
|
|
if (instance) {
|
|
rtnValue = applyToInstance(worker, winId, instance, applyPath, isLast, task.$groupedGetters$);
|
|
task.$assignInstanceId$ && ("string" == typeof task.$assignInstanceId$ ? setInstanceId(rtnValue, task.$assignInstanceId$) : winCtxs[task.$assignInstanceId$.$winId$] = {
|
|
$winId$: task.$assignInstanceId$.$winId$,
|
|
$window$: {
|
|
document: rtnValue
|
|
}
|
|
});
|
|
if (isPromise(rtnValue)) {
|
|
rtnValue = await rtnValue;
|
|
isLast && (accessRsp.$isPromise$ = true);
|
|
}
|
|
isLast && (accessRsp.$rtnValue$ = serializeForWorker(winId, rtnValue));
|
|
} else {
|
|
accessRsp.$error$ = `Error finding instance "${task.$instanceId$}" on window ${normalizedWinId(winId)}`;
|
|
console.error(accessRsp.$error$, task);
|
|
}
|
|
}
|
|
} catch (e) {
|
|
isLast ? accessRsp.$error$ = String(e.stack || e) : console.error(e);
|
|
}
|
|
}
|
|
return accessRsp;
|
|
};
|
|
const applyToInstance = (worker, winId, instance, applyPath, isLast, groupedGetters) => {
|
|
let i = 0;
|
|
let l = len(applyPath);
|
|
let next;
|
|
let current;
|
|
let previous;
|
|
let args;
|
|
let groupedRtnValues;
|
|
for (;i < l; i++) {
|
|
current = applyPath[i];
|
|
next = applyPath[i + 1];
|
|
previous = applyPath[i - 1];
|
|
try {
|
|
if (!Array.isArray(next)) {
|
|
if ("string" == typeof current || "number" == typeof current) {
|
|
if (i + 1 === l && groupedGetters) {
|
|
groupedRtnValues = {};
|
|
groupedGetters.map((propName => groupedRtnValues[propName] = instance[propName]));
|
|
return groupedRtnValues;
|
|
}
|
|
instance = instance[current];
|
|
} else {
|
|
if (0 === next) {
|
|
instance[previous] = deserializeFromWorker(worker, current);
|
|
return;
|
|
}
|
|
if ("function" == typeof instance[previous]) {
|
|
args = deserializeFromWorker(worker, current);
|
|
"define" === previous && "CustomElementRegistry" === getConstructorName(instance) && (args[1] = defineCustomElement(winId, worker, args[1]));
|
|
"insertRule" === previous && args[1] > len(instance.cssRules) && (args[1] = len(instance.cssRules));
|
|
instance = instance[previous].apply(instance, args);
|
|
if ("play" === previous) {
|
|
return Promise.resolve();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} catch (err) {
|
|
if (isLast) {
|
|
throw err;
|
|
}
|
|
console.debug("Non-blocking setter error:", err);
|
|
}
|
|
}
|
|
return instance;
|
|
};
|
|
const readNextScript = (worker, winCtx) => {
|
|
let $winId$ = winCtx.$winId$;
|
|
let win = winCtx.$window$;
|
|
let doc = win.document;
|
|
let scriptSelector = 'script[type="text/partytown"]:not([data-ptid]):not([data-pterror])';
|
|
let scriptElm;
|
|
let $instanceId$;
|
|
let scriptData;
|
|
if (doc && doc.body) {
|
|
scriptElm = doc.querySelector('script[type="text/partytown"]:not([data-ptid]):not([data-pterror]):not([async]):not([defer])');
|
|
scriptElm || (scriptElm = doc.querySelector(scriptSelector));
|
|
if (scriptElm) {
|
|
scriptElm.dataset.ptid = $instanceId$ = getAndSetInstanceId(scriptElm, $winId$);
|
|
scriptData = {
|
|
$winId$: $winId$,
|
|
$instanceId$: $instanceId$
|
|
};
|
|
if (scriptElm.src) {
|
|
scriptData.$url$ = scriptElm.src;
|
|
scriptData.$orgUrl$ = scriptElm.dataset.ptsrc || scriptElm.src;
|
|
} else {
|
|
scriptData.$content$ = scriptElm.innerHTML;
|
|
}
|
|
worker.postMessage([ 7, scriptData ]);
|
|
} else {
|
|
if (!winCtx.$isInitialized$) {
|
|
winCtx.$isInitialized$ = 1;
|
|
((worker, $winId$, win) => {
|
|
let queuedForwardCalls = win._ptf;
|
|
let forwards = (win.partytown || {}).forward || [];
|
|
let i;
|
|
let mainForwardFn;
|
|
let forwardCall = ($forward$, args) => worker.postMessage([ 10, {
|
|
$winId$: $winId$,
|
|
$forward$: $forward$,
|
|
$args$: serializeForWorker($winId$, Array.from(args))
|
|
} ]);
|
|
win._ptf = void 0;
|
|
forwards.map((forwardProps => {
|
|
mainForwardFn = win;
|
|
forwardProps.split(".").map(((_, i, arr) => {
|
|
mainForwardFn = mainForwardFn[arr[i]] = i + 1 < len(arr) ? mainForwardFn[arr[i]] || ("push" === arr[i + 1] ? [] : {}) : (...args) => forwardCall(arr, args);
|
|
}));
|
|
}));
|
|
if (queuedForwardCalls) {
|
|
for (i = 0; i < len(queuedForwardCalls); i += 2) {
|
|
forwardCall(queuedForwardCalls[i], queuedForwardCalls[i + 1]);
|
|
}
|
|
}
|
|
})(worker, $winId$, win);
|
|
doc.dispatchEvent(new CustomEvent("pt0"));
|
|
{
|
|
const winType = win === win.top ? "top" : "iframe";
|
|
logMain(`Executed ${winType} window ${normalizedWinId($winId$)} environment scripts in ${(performance.now() - winCtx.$startTime$).toFixed(1)}ms`);
|
|
}
|
|
}
|
|
worker.postMessage([ 8, $winId$ ]);
|
|
}
|
|
} else {
|
|
requestAnimationFrame((() => readNextScript(worker, winCtx)));
|
|
}
|
|
};
|
|
const registerWindow = (worker, $winId$, $window$) => {
|
|
if (!windowIds.has($window$)) {
|
|
windowIds.set($window$, $winId$);
|
|
const doc = $window$.document;
|
|
const history = $window$.history;
|
|
const $parentWinId$ = windowIds.get($window$.parent);
|
|
let initialised = false;
|
|
const onInitialisedQueue = [];
|
|
const onInitialised = callback => {
|
|
initialised ? callback() : onInitialisedQueue.push(callback);
|
|
};
|
|
const sendInitEnvData = () => {
|
|
worker.postMessage([ 5, {
|
|
$winId$: $winId$,
|
|
$parentWinId$: $parentWinId$,
|
|
$url$: doc.baseURI,
|
|
$visibilityState$: doc.visibilityState
|
|
} ]);
|
|
setTimeout((() => {
|
|
initialised = true;
|
|
onInitialisedQueue.forEach((callback => {
|
|
callback();
|
|
}));
|
|
}));
|
|
};
|
|
const pushState = history.pushState.bind(history);
|
|
const replaceState = history.replaceState.bind(history);
|
|
const onLocationChange = (type, state, newUrl, oldUrl) => () => {
|
|
setTimeout((() => {
|
|
worker.postMessage([ 13, {
|
|
$winId$: $winId$,
|
|
type: type,
|
|
state: state,
|
|
url: doc.baseURI,
|
|
newUrl: newUrl,
|
|
oldUrl: oldUrl
|
|
} ]);
|
|
}));
|
|
};
|
|
history.pushState = (state, _, newUrl) => {
|
|
pushState(state, _, newUrl);
|
|
onInitialised(onLocationChange(0, state, null == newUrl ? void 0 : newUrl.toString()));
|
|
};
|
|
history.replaceState = (state, _, newUrl) => {
|
|
replaceState(state, _, newUrl);
|
|
onInitialised(onLocationChange(1, state, null == newUrl ? void 0 : newUrl.toString()));
|
|
};
|
|
$window$.addEventListener("popstate", (event => {
|
|
onInitialised(onLocationChange(2, event.state));
|
|
}));
|
|
$window$.addEventListener("hashchange", (event => {
|
|
onInitialised(onLocationChange(3, {}, event.newURL, event.oldURL));
|
|
}));
|
|
$window$.addEventListener("ptupdate", (() => {
|
|
readNextScript(worker, winCtxs[$winId$]);
|
|
}));
|
|
doc.addEventListener("visibilitychange", (() => worker.postMessage([ 14, $winId$, doc.visibilityState ])));
|
|
winCtxs[$winId$] = {
|
|
$winId$: $winId$,
|
|
$window$: $window$
|
|
};
|
|
winCtxs[$winId$].$startTime$ = performance.now();
|
|
{
|
|
const winType = $winId$ === $parentWinId$ ? "top" : "iframe";
|
|
logMain(`Registered ${winType} window ${normalizedWinId($winId$)}`);
|
|
}
|
|
"complete" === doc.readyState ? sendInitEnvData() : $window$.addEventListener("load", sendInitEnvData);
|
|
}
|
|
};
|
|
const onMessageFromWebWorker = (worker, msg, winCtx) => {
|
|
if (4 === msg[0]) {
|
|
registerWindow(worker, randomId(), mainWindow);
|
|
} else {
|
|
winCtx = winCtxs[msg[1]];
|
|
winCtx && (7 === msg[0] ? requestAnimationFrame((() => readNextScript(worker, winCtx))) : 6 === msg[0] && ((worker, winCtx, instanceId, errorMsg, scriptElm) => {
|
|
scriptElm = winCtx.$window$.document.querySelector(`[data-ptid="${instanceId}"]`);
|
|
if (scriptElm) {
|
|
errorMsg ? scriptElm.dataset.pterror = errorMsg : scriptElm.type += "-x";
|
|
delete scriptElm.dataset.ptid;
|
|
}
|
|
readNextScript(worker, winCtx);
|
|
})(worker, winCtx, msg[2], msg[3]));
|
|
}
|
|
};
|
|
const readMainInterfaces = () => {
|
|
const elms = Object.getOwnPropertyNames(mainWindow).map((interfaceName => ((doc, interfaceName, r, tag) => {
|
|
r = interfaceName.match(/^(HTML|SVG)(.+)Element$/);
|
|
if (r) {
|
|
tag = r[2];
|
|
return "S" == interfaceName[0] ? doc.createElementNS("http://www.w3.org/2000/svg", svgConstructorTags[tag] || tag.slice(0, 2).toLowerCase() + tag.slice(2)) : doc.createElement(htmlConstructorTags[tag] || tag);
|
|
}
|
|
})(docImpl, interfaceName))).filter((elm => elm)).map((elm => [ elm ]));
|
|
return readImplementations(elms, []);
|
|
};
|
|
const cstrs = new Set([ "Object" ]);
|
|
const readImplementations = (impls, interfaces) => {
|
|
const cstrImpls = impls.filter((implData => implData[0])).map((implData => {
|
|
const impl = implData[0];
|
|
const interfaceType = implData[1];
|
|
const cstrName = getConstructorName(impl);
|
|
const CstrPrototype = mainWindow[cstrName].prototype;
|
|
return [ cstrName, CstrPrototype, impl, interfaceType ];
|
|
}));
|
|
cstrImpls.map((([cstrName, CstrPrototype, impl, intefaceType]) => readOwnImplementation(cstrs, interfaces, cstrName, CstrPrototype, impl, intefaceType)));
|
|
return interfaces;
|
|
};
|
|
const readImplementation = (cstrName, impl, memberName) => {
|
|
let interfaceMembers = [];
|
|
let interfaceInfo = [ cstrName, "Object", interfaceMembers ];
|
|
for (memberName in impl) {
|
|
readImplementationMember(interfaceMembers, impl, memberName);
|
|
}
|
|
return interfaceInfo;
|
|
};
|
|
const readOwnImplementation = (cstrs, interfaces, cstrName, CstrPrototype, impl, interfaceType) => {
|
|
if (!cstrs.has(cstrName)) {
|
|
cstrs.add(cstrName);
|
|
const SuperCstr = Object.getPrototypeOf(CstrPrototype);
|
|
const superCstrName = getConstructorName(SuperCstr);
|
|
const interfaceMembers = [];
|
|
const propDescriptors = Object.getOwnPropertyDescriptors(CstrPrototype);
|
|
readOwnImplementation(cstrs, interfaces, superCstrName, SuperCstr, impl, interfaceType);
|
|
for (const memberName in propDescriptors) {
|
|
readImplementationMember(interfaceMembers, impl, memberName);
|
|
}
|
|
interfaces.push([ cstrName, superCstrName, interfaceMembers, interfaceType, getNodeName(impl) ]);
|
|
}
|
|
};
|
|
const readImplementationMember = (interfaceMembers, implementation, memberName, value, memberType, cstrName) => {
|
|
try {
|
|
if (isValidMemberName(memberName) && isNaN(memberName[0]) && "all" !== memberName) {
|
|
value = implementation[memberName];
|
|
memberType = typeof value;
|
|
if ("function" === memberType) {
|
|
(String(value).includes("[native") || Object.getPrototypeOf(implementation)[memberName]) && interfaceMembers.push([ memberName, 5 ]);
|
|
} else if ("object" === memberType && null != value) {
|
|
cstrName = getConstructorName(value);
|
|
"Object" !== cstrName && self[cstrName] && interfaceMembers.push([ memberName, value.nodeType || cstrName ]);
|
|
} else {
|
|
"symbol" !== memberType && (memberName.toUpperCase() === memberName ? interfaceMembers.push([ memberName, 6, value ]) : interfaceMembers.push([ memberName, 6 ]));
|
|
}
|
|
}
|
|
} catch (e) {
|
|
console.warn(e);
|
|
}
|
|
};
|
|
const readStorage = storageName => {
|
|
let items = [];
|
|
let i = 0;
|
|
let l = len(mainWindow[storageName]);
|
|
let key;
|
|
for (;i < l; i++) {
|
|
key = mainWindow[storageName].key(i);
|
|
items.push([ key, mainWindow[storageName].getItem(key) ]);
|
|
}
|
|
return items;
|
|
};
|
|
const getGlobalConstructor = (mainWindow, cstrName) => void 0 !== mainWindow[cstrName] ? new mainWindow[cstrName](noop) : 0;
|
|
const addGlobalConstructorUsingPrototype = ($interfaces$, mainWindow, cstrName) => {
|
|
void 0 !== mainWindow[cstrName] && $interfaces$.push([ cstrName, "Object", Object.keys(mainWindow[cstrName].prototype).map((propName => [ propName, 6 ])), 12 ]);
|
|
};
|
|
let worker;
|
|
(async receiveMessage => {
|
|
const sharedDataBuffer = new SharedArrayBuffer(1073741824);
|
|
const sharedData = new Int32Array(sharedDataBuffer);
|
|
return (worker, msg) => {
|
|
const msgType = msg[0];
|
|
const accessReq = msg[1];
|
|
if (0 === msgType) {
|
|
const initData = (() => {
|
|
const elm = docImpl.createElement("i");
|
|
const textNode = docImpl.createTextNode("");
|
|
const comment = docImpl.createComment("");
|
|
const frag = docImpl.createDocumentFragment();
|
|
const shadowRoot = docImpl.createElement("p").attachShadow({
|
|
mode: "open"
|
|
});
|
|
const intersectionObserver = getGlobalConstructor(mainWindow, "IntersectionObserver");
|
|
const mutationObserver = getGlobalConstructor(mainWindow, "MutationObserver");
|
|
const resizeObserver = getGlobalConstructor(mainWindow, "ResizeObserver");
|
|
const perf = mainWindow.performance;
|
|
const screen = mainWindow.screen;
|
|
const impls = [ [ mainWindow.history ], [ perf ], [ perf.navigation ], [ perf.timing ], [ screen ], [ screen.orientation ], [ mainWindow.visualViewport ], [ intersectionObserver, 12 ], [ mutationObserver, 12 ], [ resizeObserver, 12 ], [ textNode ], [ comment ], [ frag ], [ shadowRoot ], [ elm ], [ elm.attributes ], [ elm.classList ], [ elm.dataset ], [ elm.style ], [ docImpl ], [ docImpl.doctype ] ];
|
|
const initialInterfaces = [ readImplementation("Window", mainWindow), readImplementation("Node", textNode) ];
|
|
const $config$ = JSON.stringify(config, ((k, v) => {
|
|
if ("function" == typeof v) {
|
|
v = String(v);
|
|
v.startsWith(k + "(") && (v = "function " + v);
|
|
}
|
|
return v;
|
|
}));
|
|
const initWebWorkerData = {
|
|
$config$: $config$,
|
|
$interfaces$: readImplementations(impls, initialInterfaces),
|
|
$libPath$: new URL(libPath, mainWindow.location) + "",
|
|
$origin$: origin,
|
|
$localStorage$: readStorage("localStorage"),
|
|
$sessionStorage$: readStorage("sessionStorage")
|
|
};
|
|
addGlobalConstructorUsingPrototype(initWebWorkerData.$interfaces$, mainWindow, "IntersectionObserverEntry");
|
|
return initWebWorkerData;
|
|
})();
|
|
initData.$sharedDataBuffer$ = sharedDataBuffer;
|
|
worker.postMessage([ 1, initData ]);
|
|
} else {
|
|
2 === msg[0] ? worker.postMessage([ 3, readMainInterfaces() ]) : 11 === msgType ? receiveMessage(accessReq, (accessRsp => {
|
|
const stringifiedData = JSON.stringify(accessRsp);
|
|
const stringifiedDataLength = stringifiedData.length;
|
|
for (let i = 0; i < stringifiedDataLength; i++) {
|
|
sharedData[i + 1] = stringifiedData.charCodeAt(i);
|
|
}
|
|
sharedData[0] = stringifiedDataLength;
|
|
Atomics.notify(sharedData, 0);
|
|
})) : onMessageFromWebWorker(worker, msg);
|
|
}
|
|
};
|
|
})(((accessReq, responseCallback) => mainAccessHandler(worker, accessReq).then(responseCallback))).then((onMessageHandler => {
|
|
if (onMessageHandler) {
|
|
worker = new Worker(libPath + "partytown-ww-atomics.js?v=0.7.6", {
|
|
name: "Partytown 🎉"
|
|
});
|
|
worker.onmessage = ev => {
|
|
const msg = ev.data;
|
|
12 === msg[0] ? mainAccessHandler(worker, msg[1]) : onMessageHandler(worker, msg);
|
|
};
|
|
logMain("Created Partytown web worker (0.7.6)");
|
|
worker.onerror = ev => console.error("Web Worker Error", ev);
|
|
mainWindow.addEventListener("pt1", (ev => registerWindow(worker, getAndSetInstanceId(ev.detail.frameElement), ev.detail)));
|
|
}
|
|
}));
|
|
})(window);
|