generated from dwd/boilarplate-astro-tailwind
Akademy Landing MPA
This commit is contained in:
599
public/~partytown/debug/partytown-sandbox-sw.js
Normal file
599
public/~partytown/debug/partytown-sandbox-sw.js
Normal file
@@ -0,0 +1,599 @@
|
||||
/* Partytown 0.10.2 - 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 defaultPartytownForwardPropertySettings = {
|
||||
preserveBehavior: false
|
||||
};
|
||||
const arrayMethods = Object.freeze((obj => {
|
||||
const properties = new Set;
|
||||
let currentObj = obj;
|
||||
do {
|
||||
Object.getOwnPropertyNames(currentObj).forEach((item => {
|
||||
"function" == typeof currentObj[item] && properties.add(item);
|
||||
}));
|
||||
} while ((currentObj = Object.getPrototypeOf(currentObj)) !== Object.prototype);
|
||||
return Array.from(properties);
|
||||
})([]));
|
||||
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, prevInstanceId) => 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), prevInstanceId ] ] : [ 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;
|
||||
};
|
||||
let ErrorObject = null;
|
||||
const serializedValueIsError = value => {
|
||||
var _a;
|
||||
ErrorObject = (null === (_a = window.top) || void 0 === _a ? void 0 : _a.Error) || ErrorObject;
|
||||
return value instanceof ErrorObject;
|
||||
};
|
||||
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, void 0, void 0, void 0, task.$instanceId$));
|
||||
} 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 mainForwardTrigger = (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 => {
|
||||
const [property, {preserveBehavior: preserveBehavior}] = (propertyOrPropertyWithSettings => {
|
||||
if ("string" == typeof propertyOrPropertyWithSettings) {
|
||||
return [ propertyOrPropertyWithSettings, defaultPartytownForwardPropertySettings ];
|
||||
}
|
||||
const [property, settings = defaultPartytownForwardPropertySettings] = propertyOrPropertyWithSettings;
|
||||
return [ property, {
|
||||
...defaultPartytownForwardPropertySettings,
|
||||
...settings
|
||||
} ];
|
||||
})(forwardProps);
|
||||
mainForwardFn = win;
|
||||
property.split(".").map(((_, i, arr) => {
|
||||
mainForwardFn = mainForwardFn[arr[i]] = i + 1 < len(arr) ? mainForwardFn[arr[i]] || (propertyName => arrayMethods.includes(propertyName) ? [] : {})(arr[i + 1]) : (() => {
|
||||
let originalFunction = null;
|
||||
if (preserveBehavior) {
|
||||
const {methodOrProperty: methodOrProperty, thisObject: thisObject} = ((window, properties) => {
|
||||
let thisObject = window;
|
||||
for (let i = 0; i < properties.length - 1; i += 1) {
|
||||
thisObject = thisObject[properties[i]];
|
||||
}
|
||||
return {
|
||||
thisObject: thisObject,
|
||||
methodOrProperty: properties.length > 0 ? thisObject[properties[properties.length - 1]] : void 0
|
||||
};
|
||||
})(win, arr);
|
||||
"function" == typeof methodOrProperty && (originalFunction = (...args) => methodOrProperty.apply(thisObject, ...args));
|
||||
}
|
||||
return (...args) => {
|
||||
let returnValue;
|
||||
originalFunction && (returnValue = originalFunction(args));
|
||||
forwardCall(arr, args);
|
||||
return returnValue;
|
||||
};
|
||||
})();
|
||||
}));
|
||||
}));
|
||||
if (queuedForwardCalls) {
|
||||
for (i = 0; i < len(queuedForwardCalls); i += 2) {
|
||||
forwardCall(queuedForwardCalls[i], queuedForwardCalls[i + 1]);
|
||||
}
|
||||
}
|
||||
};
|
||||
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 blockingScriptSelector = scriptSelector + ":not([async]):not([defer])";
|
||||
let scriptElm;
|
||||
let $instanceId$;
|
||||
let scriptData;
|
||||
if (doc && doc.body) {
|
||||
scriptElm = doc.querySelector(blockingScriptSelector);
|
||||
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;
|
||||
mainForwardTrigger(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) => () => {
|
||||
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 readMainPlatform = () => {
|
||||
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$ = function(config) {
|
||||
return JSON.stringify(config, ((key, value) => {
|
||||
if ("function" == typeof value) {
|
||||
value = String(value);
|
||||
value.startsWith(key + "(") && (value = "function " + value);
|
||||
}
|
||||
"loadScriptsOnMainThread" === key && (value = value.map((scriptUrl => Array.isArray(scriptUrl) ? scriptUrl : [ "string" == typeof scriptUrl ? "string" : "regexp", "string" == typeof scriptUrl ? scriptUrl : scriptUrl.source ])));
|
||||
return value;
|
||||
}));
|
||||
}(config);
|
||||
const initWebWorkerData = {
|
||||
$config$: $config$,
|
||||
$interfaces$: readImplementations(impls, initialInterfaces),
|
||||
$libPath$: new URL(libPath, mainWindow.location) + "",
|
||||
$origin$: origin,
|
||||
$tabId$: mainWindow._pttab
|
||||
};
|
||||
addGlobalConstructorUsingPrototype(initWebWorkerData.$interfaces$, mainWindow, "IntersectionObserverEntry");
|
||||
return initWebWorkerData;
|
||||
};
|
||||
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 readImplementations = (impls, interfaces) => {
|
||||
const cstrs = new Set([ "Object" ]);
|
||||
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 && "Function" !== 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 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;
|
||||
(receiveMessage => {
|
||||
const swContainer = window.navigator.serviceWorker;
|
||||
return swContainer.getRegistration().then((swRegistration => {
|
||||
swContainer.addEventListener("message", (ev => receiveMessage(ev.data, (accessRsp => swRegistration.active && swRegistration.active.postMessage(accessRsp)))));
|
||||
return (worker, msg) => {
|
||||
0 === msg[0] ? worker.postMessage([ 1, readMainPlatform() ]) : 2 === msg[0] ? worker.postMessage([ 3, readMainInterfaces() ]) : onMessageFromWebWorker(worker, msg);
|
||||
};
|
||||
}));
|
||||
})(((accessReq, responseCallback) => mainAccessHandler(worker, accessReq).then(responseCallback))).then((onMessageHandler => {
|
||||
if (onMessageHandler) {
|
||||
worker = new Worker(libPath + "partytown-ww-sw.js?v=0.10.2", {
|
||||
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.10.2)");
|
||||
worker.onerror = ev => console.error("Web Worker Error", ev);
|
||||
mainWindow.addEventListener("pt1", (ev => registerWindow(worker, getAndSetInstanceId(ev.detail.frameElement), ev.detail)));
|
||||
}
|
||||
}));
|
||||
})(window);
|
||||
Reference in New Issue
Block a user