appscms-tools-theme 3.1.8 → 3.1.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1876 @@
1
+ /* Partytown 0.7.5 - MIT builder.io */
2
+ (self => {
3
+ const WinIdKey = Symbol();
4
+ const InstanceIdKey = Symbol();
5
+ const InstanceDataKey = Symbol();
6
+ const NamespaceKey = Symbol();
7
+ const ApplyPathKey = Symbol();
8
+ const InstanceStateKey = Symbol();
9
+ const HookContinue = Symbol();
10
+ const HookPrevent = Symbol();
11
+ const webWorkerInstances = new Map;
12
+ const webWorkerRefsByRefId = {};
13
+ const webWorkerRefIdsByRef = new WeakMap;
14
+ const postMessages = [];
15
+ const webWorkerCtx = {};
16
+ const webWorkerlocalStorage = new Map;
17
+ const webWorkerSessionStorage = new Map;
18
+ const environments = {};
19
+ const cachedDimensions = new Map;
20
+ const cachedStructure = new Map;
21
+ const commaSplit = str => str.split(",");
22
+ const partytownLibUrl = url => {
23
+ url = webWorkerCtx.$libPath$ + url;
24
+ if (new URL(url).origin != location.origin) {
25
+ throw "Invalid " + url;
26
+ }
27
+ return url;
28
+ };
29
+ const getterDimensionPropNames = commaSplit("clientWidth,clientHeight,clientTop,clientLeft,innerWidth,innerHeight,offsetWidth,offsetHeight,offsetTop,offsetLeft,outerWidth,outerHeight,pageXOffset,pageYOffset,scrollWidth,scrollHeight,scrollTop,scrollLeft");
30
+ const elementStructurePropNames = commaSplit("childElementCount,children,firstElementChild,lastElementChild,nextElementSibling,previousElementSibling");
31
+ const structureChangingMethodNames = commaSplit("insertBefore,remove,removeChild,replaceChild");
32
+ const dimensionChangingSetterNames = commaSplit("className,width,height,hidden,innerHTML,innerText,textContent");
33
+ const dimensionChangingMethodNames = commaSplit("setAttribute,setAttributeNS,setProperty");
34
+ const eventTargetMethods = commaSplit("addEventListener,dispatchEvent,removeEventListener");
35
+ const nonBlockingMethods = eventTargetMethods.concat(dimensionChangingMethodNames, commaSplit("add,observe,remove,unobserve"));
36
+ const IS_TAG_REG = /^[A-Z_]([A-Z0-9-]*[A-Z0-9])?$/;
37
+ const noop = () => {};
38
+ const len = obj => obj.length;
39
+ const getConstructorName = obj => {
40
+ var _a, _b, _c;
41
+ try {
42
+ const constructorName = null === (_a = null == obj ? void 0 : obj.constructor) || void 0 === _a ? void 0 : _a.name;
43
+ if (constructorName) {
44
+ return constructorName;
45
+ }
46
+ } catch (e) {}
47
+ try {
48
+ 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;
49
+ if (zoneJsConstructorName) {
50
+ return zoneJsConstructorName;
51
+ }
52
+ } catch (e) {}
53
+ return "";
54
+ };
55
+ const EMPTY_ARRAY = [];
56
+ const randomId = () => Math.round(Math.random() * Number.MAX_SAFE_INTEGER).toString(36);
57
+ const SCRIPT_TYPE = "text/partytown";
58
+ const defineProperty = (obj, memberName, descriptor) => Object.defineProperty(obj, memberName, {
59
+ ...descriptor,
60
+ configurable: true
61
+ });
62
+ const defineConstructorName = (Cstr, value) => defineProperty(Cstr, "name", {
63
+ value: value
64
+ });
65
+ const definePrototypeProperty = (Cstr, memberName, descriptor) => defineProperty(Cstr.prototype, memberName, descriptor);
66
+ const definePrototypePropertyDescriptor = (Cstr, propertyDescriptorMap) => Object.defineProperties(Cstr.prototype, propertyDescriptorMap);
67
+ const definePrototypeValue = (Cstr, memberName, value) => definePrototypeProperty(Cstr, memberName, {
68
+ value: value,
69
+ writable: true
70
+ });
71
+ const hasInstanceStateValue = (instance, stateKey) => stateKey in instance[InstanceStateKey];
72
+ const getInstanceStateValue = (instance, stateKey) => instance[InstanceStateKey][stateKey];
73
+ const setInstanceStateValue = (instance, stateKey, stateValue) => instance[InstanceStateKey][stateKey] = stateValue;
74
+ const setWorkerRef = (ref, refId) => {
75
+ if (!(refId = webWorkerRefIdsByRef.get(ref))) {
76
+ webWorkerRefIdsByRef.set(ref, refId = randomId());
77
+ webWorkerRefsByRefId[refId] = ref;
78
+ }
79
+ return refId;
80
+ };
81
+ const getOrCreateNodeInstance = (winId, instanceId, nodeName, namespace, instance) => {
82
+ instance = webWorkerInstances.get(instanceId);
83
+ if (!instance && nodeName && environments[winId]) {
84
+ instance = environments[winId].$createNode$(nodeName, instanceId, namespace);
85
+ webWorkerInstances.set(instanceId, instance);
86
+ }
87
+ return instance;
88
+ };
89
+ const definePrototypeNodeType = (Cstr, nodeType) => definePrototypeValue(Cstr, "nodeType", nodeType);
90
+ const cachedTreeProps = (Cstr, treeProps) => treeProps.map((propName => definePrototypeProperty(Cstr, propName, {
91
+ get() {
92
+ let cacheKey = getInstanceCacheKey(this, propName);
93
+ let result = cachedStructure.get(cacheKey);
94
+ if (!result) {
95
+ result = getter(this, [ propName ]);
96
+ cachedStructure.set(cacheKey, result);
97
+ }
98
+ return result;
99
+ }
100
+ })));
101
+ const getInstanceCacheKey = (instance, memberName, args) => [ instance[WinIdKey], instance[InstanceIdKey], memberName, ...(args || EMPTY_ARRAY).map((arg => String(arg && arg[WinIdKey] ? arg[InstanceIdKey] : arg))) ].join(".");
102
+ const cachedProps = (Cstr, propNames) => commaSplit(propNames).map((propName => definePrototypeProperty(Cstr, propName, {
103
+ get() {
104
+ hasInstanceStateValue(this, propName) || setInstanceStateValue(this, propName, getter(this, [ propName ]));
105
+ return getInstanceStateValue(this, propName);
106
+ },
107
+ set(val) {
108
+ getInstanceStateValue(this, propName) !== val && setter(this, [ propName ], val);
109
+ setInstanceStateValue(this, propName, val);
110
+ }
111
+ })));
112
+ const cachedDimensionProps = Cstr => getterDimensionPropNames.map((propName => definePrototypeProperty(Cstr, propName, {
113
+ get() {
114
+ const dimension = cachedDimensions.get(getInstanceCacheKey(this, propName));
115
+ if ("number" == typeof dimension) {
116
+ return dimension;
117
+ }
118
+ const groupedDimensions = getter(this, [ propName ], getterDimensionPropNames);
119
+ if (groupedDimensions && "object" == typeof groupedDimensions) {
120
+ Object.entries(groupedDimensions).map((([dimensionPropName, value]) => cachedDimensions.set(getInstanceCacheKey(this, dimensionPropName), value)));
121
+ return groupedDimensions[propName];
122
+ }
123
+ return groupedDimensions;
124
+ }
125
+ })));
126
+ const cachedDimensionMethods = (Cstr, dimensionMethodNames) => dimensionMethodNames.map((methodName => {
127
+ Cstr.prototype[methodName] = function(...args) {
128
+ let cacheKey = getInstanceCacheKey(this, methodName, args);
129
+ let dimensions = cachedDimensions.get(cacheKey);
130
+ if (!dimensions) {
131
+ dimensions = callMethod(this, [ methodName ], args);
132
+ cachedDimensions.set(cacheKey, dimensions);
133
+ }
134
+ return dimensions;
135
+ };
136
+ }));
137
+ const serializeForMain = ($winId$, $instanceId$, value, added, type) => void 0 !== value && (type = typeof value) ? "string" === type || "boolean" === type || "number" === type || null == value ? [ 0, value ] : "function" === type ? [ 4, {
138
+ $winId$: $winId$,
139
+ $instanceId$: $instanceId$,
140
+ $refId$: setWorkerRef(value)
141
+ } ] : (added = added || new Set) && Array.isArray(value) ? added.has(value) ? [ 1, [] ] : added.add(value) && [ 1, value.map((v => serializeForMain($winId$, $instanceId$, v, added))) ] : "object" === type ? value[InstanceIdKey] ? [ 3, [ value[WinIdKey], value[InstanceIdKey] ] ] : value instanceof Event ? [ 5, serializeObjectForMain($winId$, $instanceId$, value, false, added) ] : supportsTrustedHTML && value instanceof TrustedHTML ? [ 0, value.toString() ] : value instanceof ArrayBuffer ? [ 8, value ] : ArrayBuffer.isView(value) ? [ 9, value.buffer, getConstructorName(value) ] : [ 2, serializeObjectForMain($winId$, $instanceId$, value, true, added) ] : void 0 : value;
142
+ const supportsTrustedHTML = "undefined" != typeof TrustedHTML;
143
+ const serializeObjectForMain = (winId, instanceId, obj, includeFunctions, added, serializedObj, propName, propValue) => {
144
+ serializedObj = {};
145
+ if (!added.has(obj)) {
146
+ added.add(obj);
147
+ for (propName in obj) {
148
+ propValue = obj[propName];
149
+ (includeFunctions || "function" != typeof propValue) && (serializedObj[propName] = serializeForMain(winId, instanceId, propValue, added));
150
+ }
151
+ }
152
+ return serializedObj;
153
+ };
154
+ const serializeInstanceForMain = (instance, value) => instance ? serializeForMain(instance[WinIdKey], instance[InstanceIdKey], value) : [ 0, value ];
155
+ const deserializeFromMain = (winId, instanceId, applyPath, serializedValueTransfer, serializedType, serializedValue, obj, key) => {
156
+ if (serializedValueTransfer) {
157
+ serializedType = serializedValueTransfer[0];
158
+ serializedValue = serializedValueTransfer[1];
159
+ if (0 === serializedType || 11 === serializedType || 12 === serializedType) {
160
+ return serializedValue;
161
+ }
162
+ if (4 === serializedType) {
163
+ return deserializeRefFromMain(applyPath, serializedValue);
164
+ }
165
+ if (6 === serializedType) {
166
+ return winId && applyPath.length > 0 ? (...args) => callMethod(environments[winId].$window$, applyPath, args, 1) : noop;
167
+ }
168
+ if (3 === serializedType) {
169
+ return getOrCreateSerializedInstance(serializedValue);
170
+ }
171
+ if (7 === serializedType) {
172
+ return new NodeList(serializedValue.map(getOrCreateSerializedInstance));
173
+ }
174
+ if (10 === serializedType) {
175
+ return new Attr(serializedValue);
176
+ }
177
+ if (1 === serializedType) {
178
+ return serializedValue.map((v => deserializeFromMain(winId, instanceId, applyPath, v)));
179
+ }
180
+ if (14 === serializedType) {
181
+ return new CustomError(serializedValue);
182
+ }
183
+ obj = {};
184
+ for (key in serializedValue) {
185
+ obj[key] = deserializeFromMain(winId, instanceId, [ ...applyPath, key ], serializedValue[key]);
186
+ }
187
+ if (13 === serializedType) {
188
+ return new environments[winId].$window$.CSSStyleDeclaration(winId, instanceId, applyPath, obj);
189
+ }
190
+ if (5 === serializedType) {
191
+ if ("message" === obj.type && obj.origin) {
192
+ let postMessageKey = JSON.stringify(obj.data);
193
+ let postMessageData = postMessages.find((pm => pm.$data$ === postMessageKey));
194
+ let env;
195
+ if (postMessageData) {
196
+ env = environments[postMessageData.$winId$];
197
+ if (env) {
198
+ obj.source = env.$window$;
199
+ obj.origin = env.$location$.origin;
200
+ }
201
+ }
202
+ }
203
+ return new Proxy(new Event(obj.type, obj), {
204
+ get: (target, propName) => propName in obj ? obj[propName] : "function" == typeof target[String(propName)] ? noop : target[String(propName)]
205
+ });
206
+ }
207
+ if (2 === serializedType) {
208
+ return obj;
209
+ }
210
+ }
211
+ };
212
+ const getOrCreateSerializedInstance = ([winId, instanceId, nodeName]) => instanceId === winId && environments[winId] ? environments[winId].$window$ : getOrCreateNodeInstance(winId, instanceId, nodeName);
213
+ const deserializeRefFromMain = (applyPath, {$winId$: $winId$, $instanceId$: $instanceId$, $nodeName$: $nodeName$, $refId$: $refId$}) => {
214
+ webWorkerRefsByRefId[$refId$] || webWorkerRefIdsByRef.set(webWorkerRefsByRefId[$refId$] = function(...args) {
215
+ const instance = getOrCreateNodeInstance($winId$, $instanceId$, $nodeName$);
216
+ return callMethod(instance, applyPath, args);
217
+ }, $refId$);
218
+ return webWorkerRefsByRefId[$refId$];
219
+ };
220
+ class CustomError extends Error {
221
+ constructor(errorObject) {
222
+ super(errorObject.message);
223
+ this.name = errorObject.name;
224
+ this.message = errorObject.message;
225
+ this.stack = errorObject.stack;
226
+ }
227
+ }
228
+ class NodeList {
229
+ constructor(nodes) {
230
+ (this._ = nodes).map(((node, index) => this[index] = node));
231
+ }
232
+ entries() {
233
+ return this._.entries();
234
+ }
235
+ forEach(cb, thisArg) {
236
+ this._.map(cb, thisArg);
237
+ }
238
+ item(index) {
239
+ return this[index];
240
+ }
241
+ keys() {
242
+ return this._.keys();
243
+ }
244
+ get length() {
245
+ return len(this._);
246
+ }
247
+ values() {
248
+ return this._.values();
249
+ }
250
+ [Symbol.iterator]() {
251
+ return this._[Symbol.iterator]();
252
+ }
253
+ }
254
+ const Attr = class {
255
+ constructor(serializedAttr) {
256
+ this.name = serializedAttr[0];
257
+ this.value = serializedAttr[1];
258
+ }
259
+ get nodeName() {
260
+ return this.name;
261
+ }
262
+ get nodeType() {
263
+ return 2;
264
+ }
265
+ };
266
+ const warnCrossOrgin = (apiType, apiName, env) => console.warn(`Partytown unable to ${apiType} cross-origin ${apiName}: ` + env.$location$);
267
+ const logWorker = (msg, winId) => {
268
+ try {
269
+ const config = webWorkerCtx.$config$;
270
+ if (config.logStackTraces) {
271
+ const frames = (new Error).stack.split("\n");
272
+ const i = frames.findIndex((f => f.includes("logWorker")));
273
+ msg += "\n" + frames.slice(i + 1).join("\n");
274
+ }
275
+ let prefix;
276
+ let color;
277
+ if (winId) {
278
+ prefix = `Worker (${normalizedWinId(winId)}) 🎉`;
279
+ color = winColor(winId);
280
+ } else {
281
+ prefix = self.name;
282
+ color = "#9844bf";
283
+ }
284
+ if (webWorkerCtx.lastLog !== msg) {
285
+ webWorkerCtx.lastLog = msg;
286
+ console.debug.apply(console, [ `%c${prefix}`, `background: ${color}; color: white; padding: 2px 3px; border-radius: 2px; font-size: 0.8em;`, msg ]);
287
+ }
288
+ } catch (e) {}
289
+ };
290
+ const winIds = [];
291
+ const normalizedWinId = winId => {
292
+ winIds.includes(winId) || winIds.push(winId);
293
+ return winIds.indexOf(winId) + 1;
294
+ };
295
+ const winColor = winId => {
296
+ const colors = [ "#00309e", "#ea3655", "#eea727" ];
297
+ const index = normalizedWinId(winId) - 1;
298
+ return colors[index] || colors[colors.length - 1];
299
+ };
300
+ const getTargetProp = (target, applyPath) => {
301
+ let n = "";
302
+ if (target) {
303
+ const cstrName = getConstructorName(target);
304
+ if ("Window" === cstrName) {
305
+ n = "";
306
+ } else if ("string" == typeof target[InstanceDataKey]) {
307
+ let nodeName = target[InstanceDataKey];
308
+ n = "#text" === nodeName ? "textNode." : "#comment" === nodeName ? "commentNode." : "#document" === nodeName ? "document." : "html" === nodeName ? "doctype." : nodeName.toLowerCase() + ".";
309
+ } else {
310
+ n = "nodeType" in target && 2 === target.nodeType ? "attributes." : "CanvasRenderingContext2D" === cstrName ? "context2D." : "CanvasRenderingContextWebGL" === cstrName ? "contextWebGL." : "CSSStyleDeclaration" === cstrName ? "style." : "MutationObserver" === cstrName ? "mutationObserver." : "NamedNodeMap" === cstrName ? "namedNodeMap." : "ResizeObserver" === cstrName ? "resizeObserver." : cstrName.substring(0, 1).toLowerCase() + cstrName.substring(1) + ".";
311
+ }
312
+ target[ApplyPathKey] && target[ApplyPathKey].length && (n += [ ...target[ApplyPathKey] ].join(".") + ".");
313
+ }
314
+ if (applyPath.length > 1) {
315
+ const first = applyPath.slice(0, applyPath.length - 1);
316
+ const last = applyPath[applyPath.length - 1];
317
+ if (!isNaN(last)) {
318
+ return n + `${first.join(".")}[${last}]`;
319
+ }
320
+ }
321
+ return n + applyPath.join(".");
322
+ };
323
+ const getLogValue = (applyPath, v) => {
324
+ const type = typeof v;
325
+ if (void 0 === v) {
326
+ return "undefined";
327
+ }
328
+ if ("boolean" === type || "number" === type || null == v) {
329
+ return JSON.stringify(v);
330
+ }
331
+ if ("string" === type) {
332
+ return applyPath.includes("cookie") ? JSON.stringify(v.slice(0, 10) + "...") : JSON.stringify(v.length > 50 ? v.slice(0, 40) + "..." : v);
333
+ }
334
+ if (Array.isArray(v)) {
335
+ return `[${v.map(getLogValue).join(", ")}]`;
336
+ }
337
+ if ("object" === type) {
338
+ const instanceId = v[InstanceIdKey];
339
+ const cstrName = getConstructorName(v);
340
+ if ("string" == typeof instanceId) {
341
+ if ("Window" === cstrName) {
342
+ return "window";
343
+ }
344
+ if ("string" == typeof v[InstanceDataKey]) {
345
+ if (1 === v.nodeType) {
346
+ return `<${v[InstanceDataKey].toLowerCase()}>`;
347
+ }
348
+ if (10 === v.nodeType) {
349
+ return `<!DOCTYPE ${v[InstanceDataKey]}>`;
350
+ }
351
+ if (v.nodeType <= 11) {
352
+ return v[InstanceDataKey];
353
+ }
354
+ }
355
+ return "¯\\_(ツ)_/¯ instance obj";
356
+ }
357
+ return v[Symbol.iterator] ? `[${Array.from(v).map((i => getLogValue(applyPath, i))).join(", ")}]` : "value" in v ? "string" == typeof v.value ? `"${v.value}"` : objToString(v.value) : objToString(v);
358
+ }
359
+ return (v => "object" == typeof v && v && v.then)(v) ? "Promise" : "function" === type ? `ƒ() ${v.name || ""}`.trim() : `¯\\_(ツ)_/¯ ${String(v)}`.trim();
360
+ };
361
+ const objToString = obj => {
362
+ const s = [];
363
+ for (let key in obj) {
364
+ const value = obj[key];
365
+ const type = typeof value;
366
+ "string" === type ? s.push(`${key}: "${value}"`) : "function" === type ? s.push(`${key}: ƒ`) : Array.isArray(type) ? s.push(`${key}: [..]`) : "object" === type && value ? s.push(`${key}: {..}`) : s.push(`${key}: ${String(value)}`);
367
+ }
368
+ let str = s.join(", ");
369
+ str.length > 200 && (str = str.substring(0, 200) + "..");
370
+ return `{ ${str} }`;
371
+ };
372
+ const logDimensionCacheClearStyle = (target, propName) => {
373
+ (webWorkerCtx.$config$.logGetters || webWorkerCtx.$config$.logSetters) && logWorker(`Dimension cache cleared from style.${propName} setter`, target[WinIdKey]);
374
+ };
375
+ const logDimensionCacheClearMethod = (target, methodName) => {
376
+ (webWorkerCtx.$config$.logGetters || webWorkerCtx.$config$.logCalls) && logWorker(`Dimension cache cleared from method call ${methodName}()`, target[WinIdKey]);
377
+ };
378
+ const taskQueue = [];
379
+ const queue = (instance, $applyPath$, callType, $assignInstanceId$, $groupedGetters$, buffer) => {
380
+ if (instance[ApplyPathKey]) {
381
+ taskQueue.push({
382
+ $winId$: instance[WinIdKey],
383
+ $instanceId$: instance[InstanceIdKey],
384
+ $applyPath$: [ ...instance[ApplyPathKey], ...$applyPath$ ],
385
+ $assignInstanceId$: $assignInstanceId$,
386
+ $groupedGetters$: $groupedGetters$
387
+ });
388
+ taskQueue[len(taskQueue) - 1].$debug$ = ((target, applyPath, callType) => {
389
+ let m = getTargetProp(target, applyPath);
390
+ 1 === callType ? m += " (blocking)" : 2 === callType ? m += " (non-blocking)" : 3 === callType && (m += " (non-blocking, no-side-effect)");
391
+ return m.trim();
392
+ })(instance, $applyPath$, callType);
393
+ buffer && 3 !== callType && console.error("buffer must be sent NonBlockingNoSideEffect");
394
+ if (3 === callType) {
395
+ webWorkerCtx.$postMessage$([ 12, {
396
+ $msgId$: randomId(),
397
+ $tasks$: [ ...taskQueue ]
398
+ } ], buffer ? [ buffer instanceof ArrayBuffer ? buffer : buffer.buffer ] : void 0);
399
+ taskQueue.length = 0;
400
+ } else if (1 === callType) {
401
+ return sendToMain(true);
402
+ }
403
+ webWorkerCtx.$asyncMsgTimer$ = setTimeout(sendToMain, 20);
404
+ }
405
+ };
406
+ const sendToMain = isBlocking => {
407
+ clearTimeout(webWorkerCtx.$asyncMsgTimer$);
408
+ if (len(taskQueue)) {
409
+ webWorkerCtx.$config$.logMainAccess && logWorker(`Main access, tasks sent: ${taskQueue.length}`);
410
+ const endTask = taskQueue[len(taskQueue) - 1];
411
+ const accessReq = {
412
+ $msgId$: randomId(),
413
+ $tasks$: [ ...taskQueue ]
414
+ };
415
+ taskQueue.length = 0;
416
+ if (isBlocking) {
417
+ const accessRsp = ((webWorkerCtx, accessReq) => {
418
+ const sharedDataBuffer = webWorkerCtx.$sharedDataBuffer$;
419
+ const sharedData = new Int32Array(sharedDataBuffer);
420
+ Atomics.store(sharedData, 0, 0);
421
+ webWorkerCtx.$postMessage$([ 11, accessReq ]);
422
+ Atomics.wait(sharedData, 0, 0);
423
+ let dataLength = Atomics.load(sharedData, 0);
424
+ let accessRespStr = "";
425
+ let i = 0;
426
+ for (;i < dataLength; i++) {
427
+ accessRespStr += String.fromCharCode(sharedData[i + 1]);
428
+ }
429
+ return JSON.parse(accessRespStr);
430
+ })(webWorkerCtx, accessReq);
431
+ const isPromise = accessRsp.$isPromise$;
432
+ const rtnValue = deserializeFromMain(endTask.$winId$, endTask.$instanceId$, endTask.$applyPath$, accessRsp.$rtnValue$);
433
+ if (accessRsp.$error$) {
434
+ if (isPromise) {
435
+ return Promise.reject(accessRsp.$error$);
436
+ }
437
+ throw new Error(accessRsp.$error$);
438
+ }
439
+ return isPromise ? Promise.resolve(rtnValue) : rtnValue;
440
+ }
441
+ webWorkerCtx.$postMessage$([ 12, accessReq ]);
442
+ }
443
+ };
444
+ const getter = (instance, applyPath, groupedGetters, rtnValue) => {
445
+ if (webWorkerCtx.$config$.get) {
446
+ rtnValue = webWorkerCtx.$config$.get(createHookOptions(instance, applyPath));
447
+ if (rtnValue !== HookContinue) {
448
+ return rtnValue;
449
+ }
450
+ }
451
+ rtnValue = queue(instance, applyPath, 1, void 0, groupedGetters);
452
+ ((target, applyPath, rtnValue, restrictedToWorker = false, groupedGetters = false) => {
453
+ if (webWorkerCtx.$config$.logGetters) {
454
+ try {
455
+ const msg = `Get ${getTargetProp(target, applyPath)}, returned: ${getLogValue(applyPath, rtnValue)}${restrictedToWorker ? " (restricted to worker)" : ""}${groupedGetters ? " (grouped getter)" : ""}`;
456
+ msg.includes("Symbol(") || logWorker(msg, target[WinIdKey]);
457
+ } catch (e) {}
458
+ }
459
+ })(instance, applyPath, rtnValue, false, !!groupedGetters);
460
+ return rtnValue;
461
+ };
462
+ const setter = (instance, applyPath, value, hookSetterValue) => {
463
+ if (webWorkerCtx.$config$.set) {
464
+ hookSetterValue = webWorkerCtx.$config$.set({
465
+ value: value,
466
+ prevent: HookPrevent,
467
+ ...createHookOptions(instance, applyPath)
468
+ });
469
+ if (hookSetterValue === HookPrevent) {
470
+ return;
471
+ }
472
+ hookSetterValue !== HookContinue && (value = hookSetterValue);
473
+ }
474
+ if (dimensionChangingSetterNames.some((s => applyPath.includes(s)))) {
475
+ cachedDimensions.clear();
476
+ ((target, propName) => {
477
+ (webWorkerCtx.$config$.logGetters || webWorkerCtx.$config$.logSetters) && logWorker(`Dimension cache cleared from setter "${propName}"`, target[WinIdKey]);
478
+ })(instance, applyPath[applyPath.length - 1]);
479
+ }
480
+ applyPath = [ ...applyPath, serializeInstanceForMain(instance, value), 0 ];
481
+ ((target, applyPath, value, restrictedToWorker = false) => {
482
+ if (webWorkerCtx.$config$.logSetters) {
483
+ try {
484
+ applyPath = applyPath.slice(0, applyPath.length - 2);
485
+ logWorker(`Set ${getTargetProp(target, applyPath)}, value: ${getLogValue(applyPath, value)}${restrictedToWorker ? " (restricted to worker)" : ""}`, target[WinIdKey]);
486
+ } catch (e) {}
487
+ }
488
+ })(instance, applyPath, value);
489
+ queue(instance, applyPath, 2);
490
+ };
491
+ const callMethod = (instance, applyPath, args, callType, assignInstanceId, buffer, rtnValue, methodName) => {
492
+ if (webWorkerCtx.$config$.apply) {
493
+ rtnValue = webWorkerCtx.$config$.apply({
494
+ args: args,
495
+ ...createHookOptions(instance, applyPath)
496
+ });
497
+ if (rtnValue !== HookContinue) {
498
+ return rtnValue;
499
+ }
500
+ }
501
+ methodName = applyPath[len(applyPath) - 1];
502
+ applyPath = [ ...applyPath, serializeInstanceForMain(instance, args) ];
503
+ callType = callType || (nonBlockingMethods.includes(methodName) ? 2 : 1);
504
+ if ("setAttribute" === methodName && hasInstanceStateValue(instance, args[0])) {
505
+ setInstanceStateValue(instance, args[0], args[1]);
506
+ } else if (structureChangingMethodNames.includes(methodName)) {
507
+ cachedDimensions.clear();
508
+ cachedStructure.clear();
509
+ ((target, methodName) => {
510
+ (webWorkerCtx.$config$.logGetters || webWorkerCtx.$config$.logCalls) && logWorker(`Dimension and DOM structure cache cleared from method call ${methodName}()`, target[WinIdKey]);
511
+ })(instance, methodName);
512
+ } else if (dimensionChangingMethodNames.includes(methodName)) {
513
+ callType = 2;
514
+ cachedDimensions.clear();
515
+ logDimensionCacheClearMethod(instance, methodName);
516
+ }
517
+ rtnValue = queue(instance, applyPath, callType, assignInstanceId, void 0, buffer);
518
+ ((target, applyPath, args, rtnValue) => {
519
+ if (webWorkerCtx.$config$.logCalls) {
520
+ try {
521
+ applyPath = applyPath.slice(0, applyPath.length - 1);
522
+ logWorker(`Call ${getTargetProp(target, applyPath)}(${args.map((v => getLogValue(applyPath, v))).join(", ")}), returned: ${getLogValue(applyPath, rtnValue)}`, target[WinIdKey]);
523
+ } catch (e) {}
524
+ }
525
+ })(instance, applyPath, args, rtnValue);
526
+ return rtnValue;
527
+ };
528
+ const constructGlobal = (instance, cstrName, args) => {
529
+ ((target, cstrName, args) => {
530
+ if (webWorkerCtx.$config$.logCalls) {
531
+ try {
532
+ logWorker(`Construct new ${cstrName}(${args.map((v => getLogValue([], v))).join(", ")})`, target[WinIdKey]);
533
+ } catch (e) {}
534
+ }
535
+ })(instance, cstrName, args);
536
+ queue(instance, [ 1, cstrName, serializeInstanceForMain(instance, args) ], 1);
537
+ };
538
+ const createHookOptions = (instance, applyPath) => ({
539
+ name: applyPath.join("."),
540
+ continue: HookContinue,
541
+ nodeName: instance[InstanceDataKey],
542
+ constructor: getConstructorName(instance),
543
+ instance: instance,
544
+ window: environments[instance[WinIdKey]].$window$
545
+ });
546
+ const addStorageApi = (win, storageName, storages, isSameOrigin, env) => {
547
+ let getItems = items => {
548
+ items = storages.get(win.origin);
549
+ items || storages.set(win.origin, items = []);
550
+ return items;
551
+ };
552
+ let getIndexByKey = key => getItems().findIndex((i => i[STORAGE_KEY] === key));
553
+ let index;
554
+ let item;
555
+ let storage = {
556
+ getItem(key) {
557
+ index = getIndexByKey(key);
558
+ return index > -1 ? getItems()[index][STORAGE_VALUE] : null;
559
+ },
560
+ setItem(key, value) {
561
+ index = getIndexByKey(key);
562
+ index > -1 ? getItems()[index][STORAGE_VALUE] = value : getItems().push([ key, value ]);
563
+ isSameOrigin ? callMethod(win, [ storageName, "setItem" ], [ key, value ], 2) : warnCrossOrgin("set", storageName, env);
564
+ },
565
+ removeItem(key) {
566
+ index = getIndexByKey(key);
567
+ index > -1 && getItems().splice(index, 1);
568
+ isSameOrigin ? callMethod(win, [ storageName, "removeItem" ], [ key ], 2) : warnCrossOrgin("remove", storageName, env);
569
+ },
570
+ key(index) {
571
+ item = getItems()[index];
572
+ return item ? item[STORAGE_KEY] : null;
573
+ },
574
+ clear() {
575
+ getItems().length = 0;
576
+ isSameOrigin ? callMethod(win, [ storageName, "clear" ], EMPTY_ARRAY, 2) : warnCrossOrgin("clear", storageName, env);
577
+ },
578
+ get length() {
579
+ return getItems().length;
580
+ }
581
+ };
582
+ win[storageName] = new Proxy(storage, {
583
+ get: (target, key) => Reflect.has(target, key) ? Reflect.get(target, key) : target.getItem(key),
584
+ set(target, key, value) {
585
+ target.setItem(key, value);
586
+ return true;
587
+ },
588
+ has: (target, key) => !!Reflect.has(target, key) || "string" == typeof key && null !== target.getItem(key),
589
+ deleteProperty(target, key) {
590
+ target.removeItem(key);
591
+ return true;
592
+ }
593
+ });
594
+ };
595
+ const STORAGE_KEY = 0;
596
+ const STORAGE_VALUE = 1;
597
+ const createCSSStyleDeclarationCstr = (win, WorkerBase, cstrName) => {
598
+ win[cstrName] = defineConstructorName(class extends WorkerBase {
599
+ constructor(winId, instanceId, applyPath, styles) {
600
+ super(winId, instanceId, applyPath, styles || {});
601
+ return new Proxy(this, {
602
+ get(target, propName) {
603
+ if (target[propName]) {
604
+ return target[propName];
605
+ }
606
+ target[propName] || "string" != typeof propName || target[InstanceDataKey][propName] || (target[InstanceDataKey][propName] = getter(target, [ propName ]));
607
+ return target[InstanceDataKey][propName];
608
+ },
609
+ set(target, propName, propValue) {
610
+ target[InstanceDataKey][propName] = propValue;
611
+ setter(target, [ propName ], propValue);
612
+ logDimensionCacheClearStyle(target, propName);
613
+ cachedDimensions.clear();
614
+ return true;
615
+ }
616
+ });
617
+ }
618
+ setProperty(...args) {
619
+ this[InstanceDataKey][args[0]] = args[1];
620
+ callMethod(this, [ "setProperty" ], args, 2);
621
+ logDimensionCacheClearStyle(this, args[0]);
622
+ cachedDimensions.clear();
623
+ }
624
+ getPropertyValue(propName) {
625
+ return this[propName];
626
+ }
627
+ removeProperty(propName) {
628
+ let value = this[InstanceDataKey][propName];
629
+ callMethod(this, [ "removeProperty" ], [ propName ], 2);
630
+ logDimensionCacheClearStyle(this, propName);
631
+ cachedDimensions.clear();
632
+ this[InstanceDataKey][propName] = void 0;
633
+ return value;
634
+ }
635
+ }, cstrName);
636
+ };
637
+ const createCSSStyleSheetConstructor = (win, cssStyleSheetCstrName) => {
638
+ win[cssStyleSheetCstrName] = defineConstructorName(class {
639
+ constructor(ownerNode) {
640
+ this.ownerNode = ownerNode;
641
+ }
642
+ get cssRules() {
643
+ const ownerNode = this.ownerNode;
644
+ return new Proxy({}, {
645
+ get(target, propKey) {
646
+ const propName = String(propKey);
647
+ return "item" === propName ? index => getCssRule(ownerNode, index) : "length" === propName ? getCssRules(ownerNode).length : isNaN(propName) ? target[propKey] : getCssRule(ownerNode, propName);
648
+ }
649
+ });
650
+ }
651
+ insertRule(ruleText, index) {
652
+ const cssRules = getCssRules(this.ownerNode);
653
+ index = void 0 === index ? 0 : index;
654
+ if (index >= 0 && index <= cssRules.length) {
655
+ callMethod(this.ownerNode, [ "sheet", "insertRule" ], [ ruleText, index ], 2);
656
+ cssRules.splice(index, 0, 0);
657
+ }
658
+ logDimensionCacheClearMethod(this.ownerNode, "insertRule");
659
+ cachedDimensions.clear();
660
+ return index;
661
+ }
662
+ deleteRule(index) {
663
+ callMethod(this.ownerNode, [ "sheet", "deleteRule" ], [ index ], 2);
664
+ getCssRules(this.ownerNode).splice(index, 1);
665
+ logDimensionCacheClearMethod(this.ownerNode, "deleteRule");
666
+ cachedDimensions.clear();
667
+ }
668
+ get type() {
669
+ return "text/css";
670
+ }
671
+ }, cssStyleSheetCstrName);
672
+ const HTMLStyleDescriptorMap = {
673
+ sheet: {
674
+ get() {
675
+ return new win[cssStyleSheetCstrName](this);
676
+ }
677
+ }
678
+ };
679
+ definePrototypePropertyDescriptor(win.HTMLStyleElement, HTMLStyleDescriptorMap);
680
+ };
681
+ const getCssRules = (ownerNode, cssRules) => {
682
+ cssRules = getInstanceStateValue(ownerNode, 2);
683
+ if (!cssRules) {
684
+ cssRules = getter(ownerNode, [ "sheet", "cssRules" ]);
685
+ setInstanceStateValue(ownerNode, 2, cssRules);
686
+ }
687
+ return cssRules;
688
+ };
689
+ const getCssRule = (ownerNode, index, cssRules) => {
690
+ cssRules = getCssRules(ownerNode);
691
+ 0 === cssRules[index] && (cssRules[index] = getter(ownerNode, [ "sheet", "cssRules", parseInt(index, 10) ]));
692
+ return cssRules[index];
693
+ };
694
+ const runScriptContent = (env, instanceId, scriptContent, winId, errorMsg) => {
695
+ try {
696
+ webWorkerCtx.$config$.logScriptExecution && logWorker(`Execute script: ${scriptContent.substring(0, 100).split("\n").map((l => l.trim())).join(" ").trim().substring(0, 60)}...`, winId);
697
+ env.$currentScriptId$ = instanceId;
698
+ run(env, scriptContent);
699
+ } catch (contentError) {
700
+ console.error(scriptContent, contentError);
701
+ errorMsg = String(contentError.stack || contentError);
702
+ }
703
+ env.$currentScriptId$ = "";
704
+ return errorMsg;
705
+ };
706
+ const run = (env, scriptContent, scriptUrl) => {
707
+ env.$runWindowLoadEvent$ = 1;
708
+ scriptContent = `with(this){${scriptContent.replace(/\bthis\b/g, "(thi$(this)?window:this)").replace(/\/\/# so/g, "//Xso")}\n;function thi$(t){return t===this}};${(webWorkerCtx.$config$.globalFns || []).filter((globalFnName => /[a-zA-Z_$][0-9a-zA-Z_$]*/.test(globalFnName))).map((g => `(typeof ${g}=='function'&&(this.${g}=${g}))`)).join(";")};` + (scriptUrl ? "\n//# sourceURL=" + scriptUrl : "");
709
+ env.$isSameOrigin$ || (scriptContent = scriptContent.replace(/.postMessage\(/g, `.postMessage('${env.$winId$}',`));
710
+ new Function(scriptContent).call(env.$window$);
711
+ env.$runWindowLoadEvent$ = 0;
712
+ };
713
+ const runStateLoadHandlers = (instance, type, handlers) => {
714
+ handlers = getInstanceStateValue(instance, type);
715
+ handlers && setTimeout((() => handlers.map((cb => cb({
716
+ type: type
717
+ })))));
718
+ };
719
+ const resolveToUrl = (env, url, type, baseLocation, resolvedUrl, configResolvedUrl) => {
720
+ baseLocation = env.$location$;
721
+ while (!baseLocation.host) {
722
+ env = environments[env.$parentWinId$];
723
+ baseLocation = env.$location$;
724
+ if (env.$winId$ === env.$parentWinId$) {
725
+ break;
726
+ }
727
+ }
728
+ resolvedUrl = new URL(url || "", baseLocation);
729
+ if (type && webWorkerCtx.$config$.resolveUrl) {
730
+ configResolvedUrl = webWorkerCtx.$config$.resolveUrl(resolvedUrl, baseLocation, type);
731
+ if (configResolvedUrl) {
732
+ return configResolvedUrl;
733
+ }
734
+ }
735
+ return resolvedUrl;
736
+ };
737
+ const resolveUrl = (env, url, type) => resolveToUrl(env, url, type) + "";
738
+ const getPartytownScript = () => `<script src="${partytownLibUrl("partytown.js?v=0.7.5")}"><\/script>`;
739
+ const createImageConstructor = env => class HTMLImageElement {
740
+ constructor() {
741
+ this.s = "";
742
+ this.l = [];
743
+ this.e = [];
744
+ this.style = {};
745
+ }
746
+ get src() {
747
+ return this.s;
748
+ }
749
+ set src(src) {
750
+ webWorkerCtx.$config$.logImageRequests && logWorker(`Image() request: ${resolveUrl(env, src, "image")}`, env.$winId$);
751
+ this.s = src;
752
+ fetch(resolveUrl(env, src, "image"), {
753
+ mode: "no-cors",
754
+ credentials: "include",
755
+ keepalive: true
756
+ }).then((rsp => {
757
+ rsp.ok || 0 === rsp.status ? this.l.map((cb => cb({
758
+ type: "load"
759
+ }))) : this.e.map((cb => cb({
760
+ type: "error"
761
+ })));
762
+ }), (() => this.e.forEach((cb => cb({
763
+ type: "error"
764
+ })))));
765
+ }
766
+ addEventListener(eventName, cb) {
767
+ "load" === eventName && this.l.push(cb);
768
+ "error" === eventName && this.e.push(cb);
769
+ }
770
+ get onload() {
771
+ return this.l[0];
772
+ }
773
+ set onload(cb) {
774
+ this.l = [ cb ];
775
+ }
776
+ get onerror() {
777
+ return this.e[0];
778
+ }
779
+ set onerror(cb) {
780
+ this.e = [ cb ];
781
+ }
782
+ };
783
+ const HTMLSrcElementDescriptorMap = {
784
+ addEventListener: {
785
+ value(...args) {
786
+ const eventName = args[0];
787
+ const callbacks = getInstanceStateValue(this, eventName) || [];
788
+ callbacks.push(args[1]);
789
+ setInstanceStateValue(this, eventName, callbacks);
790
+ }
791
+ },
792
+ async: {
793
+ get: noop,
794
+ set: noop
795
+ },
796
+ defer: {
797
+ get: noop,
798
+ set: noop
799
+ },
800
+ onload: {
801
+ get() {
802
+ let callbacks = getInstanceStateValue(this, "load");
803
+ return callbacks && callbacks[0] || null;
804
+ },
805
+ set(cb) {
806
+ setInstanceStateValue(this, "load", cb ? [ cb ] : null);
807
+ }
808
+ },
809
+ onerror: {
810
+ get() {
811
+ let callbacks = getInstanceStateValue(this, "error");
812
+ return callbacks && callbacks[0] || null;
813
+ },
814
+ set(cb) {
815
+ setInstanceStateValue(this, "error", cb ? [ cb ] : null);
816
+ }
817
+ },
818
+ getAttribute: {
819
+ value(attrName) {
820
+ return "src" === attrName ? this.src : callMethod(this, [ "getAttribute" ], [ attrName ]);
821
+ }
822
+ },
823
+ setAttribute: {
824
+ value(attrName, attrValue) {
825
+ scriptAttrPropNames.includes(attrName) ? this[attrName] = attrValue : callMethod(this, [ "setAttribute" ], [ attrName, attrValue ]);
826
+ }
827
+ }
828
+ };
829
+ const scriptAttrPropNames = commaSplit("src,type");
830
+ const patchHTMLScriptElement = (WorkerHTMLScriptElement, env) => {
831
+ const HTMLScriptDescriptorMap = {
832
+ innerHTML: innerHTMLDescriptor,
833
+ innerText: innerHTMLDescriptor,
834
+ src: {
835
+ get() {
836
+ return getInstanceStateValue(this, 4) || "";
837
+ },
838
+ set(url) {
839
+ const orgUrl = resolveUrl(env, url, null);
840
+ const config = webWorkerCtx.$config$;
841
+ url = resolveUrl(env, url, "script");
842
+ setInstanceStateValue(this, 4, url);
843
+ setter(this, [ "src" ], url);
844
+ orgUrl !== url && setter(this, [ "dataset", "ptsrc" ], orgUrl);
845
+ if (this.type && config.loadScriptsOnMainThread) {
846
+ const shouldExecuteScriptViaMainThread = config.loadScriptsOnMainThread.some((scriptUrl => scriptUrl === url));
847
+ shouldExecuteScriptViaMainThread && setter(this, [ "type" ], "text/javascript");
848
+ }
849
+ }
850
+ },
851
+ textContent: innerHTMLDescriptor,
852
+ type: {
853
+ get() {
854
+ return getter(this, [ "type" ]);
855
+ },
856
+ set(type) {
857
+ if (!isScriptJsType(type)) {
858
+ setInstanceStateValue(this, 5, type);
859
+ setter(this, [ "type" ], type);
860
+ }
861
+ }
862
+ },
863
+ ...HTMLSrcElementDescriptorMap
864
+ };
865
+ definePrototypePropertyDescriptor(WorkerHTMLScriptElement, HTMLScriptDescriptorMap);
866
+ };
867
+ const innerHTMLDescriptor = {
868
+ get() {
869
+ const type = getter(this, [ "type" ]);
870
+ return isScriptJsType(type) ? getInstanceStateValue(this, 3) || "" : getter(this, [ "innerHTML" ]);
871
+ },
872
+ set(scriptContent) {
873
+ setInstanceStateValue(this, 3, scriptContent);
874
+ }
875
+ };
876
+ const isScriptJsType = scriptType => !scriptType || "text/javascript" === scriptType;
877
+ const createNodeCstr = (win, env, WorkerBase) => {
878
+ const config = webWorkerCtx.$config$;
879
+ const WorkerNode = defineConstructorName(class extends WorkerBase {
880
+ appendChild(node) {
881
+ return this.insertBefore(node, null);
882
+ }
883
+ get href() {}
884
+ set href(_) {}
885
+ insertBefore(newNode, referenceNode) {
886
+ var _a, _b;
887
+ const winId = newNode[WinIdKey] = this[WinIdKey];
888
+ const instanceId = newNode[InstanceIdKey];
889
+ const nodeName = newNode[InstanceDataKey];
890
+ const isScript = "SCRIPT" === nodeName;
891
+ const isIFrame = "IFRAME" === nodeName;
892
+ if (isScript) {
893
+ const scriptContent = getInstanceStateValue(newNode, 3);
894
+ const scriptType = getInstanceStateValue(newNode, 5);
895
+ if (scriptContent) {
896
+ if (isScriptJsType(scriptType)) {
897
+ const scriptId = newNode.id;
898
+ const loadOnMainThread = scriptId && (null === (_b = null === (_a = config.loadScriptsOnMainThread) || void 0 === _a ? void 0 : _a.includes) || void 0 === _b ? void 0 : _b.call(_a, scriptId));
899
+ if (loadOnMainThread) {
900
+ setter(newNode, [ "type" ], "text/javascript");
901
+ } else {
902
+ const errorMsg = runScriptContent(env, instanceId, scriptContent, winId, "");
903
+ const datasetType = errorMsg ? "pterror" : "ptid";
904
+ const datasetValue = errorMsg || instanceId;
905
+ setter(newNode, [ "type" ], "text/partytown-x");
906
+ setter(newNode, [ "dataset", datasetType ], datasetValue);
907
+ }
908
+ }
909
+ setter(newNode, [ "innerHTML" ], scriptContent);
910
+ }
911
+ }
912
+ callMethod(this, [ "insertBefore" ], [ newNode, referenceNode ], 2);
913
+ if (isIFrame) {
914
+ const src = getInstanceStateValue(newNode, 0);
915
+ if (src && src.startsWith("javascript:")) {
916
+ const scriptContent = src.split("javascript:")[1];
917
+ runScriptContent(env, instanceId, scriptContent, winId, "");
918
+ }
919
+ ((winId, iframe) => {
920
+ let i = 0;
921
+ let type;
922
+ let handlers;
923
+ let callback = () => {
924
+ if (environments[winId] && environments[winId].$isInitialized$ && !environments[winId].$isLoading$) {
925
+ type = getInstanceStateValue(iframe, 1) ? "error" : "load";
926
+ handlers = getInstanceStateValue(iframe, type);
927
+ handlers && handlers.map((handler => handler({
928
+ type: type
929
+ })));
930
+ } else if (i++ > 2e3) {
931
+ handlers = getInstanceStateValue(iframe, "error");
932
+ handlers && handlers.map((handler => handler({
933
+ type: "error"
934
+ })));
935
+ } else {
936
+ setTimeout(callback, 9);
937
+ }
938
+ };
939
+ callback();
940
+ })(instanceId, newNode);
941
+ }
942
+ if (isScript) {
943
+ sendToMain(true);
944
+ webWorkerCtx.$postMessage$([ 7, winId ]);
945
+ }
946
+ return newNode;
947
+ }
948
+ get nodeName() {
949
+ return "#s" === this[InstanceDataKey] ? "#document-fragment" : this[InstanceDataKey];
950
+ }
951
+ get nodeType() {
952
+ return 3;
953
+ }
954
+ get ownerDocument() {
955
+ return env.$document$;
956
+ }
957
+ }, "Node");
958
+ cachedTreeProps(WorkerNode, commaSplit("childNodes,firstChild,isConnected,lastChild,nextSibling,parentElement,parentNode,previousSibling"));
959
+ win.Node = WorkerNode;
960
+ };
961
+ const htmlMedia = commaSplit("AUDIO,CANVAS,VIDEO");
962
+ const windowMediaConstructors = commaSplit("Audio,MediaSource");
963
+ const patchDocument = (WorkerDocument, env, isDocumentImplementation) => {
964
+ const DocumentDescriptorMap = {
965
+ body: {
966
+ get: () => env.$body$
967
+ },
968
+ cookie: {
969
+ get() {
970
+ if (env.$isSameOrigin$) {
971
+ return getter(this, [ "cookie" ]);
972
+ }
973
+ warnCrossOrgin("get", "cookie", env);
974
+ return "";
975
+ },
976
+ set(value) {
977
+ if (env.$isSameOrigin$) {
978
+ setter(this, [ "cookie" ], value);
979
+ } else {
980
+ warnCrossOrgin("set", "cookie", env);
981
+ }
982
+ }
983
+ },
984
+ createElement: {
985
+ value(tagName) {
986
+ tagName = tagName.toUpperCase();
987
+ if (!IS_TAG_REG.test(tagName)) {
988
+ throw tagName + " not valid";
989
+ }
990
+ const isIframe = "IFRAME" === tagName;
991
+ const winId = this[WinIdKey];
992
+ const instanceId = (isIframe ? "f_" : "") + randomId();
993
+ callMethod(this, [ "createElement" ], [ tagName ], 2, instanceId);
994
+ const elm = getOrCreateNodeInstance(winId, instanceId, tagName);
995
+ if (isIframe) {
996
+ const env = createEnvironment({
997
+ $winId$: instanceId,
998
+ $parentWinId$: winId,
999
+ $url$: "about:blank"
1000
+ }, true);
1001
+ env.$window$.fetch = fetch;
1002
+ setter(elm, [ "srcdoc" ], getPartytownScript());
1003
+ } else if ("SCRIPT" === tagName) {
1004
+ const scriptType = getInstanceStateValue(elm, 5);
1005
+ isScriptJsType(scriptType) && setter(elm, [ "type" ], "text/partytown");
1006
+ }
1007
+ return elm;
1008
+ }
1009
+ },
1010
+ createElementNS: {
1011
+ value(namespace, tagName) {
1012
+ const instanceId = randomId();
1013
+ const nsElm = getOrCreateNodeInstance(this[WinIdKey], instanceId, tagName, namespace);
1014
+ callMethod(this, [ "createElementNS" ], [ namespace, tagName ], 2, instanceId);
1015
+ return nsElm;
1016
+ }
1017
+ },
1018
+ createTextNode: {
1019
+ value(text) {
1020
+ const winId = this[WinIdKey];
1021
+ const instanceId = randomId();
1022
+ const textNode = getOrCreateNodeInstance(winId, instanceId, "#text");
1023
+ callMethod(this, [ "createTextNode" ], [ text ], 2, instanceId);
1024
+ return textNode;
1025
+ }
1026
+ },
1027
+ createEvent: {
1028
+ value: type => new Event(type)
1029
+ },
1030
+ currentScript: {
1031
+ get() {
1032
+ return env.$currentScriptId$ ? getOrCreateNodeInstance(this[WinIdKey], env.$currentScriptId$, "SCRIPT") : null;
1033
+ }
1034
+ },
1035
+ defaultView: {
1036
+ get: () => isDocumentImplementation ? null : env.$window$
1037
+ },
1038
+ documentElement: {
1039
+ get: () => env.$documentElement$
1040
+ },
1041
+ getElementsByTagName: {
1042
+ value(tagName) {
1043
+ tagName = tagName.toUpperCase();
1044
+ return "BODY" === tagName ? [ env.$body$ ] : "HEAD" === tagName ? [ env.$head$ ] : callMethod(this, [ "getElementsByTagName" ], [ tagName ]);
1045
+ }
1046
+ },
1047
+ head: {
1048
+ get: () => env.$head$
1049
+ },
1050
+ images: {
1051
+ get() {
1052
+ return getter(this, [ "images" ]);
1053
+ }
1054
+ },
1055
+ implementation: {
1056
+ get() {
1057
+ return {
1058
+ hasFeature: () => true,
1059
+ createHTMLDocument: title => {
1060
+ const $winId$ = randomId();
1061
+ callMethod(this, [ "implementation", "createHTMLDocument" ], [ title ], 1, {
1062
+ $winId$: $winId$
1063
+ });
1064
+ const docEnv = createEnvironment({
1065
+ $winId$: $winId$,
1066
+ $parentWinId$: $winId$,
1067
+ $url$: env.$location$ + "",
1068
+ $visibilityState$: "hidden"
1069
+ }, true, true);
1070
+ return docEnv.$document$;
1071
+ }
1072
+ };
1073
+ }
1074
+ },
1075
+ location: {
1076
+ get: () => env.$location$,
1077
+ set(url) {
1078
+ env.$location$.href = url + "";
1079
+ }
1080
+ },
1081
+ nodeType: {
1082
+ value: 9
1083
+ },
1084
+ parentNode: {
1085
+ value: null
1086
+ },
1087
+ parentElement: {
1088
+ value: null
1089
+ },
1090
+ readyState: {
1091
+ value: "complete"
1092
+ },
1093
+ visibilityState: {
1094
+ get: () => env.$visibilityState$ || "visible"
1095
+ }
1096
+ };
1097
+ definePrototypePropertyDescriptor(WorkerDocument, DocumentDescriptorMap);
1098
+ cachedProps(WorkerDocument, "compatMode,referrer,forms");
1099
+ };
1100
+ const patchDocumentElementChild = (WokerDocumentElementChild, env) => {
1101
+ const DocumentElementChildDescriptorMap = {
1102
+ parentElement: {
1103
+ get() {
1104
+ return this.parentNode;
1105
+ }
1106
+ },
1107
+ parentNode: {
1108
+ get: () => env.$documentElement$
1109
+ }
1110
+ };
1111
+ definePrototypePropertyDescriptor(WokerDocumentElementChild, DocumentElementChildDescriptorMap);
1112
+ };
1113
+ const patchElement = (WorkerElement, WorkerHTMLElement) => {
1114
+ const ElementDescriptorMap = {
1115
+ localName: {
1116
+ get() {
1117
+ return this[InstanceDataKey].toLowerCase();
1118
+ }
1119
+ },
1120
+ namespaceURI: {
1121
+ get() {
1122
+ return this[NamespaceKey] || "http://www.w3.org/1999/xhtml";
1123
+ }
1124
+ },
1125
+ nodeType: {
1126
+ value: 1
1127
+ },
1128
+ tagName: {
1129
+ get() {
1130
+ return this[InstanceDataKey];
1131
+ }
1132
+ }
1133
+ };
1134
+ definePrototypePropertyDescriptor(WorkerElement, ElementDescriptorMap);
1135
+ cachedTreeProps(WorkerElement, elementStructurePropNames);
1136
+ cachedProps(WorkerElement, "id");
1137
+ cachedDimensionProps(WorkerHTMLElement);
1138
+ cachedDimensionMethods(WorkerHTMLElement, commaSplit("getClientRects,getBoundingClientRect"));
1139
+ };
1140
+ const patchHTMLAnchorElement = (WorkerHTMLAnchorElement, env) => {
1141
+ const HTMLAnchorDescriptorMap = {};
1142
+ commaSplit("hash,host,hostname,href,origin,pathname,port,protocol,search").map((anchorProp => {
1143
+ HTMLAnchorDescriptorMap[anchorProp] = {
1144
+ get() {
1145
+ let value = getInstanceStateValue(this, 4);
1146
+ let href;
1147
+ if ("string" != typeof value) {
1148
+ href = getter(this, [ "href" ]);
1149
+ setInstanceStateValue(this, 4, href);
1150
+ value = new URL(href)[anchorProp];
1151
+ }
1152
+ return resolveToUrl(env, value, null)[anchorProp];
1153
+ },
1154
+ set(value) {
1155
+ let url;
1156
+ if ("href" === anchorProp) {
1157
+ if ((url => {
1158
+ try {
1159
+ new URL(url);
1160
+ return true;
1161
+ } catch (_) {
1162
+ return false;
1163
+ }
1164
+ })(value)) {
1165
+ url = new URL(value);
1166
+ } else {
1167
+ const baseHref = env.$location$.href;
1168
+ url = resolveToUrl(env, baseHref, null);
1169
+ url.href = new URL(value + "", url.href);
1170
+ }
1171
+ } else {
1172
+ url = resolveToUrl(env, this.href, null);
1173
+ url[anchorProp] = value;
1174
+ }
1175
+ setInstanceStateValue(this, 4, url.href);
1176
+ setter(this, [ "href" ], url.href);
1177
+ }
1178
+ };
1179
+ }));
1180
+ definePrototypePropertyDescriptor(WorkerHTMLAnchorElement, HTMLAnchorDescriptorMap);
1181
+ };
1182
+ const patchHTMLIFrameElement = (WorkerHTMLIFrameElement, env) => {
1183
+ const HTMLIFrameDescriptorMap = {
1184
+ contentDocument: {
1185
+ get() {
1186
+ return getIframeEnv(this).$document$;
1187
+ }
1188
+ },
1189
+ contentWindow: {
1190
+ get() {
1191
+ return getIframeEnv(this).$window$;
1192
+ }
1193
+ },
1194
+ src: {
1195
+ get() {
1196
+ let src = getInstanceStateValue(this, 0);
1197
+ if (src && src.startsWith("javascript:")) {
1198
+ return src;
1199
+ }
1200
+ src = getIframeEnv(this).$location$.href;
1201
+ return src.startsWith("about:") ? "" : src;
1202
+ },
1203
+ set(src) {
1204
+ if (src) {
1205
+ if (src.startsWith("javascript:")) {
1206
+ setInstanceStateValue(this, 0, src);
1207
+ } else if (!src.startsWith("about:")) {
1208
+ let xhr = new XMLHttpRequest;
1209
+ let xhrStatus;
1210
+ let env = getIframeEnv(this);
1211
+ env.$location$.href = src = resolveUrl(env, src, "iframe");
1212
+ env.$isLoading$ = 1;
1213
+ setInstanceStateValue(this, 1, void 0);
1214
+ xhr.open("GET", src, false);
1215
+ xhr.send();
1216
+ xhrStatus = xhr.status;
1217
+ if (xhrStatus > 199 && xhrStatus < 300) {
1218
+ setter(this, [ "srcdoc" ], `<base href="${src}">` + function(text) {
1219
+ return text.replace(SCRIPT_TAG_REGEXP, ((_, attrs) => {
1220
+ const parts = [];
1221
+ let hasType = false;
1222
+ let match;
1223
+ while (match = ATTR_REGEXP.exec(attrs)) {
1224
+ let [keyValue] = match;
1225
+ if (keyValue.startsWith("type=")) {
1226
+ hasType = true;
1227
+ keyValue = keyValue.replace(/(application|text)\/javascript/, SCRIPT_TYPE);
1228
+ }
1229
+ parts.push(keyValue);
1230
+ }
1231
+ hasType || parts.push('type="text/partytown"');
1232
+ return `<script ${parts.join(" ")}>`;
1233
+ }));
1234
+ }(xhr.responseText) + getPartytownScript());
1235
+ sendToMain(true);
1236
+ webWorkerCtx.$postMessage$([ 7, env.$winId$ ]);
1237
+ } else {
1238
+ setInstanceStateValue(this, 1, xhrStatus);
1239
+ env.$isLoading$ = 0;
1240
+ }
1241
+ }
1242
+ }
1243
+ }
1244
+ },
1245
+ ...HTMLSrcElementDescriptorMap
1246
+ };
1247
+ definePrototypePropertyDescriptor(WorkerHTMLIFrameElement, HTMLIFrameDescriptorMap);
1248
+ };
1249
+ const ATTR_REGEXP_STR = "((?:\\w|-)+(?:=(?:(?:\\w|-)+|'[^']*'|\"[^\"]*\")?)?)";
1250
+ const SCRIPT_TAG_REGEXP = new RegExp(`<script\\s*((${ATTR_REGEXP_STR}\\s*)*)>`, "mg");
1251
+ const ATTR_REGEXP = new RegExp(ATTR_REGEXP_STR, "mg");
1252
+ const getIframeEnv = iframe => {
1253
+ const $winId$ = iframe[InstanceIdKey];
1254
+ environments[$winId$] || createEnvironment({
1255
+ $winId$: $winId$,
1256
+ $parentWinId$: iframe[WinIdKey],
1257
+ $url$: getter(iframe, [ "src" ]) || "about:blank"
1258
+ }, true);
1259
+ return environments[$winId$];
1260
+ };
1261
+ const patchSvgElement = WorkerSVGGraphicsElement => {
1262
+ const getMatrix = (elm, methodName) => {
1263
+ const {a: a, b: b, c: c, d: d, e: e, f: f} = callMethod(elm, [ methodName ], EMPTY_ARRAY);
1264
+ return new DOMMatrixReadOnly([ a, b, c, d, e, f ]);
1265
+ };
1266
+ const SVGGraphicsElementDescriptorMap = {
1267
+ ...WorkerSVGGraphicsElement,
1268
+ getCTM: {
1269
+ value: function() {
1270
+ return getMatrix(this, "getCTM");
1271
+ }
1272
+ },
1273
+ getScreenCTM: {
1274
+ value: function() {
1275
+ return getMatrix(this, "getScreenCTM");
1276
+ }
1277
+ }
1278
+ };
1279
+ definePrototypePropertyDescriptor(WorkerSVGGraphicsElement, SVGGraphicsElementDescriptorMap);
1280
+ };
1281
+ const createNamedNodeMapCstr = (win, WorkerBase) => {
1282
+ win.NamedNodeMap = defineConstructorName(class NamedNodeMap extends WorkerBase {
1283
+ constructor(winId, instanceId, applyPath) {
1284
+ super(winId, instanceId, applyPath);
1285
+ return new Proxy(this, {
1286
+ get(target, propName) {
1287
+ const handler = NAMED_NODE_MAP_HANDLERS[propName];
1288
+ return handler ? handler.bind(target, [ propName ]) : getter(target, [ propName ]);
1289
+ },
1290
+ set(target, propName, propValue) {
1291
+ const handler = NAMED_NODE_MAP_HANDLERS[propName];
1292
+ if (handler) {
1293
+ throw new Error("Can't set read-only property: " + String(propName));
1294
+ }
1295
+ setter(target, [ propName ], propValue);
1296
+ return true;
1297
+ }
1298
+ });
1299
+ }
1300
+ }, "NamedNodeMap");
1301
+ };
1302
+ function method(applyPath, ...args) {
1303
+ return callMethod(this, applyPath, args, 1);
1304
+ }
1305
+ const NAMED_NODE_MAP_HANDLERS = {
1306
+ getNamedItem: method,
1307
+ getNamedItemNS: method,
1308
+ item: method,
1309
+ removeNamedItem: method,
1310
+ removeNamedItemNS: method,
1311
+ setNamedItem: method,
1312
+ setNamedItemNS: method
1313
+ };
1314
+ const createWindow = ($winId$, $parentWinId$, url, $visibilityState$, isIframeWindow, isDocumentImplementation) => {
1315
+ let cstrInstanceId;
1316
+ let cstrNodeName;
1317
+ let cstrNamespace;
1318
+ const WorkerBase = class {
1319
+ constructor(winId, instanceId, applyPath, instanceData, namespace) {
1320
+ this[WinIdKey] = winId || $winId$;
1321
+ this[InstanceIdKey] = instanceId || cstrInstanceId || randomId();
1322
+ this[ApplyPathKey] = applyPath || [];
1323
+ this[InstanceDataKey] = instanceData || cstrNodeName;
1324
+ this[NamespaceKey] = namespace || cstrNamespace;
1325
+ this[InstanceStateKey] = {};
1326
+ cstrInstanceId = cstrNodeName = cstrNamespace = void 0;
1327
+ }
1328
+ };
1329
+ const WorkerLocation = defineConstructorName(class extends URL {
1330
+ assign() {
1331
+ logWorker("location.assign(), noop");
1332
+ }
1333
+ reload() {
1334
+ logWorker("location.reload(), noop");
1335
+ }
1336
+ replace() {
1337
+ logWorker("location.replace(), noop");
1338
+ }
1339
+ }, "Location");
1340
+ const $location$ = new WorkerLocation(url);
1341
+ const $isSameOrigin$ = $location$.origin === webWorkerCtx.$origin$ || "about:blank" === $location$.origin;
1342
+ const $isTopWindow$ = $parentWinId$ === $winId$;
1343
+ const env = {};
1344
+ const getChildEnvs = () => {
1345
+ let childEnv = [];
1346
+ let envWinId;
1347
+ let otherEnv;
1348
+ for (envWinId in environments) {
1349
+ otherEnv = environments[envWinId];
1350
+ otherEnv.$parentWinId$ !== $winId$ || otherEnv.$isTopWindow$ || childEnv.push(otherEnv);
1351
+ }
1352
+ return childEnv;
1353
+ };
1354
+ const WorkerWindow = defineConstructorName(class extends WorkerBase {
1355
+ constructor() {
1356
+ super($winId$, $winId$);
1357
+ let win = this;
1358
+ let value;
1359
+ let historyState;
1360
+ let hasInitializedMedia = 0;
1361
+ let initWindowMedia = () => {
1362
+ if (!hasInitializedMedia) {
1363
+ (() => {
1364
+ if (!webWorkerCtx.$initWindowMedia$) {
1365
+ self.$bridgeToMedia$ = [ getter, setter, callMethod, constructGlobal, definePrototypePropertyDescriptor, randomId, WinIdKey, InstanceIdKey, ApplyPathKey ];
1366
+ webWorkerCtx.$importScripts$(partytownLibUrl("partytown-media.js?v=0.7.5"));
1367
+ webWorkerCtx.$initWindowMedia$ = self.$bridgeFromMedia$;
1368
+ delete self.$bridgeFromMedia$;
1369
+ }
1370
+ return webWorkerCtx.$initWindowMedia$;
1371
+ })()(WorkerBase, WorkerEventTargetProxy, env, win, windowMediaConstructors);
1372
+ hasInitializedMedia = 1;
1373
+ }
1374
+ };
1375
+ let nodeCstrs = {};
1376
+ let $createNode$ = (nodeName, instanceId, namespace) => {
1377
+ htmlMedia.includes(nodeName) && initWindowMedia();
1378
+ const NodeCstr = nodeCstrs[nodeName] ? nodeCstrs[nodeName] : nodeName.includes("-") ? nodeCstrs.UNKNOWN : nodeCstrs.I;
1379
+ cstrInstanceId = instanceId;
1380
+ cstrNodeName = nodeName;
1381
+ cstrNamespace = namespace;
1382
+ return new NodeCstr;
1383
+ };
1384
+ win.Window = WorkerWindow;
1385
+ win.name = name + `${normalizedWinId($winId$)} (${$winId$})`;
1386
+ createNodeCstr(win, env, WorkerBase);
1387
+ (win => {
1388
+ win.NodeList = defineConstructorName(NodeList, "NodeList");
1389
+ })(win);
1390
+ createNamedNodeMapCstr(win, WorkerBase);
1391
+ createCSSStyleDeclarationCstr(win, WorkerBase, "CSSStyleDeclaration");
1392
+ ((win, WorkerBase, cstrName) => {
1393
+ win[cstrName] = defineConstructorName(class extends WorkerBase {
1394
+ now() {
1395
+ return performance.now();
1396
+ }
1397
+ }, cstrName);
1398
+ })(win, WorkerBase, "Performance");
1399
+ ((win, nodeCstrs) => {
1400
+ const registry = new Map;
1401
+ win.customElements = {
1402
+ define(tagName, Cstr, opts) {
1403
+ registry.set(tagName, Cstr);
1404
+ nodeCstrs[tagName.toUpperCase()] = Cstr;
1405
+ const ceData = [ Cstr.name, Cstr.observedAttributes ];
1406
+ callMethod(win, [ "customElements", "define" ], [ tagName, ceData, opts ]);
1407
+ },
1408
+ get: tagName => registry.get(tagName) || callMethod(win, [ "customElements", "get" ], [ tagName ]),
1409
+ whenDefined: tagName => registry.has(tagName) ? Promise.resolve() : callMethod(win, [ "customElements", "whenDefined" ], [ tagName ]),
1410
+ upgrade: elm => callMethod(win, [ "customElements", "upgrade" ], [ elm ])
1411
+ };
1412
+ })(win, nodeCstrs);
1413
+ webWorkerCtx.$interfaces$.map((([cstrName, superCstrName, members, interfaceType, nodeName]) => {
1414
+ const SuperCstr = TrapConstructors[cstrName] ? WorkerTrapProxy : "EventTarget" === superCstrName ? WorkerEventTargetProxy : "Object" === superCstrName ? WorkerBase : win[superCstrName];
1415
+ const Cstr = win[cstrName] = defineConstructorName(12 === interfaceType ? class extends WorkerBase {
1416
+ constructor(...args) {
1417
+ super();
1418
+ constructGlobal(this, cstrName, args);
1419
+ }
1420
+ } : win[cstrName] || class extends SuperCstr {}, cstrName);
1421
+ nodeName && (nodeCstrs[nodeName] = Cstr);
1422
+ members.map((([memberName, memberType, staticValue]) => {
1423
+ memberName in Cstr.prototype || memberName in SuperCstr.prototype || ("string" == typeof memberType ? definePrototypeProperty(Cstr, memberName, {
1424
+ get() {
1425
+ if (!hasInstanceStateValue(this, memberName)) {
1426
+ const instanceId = this[InstanceIdKey];
1427
+ const applyPath = [ ...this[ApplyPathKey], memberName ];
1428
+ const PropCstr = win[memberType];
1429
+ PropCstr && setInstanceStateValue(this, memberName, new PropCstr($winId$, instanceId, applyPath));
1430
+ }
1431
+ return getInstanceStateValue(this, memberName);
1432
+ },
1433
+ set(value) {
1434
+ setInstanceStateValue(this, memberName, value);
1435
+ }
1436
+ }) : 5 === memberType ? definePrototypeValue(Cstr, memberName, (function(...args) {
1437
+ return callMethod(this, [ memberName ], args);
1438
+ })) : memberType > 0 && (void 0 !== staticValue ? definePrototypeValue(Cstr, memberName, staticValue) : definePrototypeProperty(Cstr, memberName, {
1439
+ get() {
1440
+ return getter(this, [ memberName ]);
1441
+ },
1442
+ set(value) {
1443
+ return setter(this, [ memberName ], value);
1444
+ }
1445
+ })));
1446
+ }));
1447
+ }));
1448
+ commaSplit("atob,btoa,crypto,indexedDB,setTimeout,setInterval,clearTimeout,clearInterval").map((globalName => {
1449
+ delete WorkerWindow.prototype[globalName];
1450
+ if (!(globalName in win)) {
1451
+ value = self[globalName];
1452
+ null != value && (win[globalName] = "function" != typeof value || value.toString().startsWith("class") ? value : value.bind(self));
1453
+ }
1454
+ }));
1455
+ Object.getOwnPropertyNames(self).map((globalName => {
1456
+ globalName in win || (win[globalName] = self[globalName]);
1457
+ }));
1458
+ windowMediaConstructors.map((cstrName => defineProperty(win, cstrName, {
1459
+ get() {
1460
+ initWindowMedia();
1461
+ return win[cstrName];
1462
+ }
1463
+ })));
1464
+ "trustedTypes" in self && (win.trustedTypes = self.trustedTypes);
1465
+ patchElement(win.Element, win.HTMLElement);
1466
+ patchDocument(win.Document, env, isDocumentImplementation);
1467
+ (WorkerDocumentFragment => {
1468
+ definePrototypeNodeType(WorkerDocumentFragment, 11);
1469
+ cachedTreeProps(WorkerDocumentFragment, elementStructurePropNames);
1470
+ })(win.DocumentFragment);
1471
+ patchHTMLAnchorElement(win.HTMLAnchorElement, env);
1472
+ (WorkerHTMLFormElement => {
1473
+ definePrototypePropertyDescriptor(WorkerHTMLFormElement, {});
1474
+ cachedProps(WorkerHTMLFormElement, "elements");
1475
+ })(win.HTMLFormElement);
1476
+ patchHTMLIFrameElement(win.HTMLIFrameElement);
1477
+ patchHTMLScriptElement(win.HTMLScriptElement, env);
1478
+ patchSvgElement(win.SVGGraphicsElement);
1479
+ patchDocumentElementChild(win.HTMLHeadElement, env);
1480
+ patchDocumentElementChild(win.HTMLBodyElement, env);
1481
+ ((WorkerHTMLHtmlElement, env) => {
1482
+ const DocumentElementDescriptorMap = {
1483
+ parentElement: {
1484
+ value: null
1485
+ },
1486
+ parentNode: {
1487
+ get: () => env.$document$
1488
+ }
1489
+ };
1490
+ definePrototypePropertyDescriptor(WorkerHTMLHtmlElement, DocumentElementDescriptorMap);
1491
+ })(win.HTMLHtmlElement, env);
1492
+ createCSSStyleSheetConstructor(win, "CSSStyleSheet");
1493
+ definePrototypeNodeType(win.Comment, 8);
1494
+ definePrototypeNodeType(win.DocumentType, 10);
1495
+ Object.assign(env, {
1496
+ $winId$: $winId$,
1497
+ $parentWinId$: $parentWinId$,
1498
+ $window$: new Proxy(win, {
1499
+ get: (win, propName) => {
1500
+ var _a;
1501
+ if ("string" != typeof propName || isNaN(propName)) {
1502
+ return (null === (_a = webWorkerCtx.$config$.mainWindowAccessors) || void 0 === _a ? void 0 : _a.includes(propName)) ? getter(this, [ propName ]) : win[propName];
1503
+ }
1504
+ {
1505
+ let frame = getChildEnvs()[propName];
1506
+ return frame ? frame.$window$ : void 0;
1507
+ }
1508
+ },
1509
+ has: () => true
1510
+ }),
1511
+ $document$: $createNode$("#document", $winId$ + ".d"),
1512
+ $documentElement$: $createNode$("HTML", $winId$ + ".e"),
1513
+ $head$: $createNode$("HEAD", $winId$ + ".h"),
1514
+ $body$: $createNode$("BODY", $winId$ + ".b"),
1515
+ $location$: $location$,
1516
+ $visibilityState$: $visibilityState$,
1517
+ $isSameOrigin$: $isSameOrigin$,
1518
+ $isTopWindow$: $isTopWindow$,
1519
+ $createNode$: $createNode$
1520
+ });
1521
+ win.requestAnimationFrame = cb => setTimeout((() => cb(performance.now())), 9);
1522
+ win.cancelAnimationFrame = id => clearTimeout(id);
1523
+ win.requestIdleCallback = (cb, start) => {
1524
+ start = Date.now();
1525
+ return setTimeout((() => cb({
1526
+ didTimeout: false,
1527
+ timeRemaining: () => Math.max(0, 50 - (Date.now() - start))
1528
+ })), 1);
1529
+ };
1530
+ win.cancelIdleCallback = id => clearTimeout(id);
1531
+ addStorageApi(win, "localStorage", webWorkerlocalStorage, $isSameOrigin$, env);
1532
+ addStorageApi(win, "sessionStorage", webWorkerSessionStorage, $isSameOrigin$, env);
1533
+ $isSameOrigin$ || (win.indexeddb = void 0);
1534
+ if (isIframeWindow) {
1535
+ historyState = {};
1536
+ win.history = {
1537
+ pushState(stateObj) {
1538
+ historyState = stateObj;
1539
+ },
1540
+ replaceState(stateObj) {
1541
+ historyState = stateObj;
1542
+ },
1543
+ get state() {
1544
+ return historyState;
1545
+ },
1546
+ length: 0
1547
+ };
1548
+ win.indexeddb = void 0;
1549
+ } else {
1550
+ const originalPushState = win.history.pushState.bind(win.history);
1551
+ const originalReplaceState = win.history.replaceState.bind(win.history);
1552
+ win.history.pushState = (stateObj, _, newUrl) => {
1553
+ false !== env.$propagateHistoryChange$ && originalPushState(stateObj, _, newUrl);
1554
+ };
1555
+ win.history.replaceState = (stateObj, _, newUrl) => {
1556
+ false !== env.$propagateHistoryChange$ && originalReplaceState(stateObj, _, newUrl);
1557
+ };
1558
+ }
1559
+ win.Worker = void 0;
1560
+ }
1561
+ addEventListener(...args) {
1562
+ "load" === args[0] ? env.$runWindowLoadEvent$ && setTimeout((() => args[1]({
1563
+ type: "load"
1564
+ }))) : callMethod(this, [ "addEventListener" ], args, 2);
1565
+ }
1566
+ get body() {
1567
+ return env.$body$;
1568
+ }
1569
+ get document() {
1570
+ return env.$document$;
1571
+ }
1572
+ get documentElement() {
1573
+ return env.$documentElement$;
1574
+ }
1575
+ fetch(input, init) {
1576
+ input = "string" == typeof input || input instanceof URL ? String(input) : input.url;
1577
+ return fetch(resolveUrl(env, input, "fetch"), init);
1578
+ }
1579
+ get frames() {
1580
+ return env.$window$;
1581
+ }
1582
+ get frameElement() {
1583
+ return $isTopWindow$ ? null : getOrCreateNodeInstance($parentWinId$, $winId$, "IFRAME");
1584
+ }
1585
+ get globalThis() {
1586
+ return env.$window$;
1587
+ }
1588
+ get head() {
1589
+ return env.$head$;
1590
+ }
1591
+ get length() {
1592
+ return getChildEnvs().length;
1593
+ }
1594
+ get location() {
1595
+ return $location$;
1596
+ }
1597
+ set location(loc) {
1598
+ $location$.href = loc + "";
1599
+ }
1600
+ get Image() {
1601
+ return createImageConstructor(env);
1602
+ }
1603
+ get navigator() {
1604
+ return (env => {
1605
+ let key;
1606
+ let nav = {
1607
+ sendBeacon: (url, body) => {
1608
+ if (webWorkerCtx.$config$.logSendBeaconRequests) {
1609
+ try {
1610
+ logWorker(`sendBeacon: ${resolveUrl(env, url, null)}${body ? ", data: " + JSON.stringify(body) : ""}`);
1611
+ } catch (e) {
1612
+ console.error(e);
1613
+ }
1614
+ }
1615
+ try {
1616
+ fetch(resolveUrl(env, url, null), {
1617
+ method: "POST",
1618
+ body: body,
1619
+ mode: "no-cors",
1620
+ keepalive: true
1621
+ });
1622
+ return true;
1623
+ } catch (e) {
1624
+ console.error(e);
1625
+ return false;
1626
+ }
1627
+ }
1628
+ };
1629
+ for (key in navigator) {
1630
+ nav[key] = navigator[key];
1631
+ }
1632
+ return nav;
1633
+ })(env);
1634
+ }
1635
+ get origin() {
1636
+ return $location$.origin;
1637
+ }
1638
+ set origin(_) {}
1639
+ get parent() {
1640
+ for (let envWinId in environments) {
1641
+ if (environments[envWinId].$winId$ === $parentWinId$) {
1642
+ return environments[envWinId].$window$;
1643
+ }
1644
+ }
1645
+ return env.$window$;
1646
+ }
1647
+ postMessage(...args) {
1648
+ if (environments[args[0]]) {
1649
+ len(postMessages) > 50 && postMessages.splice(0, 5);
1650
+ postMessages.push({
1651
+ $winId$: args[0],
1652
+ $data$: JSON.stringify(args[1])
1653
+ });
1654
+ args = args.slice(1);
1655
+ }
1656
+ callMethod(this, [ "postMessage" ], args, 3);
1657
+ }
1658
+ get self() {
1659
+ return env.$window$;
1660
+ }
1661
+ get top() {
1662
+ for (let envWinId in environments) {
1663
+ if (environments[envWinId].$isTopWindow$) {
1664
+ return environments[envWinId].$window$;
1665
+ }
1666
+ }
1667
+ return env.$window$;
1668
+ }
1669
+ get window() {
1670
+ return env.$window$;
1671
+ }
1672
+ get XMLHttpRequest() {
1673
+ const Xhr = XMLHttpRequest;
1674
+ const str = String(Xhr);
1675
+ const ExtendedXhr = defineConstructorName(class extends Xhr {
1676
+ open(...args) {
1677
+ args[1] = resolveUrl(env, args[1], "xhr");
1678
+ super.open(...args);
1679
+ }
1680
+ set withCredentials(_) {}
1681
+ toString() {
1682
+ return str;
1683
+ }
1684
+ }, getConstructorName(Xhr));
1685
+ ExtendedXhr.prototype.constructor.toString = () => str;
1686
+ return ExtendedXhr;
1687
+ }
1688
+ }, "Window");
1689
+ const WorkerTrapProxy = class extends WorkerBase {
1690
+ constructor(winId, instanceId, applyPath, nodeName) {
1691
+ super(winId, instanceId, applyPath, nodeName);
1692
+ return new Proxy(this, {
1693
+ get: (instance, propName) => getter(instance, [ propName ]),
1694
+ set(instance, propName, propValue) {
1695
+ setter(instance, [ propName ], propValue);
1696
+ return true;
1697
+ }
1698
+ });
1699
+ }
1700
+ };
1701
+ const WorkerEventTargetProxy = class extends WorkerBase {};
1702
+ eventTargetMethods.map((methodName => WorkerEventTargetProxy.prototype[methodName] = function(...args) {
1703
+ return callMethod(this, [ methodName ], args, 2);
1704
+ }));
1705
+ cachedProps(WorkerWindow, "devicePixelRatio");
1706
+ cachedDimensionProps(WorkerWindow);
1707
+ cachedDimensionMethods(WorkerWindow, [ "getComputedStyle" ]);
1708
+ new WorkerWindow;
1709
+ return env;
1710
+ };
1711
+ const TrapConstructors = {
1712
+ DOMStringMap: 1,
1713
+ NamedNodeMap: 1
1714
+ };
1715
+ const createEnvironment = ({$winId$: $winId$, $parentWinId$: $parentWinId$, $url$: $url$, $visibilityState$: $visibilityState$}, isIframeWindow, isDocumentImplementation) => {
1716
+ if (!environments[$winId$]) {
1717
+ environments[$winId$] = createWindow($winId$, $parentWinId$, $url$, $visibilityState$, isIframeWindow, isDocumentImplementation);
1718
+ {
1719
+ const winType = $winId$ === $parentWinId$ ? "top" : "iframe";
1720
+ logWorker(`Created ${winType} window ${normalizedWinId($winId$)} environment`, $winId$);
1721
+ }
1722
+ }
1723
+ webWorkerCtx.$postMessage$([ 7, $winId$ ]);
1724
+ return environments[$winId$];
1725
+ };
1726
+ const queuedEvents = [];
1727
+ const receiveMessageFromSandboxToWorker = ev => {
1728
+ const msg = ev.data;
1729
+ const msgType = msg[0];
1730
+ const msgValue = msg[1];
1731
+ if (webWorkerCtx.$isInitialized$) {
1732
+ if (7 === msgType) {
1733
+ (async initScript => {
1734
+ let winId = initScript.$winId$;
1735
+ let instanceId = initScript.$instanceId$;
1736
+ let instance = getOrCreateNodeInstance(winId, instanceId, "SCRIPT");
1737
+ let scriptContent = initScript.$content$;
1738
+ let scriptSrc = initScript.$url$;
1739
+ let scriptOrgSrc = initScript.$orgUrl$;
1740
+ let errorMsg = "";
1741
+ let env = environments[winId];
1742
+ let rsp;
1743
+ let javascriptContentTypes = [ "text/jscript", "text/javascript", "text/x-javascript", "application/javascript", "application/x-javascript", "text/ecmascript", "text/x-ecmascript", "application/ecmascript" ];
1744
+ if (scriptSrc) {
1745
+ try {
1746
+ scriptSrc = resolveToUrl(env, scriptSrc, "script") + "";
1747
+ setInstanceStateValue(instance, 4, scriptSrc);
1748
+ webWorkerCtx.$config$.logScriptExecution && logWorker(`Execute script src: ${scriptOrgSrc}`, winId);
1749
+ rsp = await fetch(scriptSrc);
1750
+ if (rsp.ok) {
1751
+ let responseContentType = rsp.headers.get("content-type");
1752
+ let shouldExecute = javascriptContentTypes.some((ct => {
1753
+ var _a, _b, _c;
1754
+ return null === (_c = null === (_a = null == responseContentType ? void 0 : responseContentType.toLowerCase) || void 0 === _a ? void 0 : (_b = _a.call(responseContentType)).includes) || void 0 === _c ? void 0 : _c.call(_b, ct);
1755
+ }));
1756
+ if (shouldExecute) {
1757
+ scriptContent = await rsp.text();
1758
+ env.$currentScriptId$ = instanceId;
1759
+ run(env, scriptContent, scriptOrgSrc || scriptSrc);
1760
+ }
1761
+ runStateLoadHandlers(instance, "load");
1762
+ } else {
1763
+ errorMsg = rsp.statusText;
1764
+ runStateLoadHandlers(instance, "error");
1765
+ }
1766
+ } catch (urlError) {
1767
+ console.error(urlError);
1768
+ errorMsg = String(urlError.stack || urlError);
1769
+ runStateLoadHandlers(instance, "error");
1770
+ }
1771
+ } else {
1772
+ scriptContent && (errorMsg = runScriptContent(env, instanceId, scriptContent, winId, errorMsg));
1773
+ }
1774
+ env.$currentScriptId$ = "";
1775
+ webWorkerCtx.$postMessage$([ 6, winId, instanceId, errorMsg ]);
1776
+ })(msgValue);
1777
+ } else if (9 === msgType) {
1778
+ (({$winId$: $winId$, $instanceId$: $instanceId$, $refId$: $refId$, $thisArg$: $thisArg$, $args$: $args$}) => {
1779
+ if (webWorkerRefsByRefId[$refId$]) {
1780
+ try {
1781
+ webWorkerRefsByRefId[$refId$].apply(deserializeFromMain($winId$, $instanceId$, [], $thisArg$), deserializeFromMain($winId$, $instanceId$, [], $args$));
1782
+ } catch (e) {
1783
+ console.error(e);
1784
+ }
1785
+ }
1786
+ })(msgValue);
1787
+ } else if (10 === msgType) {
1788
+ (({$winId$: $winId$, $forward$: $forward$, $args$: $args$}) => {
1789
+ try {
1790
+ let target = environments[$winId$].$window$;
1791
+ let i = 0;
1792
+ let l = len($forward$);
1793
+ for (;i < l; i++) {
1794
+ i + 1 < l ? target = target[$forward$[i]] : target[$forward$[i]].apply(target, deserializeFromMain(null, $winId$, [], $args$));
1795
+ }
1796
+ } catch (e) {
1797
+ console.error(e);
1798
+ }
1799
+ })(msgValue);
1800
+ } else if (5 === msgType) {
1801
+ createEnvironment(msgValue);
1802
+ } else if (8 === msgType) {
1803
+ if (1 !== environments[msgValue].$isInitialized$) {
1804
+ const winId = msgValue;
1805
+ const env = environments[winId];
1806
+ const winType = env.$winId$ === env.$parentWinId$ ? "top" : "iframe";
1807
+ logWorker(`Initialized ${winType} window ${normalizedWinId(winId)} environment 🎉`, winId);
1808
+ }
1809
+ environments[msgValue].$isInitialized$ = 1;
1810
+ environments[msgValue].$isLoading$ = 0;
1811
+ } else if (14 === msgType) {
1812
+ environments[msgValue].$visibilityState$ = msg[2];
1813
+ } else if (13 === msgType) {
1814
+ const $winId$ = msgValue.$winId$;
1815
+ const env = environments[$winId$];
1816
+ env.$location$.href = msgValue.url;
1817
+ !function($winId$, env, data) {
1818
+ const history = env.$window$.history;
1819
+ switch (data.type) {
1820
+ case 0:
1821
+ env.$propagateHistoryChange$ = false;
1822
+ try {
1823
+ history.pushState(data.state, "", data.newUrl);
1824
+ } catch (e) {}
1825
+ env.$propagateHistoryChange$ = true;
1826
+ break;
1827
+
1828
+ case 1:
1829
+ env.$propagateHistoryChange$ = false;
1830
+ try {
1831
+ history.replaceState(data.state, "", data.newUrl);
1832
+ } catch (e) {}
1833
+ env.$propagateHistoryChange$ = true;
1834
+ }
1835
+ }(msgValue.$winId$, env, msgValue);
1836
+ } else {
1837
+ 15 === msgType && ((_type, winId, instanceId, callbackName, args) => {
1838
+ const elm = getOrCreateNodeInstance(winId, instanceId);
1839
+ elm && "function" == typeof elm[callbackName] && elm[callbackName].apply(elm, args);
1840
+ })(...msg);
1841
+ }
1842
+ } else if (1 === msgType) {
1843
+ (initWebWorkerData => {
1844
+ const config = webWorkerCtx.$config$ = JSON.parse(initWebWorkerData.$config$);
1845
+ const locOrigin = initWebWorkerData.$origin$;
1846
+ webWorkerCtx.$importScripts$ = importScripts.bind(self);
1847
+ webWorkerCtx.$interfaces$ = initWebWorkerData.$interfaces$;
1848
+ webWorkerCtx.$libPath$ = initWebWorkerData.$libPath$;
1849
+ webWorkerCtx.$origin$ = locOrigin;
1850
+ webWorkerCtx.$postMessage$ = postMessage.bind(self);
1851
+ webWorkerCtx.$sharedDataBuffer$ = initWebWorkerData.$sharedDataBuffer$;
1852
+ webWorkerlocalStorage.set(locOrigin, initWebWorkerData.$localStorage$);
1853
+ webWorkerSessionStorage.set(locOrigin, initWebWorkerData.$sessionStorage$);
1854
+ self.importScripts = void 0;
1855
+ delete self.postMessage;
1856
+ delete self.WorkerGlobalScope;
1857
+ commaSplit("resolveUrl,get,set,apply").map((configName => {
1858
+ config[configName] && (config[configName] = new Function("return " + config[configName])());
1859
+ }));
1860
+ })(msgValue);
1861
+ webWorkerCtx.$postMessage$([ 2 ]);
1862
+ } else if (3 === msgType) {
1863
+ webWorkerCtx.$interfaces$ = [ ...webWorkerCtx.$interfaces$, ...msgValue ];
1864
+ webWorkerCtx.$isInitialized$ = 1;
1865
+ logWorker("Initialized web worker");
1866
+ webWorkerCtx.$postMessage$([ 4 ]);
1867
+ queuedEvents.length && logWorker(`Queued ready messages: ${queuedEvents.length}`);
1868
+ [ ...queuedEvents ].map(receiveMessageFromSandboxToWorker);
1869
+ queuedEvents.length = 0;
1870
+ } else {
1871
+ queuedEvents.push(ev);
1872
+ }
1873
+ };
1874
+ self.onmessage = receiveMessageFromSandboxToWorker;
1875
+ postMessage([ 0 ]);
1876
+ })(self);