react-server-dom-webpack 18.3.0-next-4bf2113a1-20230206 → 18.3.0-next-758fc7fde-20230207
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/react-server-dom-webpack-node-register.js +38 -27
- package/cjs/react-server-dom-webpack-plugin.js +2 -2
- package/cjs/react-server-dom-webpack-server.browser.development.js +1 -14
- package/cjs/react-server-dom-webpack-server.browser.production.min.js +50 -51
- package/cjs/react-server-dom-webpack-server.edge.development.js +2481 -0
- package/cjs/react-server-dom-webpack-server.edge.production.min.js +60 -0
- package/esm/react-server-dom-webpack-node-loader.js +115 -71
- package/package.json +9 -4
- package/server.edge.js +7 -0
- package/umd/react-server-dom-webpack-server.browser.development.js +1 -14
- package/umd/react-server-dom-webpack-server.browser.production.min.js +34 -35
@@ -12,6 +12,8 @@
|
|
12
12
|
|
13
13
|
'use strict';
|
14
14
|
|
15
|
+
var acorn = require('acorn');
|
16
|
+
|
15
17
|
var url = require('url');
|
16
18
|
|
17
19
|
var Module = require('module');
|
@@ -227,8 +229,41 @@ module.exports = function register() {
|
|
227
229
|
}
|
228
230
|
}; // $FlowFixMe[prop-missing] found when upgrading Flow
|
229
231
|
|
230
|
-
Module.
|
231
|
-
|
232
|
+
var originalCompile = Module.prototype._compile; // $FlowFixMe[prop-missing] found when upgrading Flow
|
233
|
+
|
234
|
+
Module.prototype._compile = function (content, filename) {
|
235
|
+
// Do a quick check for the exact string. If it doesn't exist, don't
|
236
|
+
// bother parsing.
|
237
|
+
if (content.indexOf('use client') === -1) {
|
238
|
+
return originalCompile.apply(this, arguments);
|
239
|
+
}
|
240
|
+
|
241
|
+
var _acorn$parse = acorn.parse(content, {
|
242
|
+
ecmaVersion: '2019',
|
243
|
+
sourceType: 'source'
|
244
|
+
}),
|
245
|
+
body = _acorn$parse.body;
|
246
|
+
|
247
|
+
var useClient = false;
|
248
|
+
|
249
|
+
for (var i = 0; i < body.length; i++) {
|
250
|
+
var node = body[i];
|
251
|
+
|
252
|
+
if (node.type !== 'ExpressionStatement' || !node.directive) {
|
253
|
+
break;
|
254
|
+
}
|
255
|
+
|
256
|
+
if (node.directive === 'use client') {
|
257
|
+
useClient = true;
|
258
|
+
break;
|
259
|
+
}
|
260
|
+
}
|
261
|
+
|
262
|
+
if (!useClient) {
|
263
|
+
return originalCompile.apply(this, arguments);
|
264
|
+
}
|
265
|
+
|
266
|
+
var moduleId = url.pathToFileURL(filename).href;
|
232
267
|
var clientReference = Object.defineProperties({}, {
|
233
268
|
// Represents the whole Module object instead of a particular import.
|
234
269
|
name: {
|
@@ -245,30 +280,6 @@ module.exports = function register() {
|
|
245
280
|
}
|
246
281
|
}); // $FlowFixMe[incompatible-call] found when upgrading Flow
|
247
282
|
|
248
|
-
|
249
|
-
}; // $FlowFixMe[prop-missing] found when upgrading Flow
|
250
|
-
|
251
|
-
|
252
|
-
var originalResolveFilename = Module._resolveFilename; // $FlowFixMe[prop-missing] found when upgrading Flow
|
253
|
-
// $FlowFixMe[missing-this-annot]
|
254
|
-
|
255
|
-
Module._resolveFilename = function (request, parent, isMain, options) {
|
256
|
-
var resolved = originalResolveFilename.apply(this, arguments);
|
257
|
-
|
258
|
-
if (resolved.endsWith('.server.js')) {
|
259
|
-
if (parent && parent.filename && !parent.filename.endsWith('.server.js')) {
|
260
|
-
var reason;
|
261
|
-
|
262
|
-
if (request.endsWith('.server.js')) {
|
263
|
-
reason = "\"" + request + "\"";
|
264
|
-
} else {
|
265
|
-
reason = "\"" + request + "\" (which expands to \"" + resolved + "\")";
|
266
|
-
}
|
267
|
-
|
268
|
-
throw new Error("Cannot import " + reason + " from \"" + parent.filename + "\". " + 'By react-server convention, .server.js files can only be imported from other .server.js files. ' + 'That way nobody accidentally sends these to the client by indirectly importing it.');
|
269
|
-
}
|
270
|
-
}
|
271
|
-
|
272
|
-
return resolved;
|
283
|
+
this.exports = new Proxy(clientReference, proxyHandlers);
|
273
284
|
};
|
274
285
|
};
|
@@ -65,7 +65,7 @@ class ReactFlightWebpackPlugin {
|
|
65
65
|
this.clientReferences = [{
|
66
66
|
directory: '.',
|
67
67
|
recursive: true,
|
68
|
-
include: /\.
|
68
|
+
include: /\.(js|ts|jsx|tsx)$/
|
69
69
|
}];
|
70
70
|
} else if (typeof options.clientReferences === 'string' || !isArray(options.clientReferences)) {
|
71
71
|
this.clientReferences = [options.clientReferences];
|
@@ -169,7 +169,7 @@ class ReactFlightWebpackPlugin {
|
|
169
169
|
// TODO: Hook into deps instead of the target module.
|
170
170
|
// That way we know by the type of dep whether to include.
|
171
171
|
// It also resolves conflicts when the same module is in multiple chunks.
|
172
|
-
if (!/\.
|
172
|
+
if (!/\.(js|ts)x?$/.test(module.resource)) {
|
173
173
|
return;
|
174
174
|
}
|
175
175
|
|
@@ -59,10 +59,6 @@ function printWarning(level, format, args) {
|
|
59
59
|
function scheduleWork(callback) {
|
60
60
|
callback();
|
61
61
|
}
|
62
|
-
// TODO: Move this to some special WinterCG build.
|
63
|
-
|
64
|
-
var supportsRequestStorage = typeof AsyncLocalStorage === 'function';
|
65
|
-
var requestStorage = supportsRequestStorage ? new AsyncLocalStorage() : null;
|
66
62
|
var VIEW_SIZE = 512;
|
67
63
|
var currentView = null;
|
68
64
|
var writtenBytes = 0;
|
@@ -1103,11 +1099,6 @@ function createSignal() {
|
|
1103
1099
|
|
1104
1100
|
function resolveCache() {
|
1105
1101
|
if (currentCache) return currentCache;
|
1106
|
-
|
1107
|
-
if (supportsRequestStorage) {
|
1108
|
-
var cache = requestStorage.getStore();
|
1109
|
-
if (cache) return cache;
|
1110
|
-
} // Since we override the dispatcher all the time, we're effectively always
|
1111
1102
|
// active and so to support cache() and fetch() outside of render, we yield
|
1112
1103
|
// an empty Map.
|
1113
1104
|
|
@@ -2349,11 +2340,7 @@ function flushCompletedChunks(request, destination) {
|
|
2349
2340
|
}
|
2350
2341
|
|
2351
2342
|
function startWork(request) {
|
2352
|
-
|
2353
|
-
scheduleWork(function () {
|
2354
|
-
return requestStorage.run(request.cache, performWork, request);
|
2355
|
-
});
|
2356
|
-
} else {
|
2343
|
+
{
|
2357
2344
|
scheduleWork(function () {
|
2358
2345
|
return performWork(request);
|
2359
2346
|
});
|
@@ -7,54 +7,53 @@
|
|
7
7
|
* This source code is licensed under the MIT license found in the
|
8
8
|
* LICENSE file in the root directory of this source tree.
|
9
9
|
*/
|
10
|
-
'use strict';var aa=require("react");var e=
|
11
|
-
|
12
|
-
|
13
|
-
function
|
14
|
-
|
15
|
-
"
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
function
|
30
|
-
function
|
31
|
-
function
|
32
|
-
function
|
33
|
-
|
34
|
-
function
|
35
|
-
function
|
36
|
-
|
37
|
-
function
|
38
|
-
c
|
39
|
-
function
|
40
|
-
function
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
function
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
d.
|
50
|
-
|
51
|
-
Z(b,c));
|
52
|
-
|
53
|
-
function
|
54
|
-
|
55
|
-
|
56
|
-
function
|
57
|
-
|
58
|
-
function
|
59
|
-
|
60
|
-
a)}catch(k){V(d,k),Xa(d,k)}}},cancel:function(){}},{highWaterMark:0})};
|
10
|
+
'use strict';var aa=require("react");var e=null,m=0;function n(a,b){if(0!==b.length)if(512<b.length)0<m&&(a.enqueue(new Uint8Array(e.buffer,0,m)),e=new Uint8Array(512),m=0),a.enqueue(b);else{var c=e.length-m;c<b.length&&(0===c?a.enqueue(e):(e.set(b.subarray(0,c),m),a.enqueue(e),b=b.subarray(c)),e=new Uint8Array(512),m=0);e.set(b,m);m+=b.length}return!0}var p=new TextEncoder;function q(a){return p.encode(a)}function fa(a,b){"function"===typeof a.error?a.error(b):a.close()}
|
11
|
+
var r=JSON.stringify;function t(a,b,c){a=r(c);b=b.toString(16)+":"+a+"\n";return p.encode(b)}var u=Symbol.for("react.client.reference"),v=Symbol.for("react.element"),ha=Symbol.for("react.fragment"),ia=Symbol.for("react.provider"),ja=Symbol.for("react.server_context"),ka=Symbol.for("react.forward_ref"),la=Symbol.for("react.suspense"),ma=Symbol.for("react.suspense_list"),na=Symbol.for("react.memo"),w=Symbol.for("react.lazy"),oa=Symbol.for("react.default_value"),pa=Symbol.for("react.memo_cache_sentinel");
|
12
|
+
function x(a,b,c,d,f,g,h){this.acceptsBooleans=2===b||3===b||4===b;this.attributeName=d;this.attributeNamespace=f;this.mustUseProperty=c;this.propertyName=a;this.type=b;this.sanitizeURL=g;this.removeEmptyString=h}"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(a){new x(a,0,!1,a,null,!1,!1)});
|
13
|
+
[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(a){new x(a[0],1,!1,a[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(a){new x(a,2,!1,a.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(a){new x(a,2,!1,a,null,!1,!1)});
|
14
|
+
"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(a){new x(a,3,!1,a.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(a){new x(a,3,!0,a,null,!1,!1)});["capture","download"].forEach(function(a){new x(a,4,!1,a,null,!1,!1)});
|
15
|
+
["cols","rows","size","span"].forEach(function(a){new x(a,6,!1,a,null,!1,!1)});["rowSpan","start"].forEach(function(a){new x(a,5,!1,a.toLowerCase(),null,!1,!1)});var z=/[\-:]([a-z])/g;function A(a){return a[1].toUpperCase()}
|
16
|
+
"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(a){var b=a.replace(z,
|
17
|
+
A);new x(b,1,!1,a,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(a){var b=a.replace(z,A);new x(b,1,!1,a,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(a){var b=a.replace(z,A);new x(b,1,!1,a,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(a){new x(a,1,!1,a.toLowerCase(),null,!1,!1)});
|
18
|
+
new x("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(a){new x(a,1,!1,a.toLowerCase(),null,!0,!0)});
|
19
|
+
var B={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,
|
20
|
+
fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},qa=["Webkit","ms","Moz","O"];Object.keys(B).forEach(function(a){qa.forEach(function(b){b=b+a.charAt(0).toUpperCase()+a.substring(1);B[b]=B[a]})});var ra=Array.isArray;q('"></template>');q("<script>");q("\x3c/script>");q('<script src="');q('<script type="module" src="');q('" integrity="');q('" async="">\x3c/script>');q("\x3c!-- --\x3e");q(' style="');q(":");q(";");
|
21
|
+
q(" ");q('="');q('"');q('=""');q(">");q("/>");q(' selected=""');q("\n");q("<!DOCTYPE html>");q("</");q(">");q('<template id="');q('"></template>');q("\x3c!--$--\x3e");q('\x3c!--$?--\x3e<template id="');q('"></template>');q("\x3c!--$!--\x3e");q("\x3c!--/$--\x3e");q("<template");q('"');q(' data-dgst="');q(' data-msg="');q(' data-stck="');q("></template>");q('<div hidden id="');q('">');q("</div>");q('<svg aria-hidden="true" style="display:none" id="');q('">');q("</svg>");q('<math aria-hidden="true" style="display:none" id="');
|
22
|
+
q('">');q("</math>");q('<table hidden id="');q('">');q("</table>");q('<table hidden><tbody id="');q('">');q("</tbody></table>");q('<table hidden><tr id="');q('">');q("</tr></table>");q('<table hidden><colgroup id="');q('">');q("</colgroup></table>");q('$RS=function(a,b){a=document.getElementById(a);b=document.getElementById(b);for(a.parentNode.removeChild(a);a.firstChild;)b.parentNode.insertBefore(a.firstChild,b);b.parentNode.removeChild(b)};;$RS("');q('$RS("');q('","');q('")\x3c/script>');q('<template data-rsi="" data-sid="');
|
23
|
+
q('" data-pid="');q('$RC=function(b,c,e){c=document.getElementById(c);c.parentNode.removeChild(c);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var d=a.data;if("/$"===d)if(0===f)break;else f--;else"$"!==d&&"$?"!==d&&"$!"!==d||f++}d=a.nextSibling;e.removeChild(a);a=d}while(a);for(;c.firstChild;)e.insertBefore(c.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};;$RC("');
|
24
|
+
q('$RC("');q('$RC=function(b,c,e){c=document.getElementById(c);c.parentNode.removeChild(c);var a=document.getElementById(b);if(a){b=a.previousSibling;if(e)b.data="$!",a.setAttribute("data-dgst",e);else{e=b.parentNode;a=b.nextSibling;var f=0;do{if(a&&8===a.nodeType){var d=a.data;if("/$"===d)if(0===f)break;else f--;else"$"!==d&&"$?"!==d&&"$!"!==d||f++}d=a.nextSibling;e.removeChild(a);a=d}while(a);for(;c.firstChild;)e.insertBefore(c.firstChild,a);b.data="$"}b._reactRetry&&b._reactRetry()}};;$RM=new Map;\n$RR=function(p,q,v){function r(l){this.s=l}for(var t=$RC,u=$RM,m=new Map,n=document,g,e,f=n.querySelectorAll("link[data-precedence],style[data-precedence]"),d=0;e=f[d++];)m.set(e.dataset.precedence,g=e);e=0;f=[];for(var c,h,b,a;c=v[e++];){var k=0;h=c[k++];if(b=u.get(h))"l"!==b.s&&f.push(b);else{a=n.createElement("link");a.href=h;a.rel="stylesheet";for(a.dataset.precedence=d=c[k++];b=c[k++];)a.setAttribute(b,c[k++]);b=a._p=new Promise(function(l,w){a.onload=l;a.onerror=w});b.then(r.bind(b,\n"l"),r.bind(b,"e"));u.set(h,b);f.push(b);c=m.get(d)||g;c===g&&(g=a);m.set(d,a);c?c.parentNode.insertBefore(a,c.nextSibling):(d=n.head,d.insertBefore(a,d.firstChild))}}Promise.all(f).then(t.bind(null,p,q,""),t.bind(null,p,q,"Resource failed to load"))};;$RR("');
|
25
|
+
q('$RM=new Map;\n$RR=function(p,q,v){function r(l){this.s=l}for(var t=$RC,u=$RM,m=new Map,n=document,g,e,f=n.querySelectorAll("link[data-precedence],style[data-precedence]"),d=0;e=f[d++];)m.set(e.dataset.precedence,g=e);e=0;f=[];for(var c,h,b,a;c=v[e++];){var k=0;h=c[k++];if(b=u.get(h))"l"!==b.s&&f.push(b);else{a=n.createElement("link");a.href=h;a.rel="stylesheet";for(a.dataset.precedence=d=c[k++];b=c[k++];)a.setAttribute(b,c[k++]);b=a._p=new Promise(function(l,w){a.onload=l;a.onerror=w});b.then(r.bind(b,\n"l"),r.bind(b,"e"));u.set(h,b);f.push(b);c=m.get(d)||g;c===g&&(g=a);m.set(d,a);c?c.parentNode.insertBefore(a,c.nextSibling):(d=n.head,d.insertBefore(a,d.firstChild))}}Promise.all(f).then(t.bind(null,p,q,""),t.bind(null,p,q,"Resource failed to load"))};;$RR("');
|
26
|
+
q('$RR("');q('","');q('",');q('"');q(")\x3c/script>");q('<template data-rci="" data-bid="');q('<template data-rri="" data-bid="');q('" data-sid="');q('" data-sty="');q('$RX=function(b,c,d,e){var a=document.getElementById(b);a&&(b=a.previousSibling,b.data="$!",a=a.dataset,c&&(a.dgst=c),d&&(a.msg=d),e&&(a.stck=e),b._reactRetry&&b._reactRetry())};;$RX("');q('$RX("');q('"');q(",");q(")\x3c/script>");q('<template data-rxi="" data-bid="');q('" data-dgst="');q('" data-msg="');q('" data-stck="');q('<style data-precedence="');
|
27
|
+
q('"></style>');q("[");q(",[");q(",");q("]");var C=null;function D(a,b){if(a!==b){a.context._currentValue=a.parentValue;a=a.parent;var c=b.parent;if(null===a){if(null!==c)throw Error("The stacks must reach the root at the same time. This is a bug in React.");}else{if(null===c)throw Error("The stacks must reach the root at the same time. This is a bug in React.");D(a,c);b.context._currentValue=b.value}}}function sa(a){a.context._currentValue=a.parentValue;a=a.parent;null!==a&&sa(a)}
|
28
|
+
function ta(a){var b=a.parent;null!==b&&ta(b);a.context._currentValue=a.value}function ua(a,b){a.context._currentValue=a.parentValue;a=a.parent;if(null===a)throw Error("The depth must equal at least at zero before reaching the root. This is a bug in React.");a.depth===b.depth?D(a,b):ua(a,b)}
|
29
|
+
function va(a,b){var c=b.parent;if(null===c)throw Error("The depth must equal at least at zero before reaching the root. This is a bug in React.");a.depth===c.depth?D(a,c):va(a,c);b.context._currentValue=b.value}function G(a){var b=C;b!==a&&(null===b?ta(a):null===a?sa(b):b.depth===a.depth?D(b,a):b.depth>a.depth?ua(b,a):va(b,a),C=a)}function wa(a,b){var c=a._currentValue;a._currentValue=b;var d=C;return C=a={parent:d,depth:null===d?0:d.depth+1,context:a,parentValue:c,value:b}}var H=Error("Suspense Exception: This is not a real error! It's an implementation detail of `use` to interrupt the current render. You must either rethrow it immediately, or move the `use` call outside of the `try/catch` block. Capturing without rethrowing will lead to unexpected behavior.\n\nTo handle async errors, wrap your component in an error boundary, or call the promise's `.catch` method and pass the result to `use`");
|
30
|
+
function xa(){}function ya(a,b,c){c=a[c];void 0===c?a.push(b):c!==b&&(b.then(xa,xa),b=c);switch(b.status){case "fulfilled":return b.value;case "rejected":throw b.reason;default:if("string"!==typeof b.status)switch(a=b,a.status="pending",a.then(function(a){if("pending"===b.status){var c=b;c.status="fulfilled";c.value=a}},function(a){if("pending"===b.status){var c=b;c.status="rejected";c.reason=a}}),b.status){case "fulfilled":return b.value;case "rejected":throw b.reason;}I=b;throw H;}}var I=null;
|
31
|
+
function za(){if(null===I)throw Error("Expected a suspended thenable. This is a bug in React. Please file an issue.");var a=I;I=null;return a}var J=null,K=0,L=null;function Aa(){var a=L;L=null;return a}function Ba(a){return a._currentValue}
|
32
|
+
var Ga={useMemo:function(a){return a()},useCallback:function(a){return a},useDebugValue:function(){},useDeferredValue:M,useTransition:M,readContext:Ba,useContext:Ba,useReducer:M,useRef:M,useState:M,useInsertionEffect:M,useLayoutEffect:M,useImperativeHandle:M,useEffect:M,useId:Ca,useMutableSource:M,useSyncExternalStore:M,useCacheRefresh:function(){return Ea},useMemoCache:function(a){for(var b=Array(a),c=0;c<a;c++)b[c]=pa;return b},use:Fa};
|
33
|
+
function M(){throw Error("This Hook is not supported in Server Components.");}function Ea(){throw Error("Refreshing the cache is not supported in Server Components.");}function Ca(){if(null===J)throw Error("useId can only be used while React is rendering");var a=J.identifierCount++;return":"+J.identifierPrefix+"S"+a.toString(32)+":"}
|
34
|
+
function Fa(a){if(null!==a&&"object"===typeof a||"function"===typeof a){if("function"===typeof a.then){var b=K;K+=1;null===L&&(L=[]);return ya(L,a,b)}if(a.$$typeof===ja)return a._currentValue}throw Error("An unsupported type was passed to use(): "+String(a));}function N(){return(new AbortController).signal}
|
35
|
+
var Ha={getCacheSignal:function(){var a=O?O:new Map,b=a.get(N);void 0===b&&(b=N(),a.set(N,b));return b},getCacheForType:function(a){var b=O?O:new Map,c=b.get(a);void 0===c&&(c=a(),b.set(a,c));return c}},O=null,P=aa.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,Q=P.ContextRegistry,R=P.ReactCurrentDispatcher,S=P.ReactCurrentCache;function Ia(a){console.error(a)}
|
36
|
+
function Ja(a,b,c,d,f){if(null!==S.current&&S.current!==Ha)throw Error("Currently React only supports one RSC renderer at a time.");S.current=Ha;var g=new Set,h=[],k={status:0,fatalError:null,destination:null,bundlerConfig:b,cache:new Map,nextChunkId:0,pendingChunks:0,abortableTasks:g,pingedTasks:h,completedModuleChunks:[],completedJSONChunks:[],completedErrorChunks:[],writtenSymbols:new Map,writtenModules:new Map,writtenProviders:new Map,identifierPrefix:f||"",identifierCount:1,onError:void 0===
|
37
|
+
c?Ia:c,toJSON:function(a,b){return Ka(k,this,a,b)}};k.pendingChunks++;b=La(d);a=T(k,a,b,g);h.push(a);return k}var Ma={};
|
38
|
+
function Na(a,b){a.pendingChunks++;var c=T(a,null,C,a.abortableTasks);switch(b.status){case "fulfilled":return c.model=b.value,U(a,c),c.id;case "rejected":var d=V(a,b.reason);W(a,c.id,d);return c.id;default:"string"!==typeof b.status&&(b.status="pending",b.then(function(a){"pending"===b.status&&(b.status="fulfilled",b.value=a)},function(a){"pending"===b.status&&(b.status="rejected",b.reason=a)}))}b.then(function(b){c.model=b;U(a,c)},function(b){b=V(a,b);W(a,c.id,b)});return c.id}
|
39
|
+
function Oa(a){if("fulfilled"===a.status)return a.value;if("rejected"===a.status)throw a.reason;throw a;}function Pa(a){switch(a.status){case "fulfilled":case "rejected":break;default:"string"!==typeof a.status&&(a.status="pending",a.then(function(b){"pending"===a.status&&(a.status="fulfilled",a.value=b)},function(b){"pending"===a.status&&(a.status="rejected",a.reason=b)}))}return{$$typeof:w,_payload:a,_init:Oa}}
|
40
|
+
function X(a,b,c,d,f,g){if(null!==d&&void 0!==d)throw Error("Refs cannot be used in Server Components, nor passed to Client Components.");if("function"===typeof b){if(b.$$typeof===u)return[v,b,c,f];K=0;L=g;f=b(f);return"object"===typeof f&&null!==f&&"function"===typeof f.then?"fulfilled"===f.status?f.value:Pa(f):f}if("string"===typeof b)return[v,b,c,f];if("symbol"===typeof b)return b===ha?f.children:[v,b,c,f];if(null!=b&&"object"===typeof b){if(b.$$typeof===u)return[v,b,c,f];switch(b.$$typeof){case w:var h=
|
41
|
+
b._init;b=h(b._payload);return X(a,b,c,d,f,g);case ka:return a=b.render,K=0,L=g,a(f,void 0);case na:return X(a,b.type,c,d,f,g);case ia:return wa(b._context,f.value),[v,b,c,{value:f.value,children:f.children,__pop:Ma}]}}throw Error("Unsupported Server Component type: "+Qa(b));}function U(a,b){var c=a.pingedTasks;c.push(b);1===c.length&&Ra(a)}function T(a,b,c,d){var f={id:a.nextChunkId++,status:0,model:b,context:c,ping:function(){return U(a,f)},thenableState:null};d.add(f);return f}
|
42
|
+
function Sa(a,b,c,d){var f=d.filepath+"#"+d.name+(d.async?"#async":""),g=a.writtenModules,h=g.get(f);if(void 0!==h)return b[0]===v&&"1"===c?"$L"+h.toString(16):"$"+h.toString(16);try{var k=a.bundlerConfig[d.filepath][d.name];var l=d.async?{id:k.id,chunks:k.chunks,name:k.name,async:!0}:k;a.pendingChunks++;var y=a.nextChunkId++,ba=r(l),ca=y.toString(16)+":I"+ba+"\n";var da=p.encode(ca);a.completedModuleChunks.push(da);g.set(f,y);return b[0]===v&&"1"===c?"$L"+y.toString(16):"$"+y.toString(16)}catch(ea){return a.pendingChunks++,
|
43
|
+
b=a.nextChunkId++,c=V(a,ea),W(a,b,c),"$"+b.toString(16)}}function Ta(a){return Object.prototype.toString.call(a).replace(/^\[object (.*)\]$/,function(a,c){return c})}function Qa(a){switch(typeof a){case "string":return JSON.stringify(10>=a.length?a:a.substr(0,10)+"...");case "object":if(ra(a))return"[...]";a=Ta(a);return"Object"===a?"{...}":a;case "function":return"function";default:return String(a)}}
|
44
|
+
function Y(a){if("string"===typeof a)return a;switch(a){case la:return"Suspense";case ma:return"SuspenseList"}if("object"===typeof a)switch(a.$$typeof){case ka:return Y(a.render);case na:return Y(a.type);case w:var b=a._payload;a=a._init;try{return Y(a(b))}catch(c){}}return""}
|
45
|
+
function Z(a,b){var c=Ta(a);if("Object"!==c&&"Array"!==c)return c;c=-1;var d=0;if(ra(a)){var f="[";for(var g=0;g<a.length;g++){0<g&&(f+=", ");var h=a[g];h="object"===typeof h&&null!==h?Z(h):Qa(h);""+g===b?(c=f.length,d=h.length,f+=h):f=10>h.length&&40>f.length+h.length?f+h:f+"..."}f+="]"}else if(a.$$typeof===v)f="<"+Y(a.type)+"/>";else{f="{";g=Object.keys(a);for(h=0;h<g.length;h++){0<h&&(f+=", ");var k=g[h],l=JSON.stringify(k);f+=('"'+k+'"'===l?k:l)+": ";l=a[k];l="object"===typeof l&&null!==l?Z(l):
|
46
|
+
Qa(l);k===b?(c=f.length,d=l.length,f+=l):f=10>l.length&&40>f.length+l.length?f+l:f+"..."}f+="}"}return void 0===b?f:-1<c&&0<d?(a=" ".repeat(c)+"^".repeat(d),"\n "+f+"\n "+a):"\n "+f}
|
47
|
+
function Ka(a,b,c,d){switch(d){case v:return"$"}for(;"object"===typeof d&&null!==d&&(d.$$typeof===v||d.$$typeof===w);)try{switch(d.$$typeof){case v:var f=d;d=X(a,f.type,f.key,f.ref,f.props,null);break;case w:var g=d._init;d=g(d._payload)}}catch(h){c=h===H?za():h;if("object"===typeof c&&null!==c&&"function"===typeof c.then)return a.pendingChunks++,a=T(a,d,C,a.abortableTasks),d=a.ping,c.then(d,d),a.thenableState=Aa(),"$L"+a.id.toString(16);a.pendingChunks++;d=a.nextChunkId++;c=V(a,c);W(a,d,c);return"$L"+
|
48
|
+
d.toString(16)}if(null===d)return null;if("object"===typeof d){if(d.$$typeof===u)return Sa(a,b,c,d);if("function"===typeof d.then)return"$@"+Na(a,d).toString(16);if(d.$$typeof===ia)return d=d._context._globalName,b=a.writtenProviders,c=b.get(c),void 0===c&&(a.pendingChunks++,c=a.nextChunkId++,b.set(d,c),d=t(a,c,"$P"+d),a.completedJSONChunks.push(d)),"$"+c.toString(16);if(d===Ma){a=C;if(null===a)throw Error("Tried to pop a Context at the root of the app. This is a bug in React.");d=a.parentValue;a.context._currentValue=
|
49
|
+
d===oa?a.context._defaultValue:d;C=a.parent;return}return d}if("string"===typeof d)return a="$"===d[0]?"$"+d:d,a;if("boolean"===typeof d||"number"===typeof d||"undefined"===typeof d)return d;if("function"===typeof d){if(d.$$typeof===u)return Sa(a,b,c,d);if(/^on[A-Z]/.test(c))throw Error("Event handlers cannot be passed to Client Component props."+Z(b,c)+"\nIf you need interactivity, consider converting part of this to a Client Component.");throw Error("Functions cannot be passed directly to Client Components because they're not serializable."+
|
50
|
+
Z(b,c));}if("symbol"===typeof d){f=a.writtenSymbols;g=f.get(d);if(void 0!==g)return"$"+g.toString(16);g=d.description;if(Symbol.for(g)!==d)throw Error("Only global symbols received from Symbol.for(...) can be passed to Client Components. The symbol Symbol.for("+(d.description+") cannot be found among global symbols.")+Z(b,c));a.pendingChunks++;c=a.nextChunkId++;b=t(a,c,"$S"+g);a.completedModuleChunks.push(b);f.set(d,c);return"$"+c.toString(16)}if("bigint"===typeof d)throw Error("BigInt ("+d+") is not yet supported in Client Component props."+
|
51
|
+
Z(b,c));throw Error("Type "+typeof d+" is not supported in Client Component props."+Z(b,c));}function V(a,b){a=a.onError;b=a(b);if(null!=b&&"string"!==typeof b)throw Error('onError returned something with a type other than "string". onError should return a string and may return null or undefined but must not return anything else. It received something of type "'+typeof b+'" instead');return b||""}function Ua(a,b){null!==a.destination?(a.status=2,fa(a.destination,b)):(a.status=1,a.fatalError=b)}
|
52
|
+
function W(a,b,c){c={digest:c};b=b.toString(16)+":E"+r(c)+"\n";b=p.encode(b);a.completedErrorChunks.push(b)}
|
53
|
+
function Ra(a){var b=R.current,c=O;R.current=Ga;O=a.cache;J=a;try{var d=a.pingedTasks;a.pingedTasks=[];for(var f=0;f<d.length;f++){var g=d[f];var h=a;if(0===g.status){G(g.context);try{var k=g.model;if("object"===typeof k&&null!==k&&k.$$typeof===v){var l=k,y=g.thenableState;g.model=k;k=X(h,l.type,l.key,l.ref,l.props,y);for(g.thenableState=null;"object"===typeof k&&null!==k&&k.$$typeof===v;)l=k,g.model=k,k=X(h,l.type,l.key,l.ref,l.props,null)}var ba=g.id,ca=r(k,h.toJSON),da=ba.toString(16)+":"+ca+"\n";
|
54
|
+
var ea=p.encode(da);h.completedJSONChunks.push(ea);h.abortableTasks.delete(g);g.status=1}catch(E){var F=E===H?za():E;if("object"===typeof F&&null!==F&&"function"===typeof F.then){var Da=g.ping;F.then(Da,Da);g.thenableState=Aa()}else{h.abortableTasks.delete(g);g.status=4;var Xa=V(h,F);W(h,g.id,Xa)}}}}null!==a.destination&&Va(a,a.destination)}catch(E){V(a,E),Ua(a,E)}finally{R.current=b,O=c,J=null}}
|
55
|
+
function Va(a,b){e=new Uint8Array(512);m=0;try{for(var c=a.completedModuleChunks,d=0;d<c.length;d++)if(a.pendingChunks--,!n(b,c[d])){a.destination=null;d++;break}c.splice(0,d);var f=a.completedJSONChunks;for(d=0;d<f.length;d++)if(a.pendingChunks--,!n(b,f[d])){a.destination=null;d++;break}f.splice(0,d);var g=a.completedErrorChunks;for(d=0;d<g.length;d++)if(a.pendingChunks--,!n(b,g[d])){a.destination=null;d++;break}g.splice(0,d)}finally{e&&0<m&&(b.enqueue(new Uint8Array(e.buffer,0,m)),e=null,m=0)}0===
|
56
|
+
a.pendingChunks&&b.close()}function Wa(a,b){try{var c=a.abortableTasks;if(0<c.size){var d=V(a,void 0===b?Error("The render was aborted by the server without a reason."):b);a.pendingChunks++;var f=a.nextChunkId++;W(a,f,d);c.forEach(function(b){b.status=3;var c="$"+f.toString(16);b=t(a,b.id,c);a.completedErrorChunks.push(b)});c.clear()}null!==a.destination&&Va(a,a.destination)}catch(g){V(a,g),Ua(a,g)}}
|
57
|
+
function La(a){if(a){var b=C;G(null);for(var c=0;c<a.length;c++){var d=a[c],f=d[0];d=d[1];Q[f]||(Q[f]=aa.createServerContext(f,oa));wa(Q[f],d)}a=C;G(b);return a}return null}
|
58
|
+
exports.renderToReadableStream=function(a,b,c){var d=Ja(a,b,c?c.onError:void 0,c?c.context:void 0,c?c.identifierPrefix:void 0);if(c&&c.signal){var f=c.signal;if(f.aborted)Wa(d,f.reason);else{var g=function(){Wa(d,f.reason);f.removeEventListener("abort",g)};f.addEventListener("abort",g)}}return new ReadableStream({type:"bytes",start:function(){Ra(d)},pull:function(a){if(1===d.status)d.status=2,fa(a,d.fatalError);else if(2!==d.status&&null===d.destination){d.destination=a;try{Va(d,a)}catch(k){V(d,k),
|
59
|
+
Ua(d,k)}}},cancel:function(){}},{highWaterMark:0})};
|