react-server-dom-webpack 19.0.0-rc-a532d91d01-20240610 → 19.0.0-rc-34d0c5e357-20240607
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-client.browser.development.js +3246 -1796
- package/cjs/react-server-dom-webpack-client.edge.development.js +3522 -1985
- package/cjs/react-server-dom-webpack-client.node.development.js +3484 -1957
- package/cjs/react-server-dom-webpack-client.node.unbundled.development.js +3411 -1906
- package/cjs/react-server-dom-webpack-server.browser.development.js +5176 -3277
- package/cjs/react-server-dom-webpack-server.browser.production.js +78 -161
- package/cjs/react-server-dom-webpack-server.edge.development.js +5187 -3285
- package/cjs/react-server-dom-webpack-server.edge.production.js +79 -143
- package/cjs/react-server-dom-webpack-server.node.development.js +5320 -3347
- package/cjs/react-server-dom-webpack-server.node.production.js +85 -138
- package/cjs/react-server-dom-webpack-server.node.unbundled.development.js +5257 -3322
- package/cjs/react-server-dom-webpack-server.node.unbundled.production.js +85 -138
- package/package.json +3 -3
@@ -14,7 +14,6 @@ require("crypto");
|
|
14
14
|
var async_hooks = require("async_hooks"),
|
15
15
|
ReactDOM = require("react-dom"),
|
16
16
|
React = require("react"),
|
17
|
-
scheduleMicrotask = queueMicrotask,
|
18
17
|
currentView = null,
|
19
18
|
writtenBytes = 0,
|
20
19
|
destinationHasCapacity = !0;
|
@@ -708,8 +707,7 @@ if (!ReactSharedInternalsServer)
|
|
708
707
|
'The "react" package in this environment is not configured correctly. The "react-server" condition must be enabled in any environment that runs React Server Components.'
|
709
708
|
);
|
710
709
|
var ObjectPrototype = Object.prototype,
|
711
|
-
stringify = JSON.stringify
|
712
|
-
AbortSigil = {};
|
710
|
+
stringify = JSON.stringify;
|
713
711
|
function defaultErrorHandler(error) {
|
714
712
|
console.error(error);
|
715
713
|
}
|
@@ -790,14 +788,6 @@ function serializeThenable(request, task, thenable) {
|
|
790
788
|
newTask.id
|
791
789
|
);
|
792
790
|
default:
|
793
|
-
if (1 === request.status)
|
794
|
-
return (
|
795
|
-
(newTask.status = 3),
|
796
|
-
(task = stringify(serializeByValueID(request.fatalError))),
|
797
|
-
emitModelChunk(request, newTask.id, task),
|
798
|
-
request.abortableTasks.delete(newTask),
|
799
|
-
newTask.id
|
800
|
-
);
|
801
791
|
"string" !== typeof thenable.status &&
|
802
792
|
((thenable.status = "pending"),
|
803
793
|
thenable.then(
|
@@ -983,12 +973,7 @@ function renderFunctionComponent(request, task, key, Component, props) {
|
|
983
973
|
thenableIndexCounter = 0;
|
984
974
|
thenableState = prevThenableState;
|
985
975
|
Component = Component(props, void 0);
|
986
|
-
if (
|
987
|
-
if (
|
988
|
-
"object" === typeof Component &&
|
989
|
-
null !== Component &&
|
990
|
-
Component.$$typeof !== CLIENT_REFERENCE_TAG$1
|
991
|
-
) {
|
976
|
+
if ("object" === typeof Component && null !== Component) {
|
992
977
|
if ("function" === typeof Component.then) {
|
993
978
|
props = Component;
|
994
979
|
if ("fulfilled" === props.status) return props.value;
|
@@ -1081,7 +1066,6 @@ function renderElement(request, task, type, key, ref, props) {
|
|
1081
1066
|
case REACT_LAZY_TYPE:
|
1082
1067
|
var init = type._init;
|
1083
1068
|
type = init(type._payload);
|
1084
|
-
if (1 === request.status) throw AbortSigil;
|
1085
1069
|
return renderElement(request, task, type, key, ref, props);
|
1086
1070
|
case REACT_FORWARD_REF_TYPE:
|
1087
1071
|
return renderFunctionComponent(request, task, key, type.render, props);
|
@@ -1098,7 +1082,7 @@ function pingTask(request, task) {
|
|
1098
1082
|
pingedTasks.push(task);
|
1099
1083
|
1 === pingedTasks.length &&
|
1100
1084
|
((request.flushScheduled = null !== request.destination),
|
1101
|
-
|
1085
|
+
setImmediate(function () {
|
1102
1086
|
return performWork(request);
|
1103
1087
|
}));
|
1104
1088
|
}
|
@@ -1132,61 +1116,50 @@ function createTask(request, model, keyPath, implicitSlot, abortSet) {
|
|
1132
1116
|
);
|
1133
1117
|
} catch (thrownValue) {
|
1134
1118
|
if (
|
1135
|
-
((parentPropertyName =
|
1136
|
-
(parentPropertyName =
|
1137
|
-
"object" === typeof parentPropertyName &&
|
1138
|
-
null !== parentPropertyName &&
|
1139
|
-
(parentPropertyName.$$typeof === REACT_ELEMENT_TYPE ||
|
1140
|
-
parentPropertyName.$$typeof === REACT_LAZY_TYPE)),
|
1141
|
-
(value =
|
1119
|
+
((parentPropertyName =
|
1142
1120
|
thrownValue === SuspenseException
|
1143
1121
|
? getSuspendedThenable()
|
1144
1122
|
: thrownValue),
|
1145
|
-
|
1123
|
+
(value = task.model),
|
1124
|
+
(value =
|
1125
|
+
"object" === typeof value &&
|
1146
1126
|
null !== value &&
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
? "$L" + JSCompiler_inline_result.id.toString(16)
|
1171
|
-
: serializeByValueID(JSCompiler_inline_result.id);
|
1172
|
-
}
|
1173
|
-
else if (thrownValue === AbortSigil)
|
1174
|
-
(task.status = 3),
|
1175
|
-
(prevKeyPath = request.fatalError),
|
1176
|
-
(JSCompiler_inline_result = parentPropertyName
|
1177
|
-
? "$L" + prevKeyPath.toString(16)
|
1178
|
-
: serializeByValueID(prevKeyPath));
|
1179
|
-
else if (
|
1127
|
+
(value.$$typeof === REACT_ELEMENT_TYPE ||
|
1128
|
+
value.$$typeof === REACT_LAZY_TYPE)),
|
1129
|
+
"object" === typeof parentPropertyName &&
|
1130
|
+
null !== parentPropertyName &&
|
1131
|
+
"function" === typeof parentPropertyName.then)
|
1132
|
+
) {
|
1133
|
+
JSCompiler_inline_result = createTask(
|
1134
|
+
request,
|
1135
|
+
task.model,
|
1136
|
+
task.keyPath,
|
1137
|
+
task.implicitSlot,
|
1138
|
+
request.abortableTasks
|
1139
|
+
);
|
1140
|
+
var ping = JSCompiler_inline_result.ping;
|
1141
|
+
parentPropertyName.then(ping, ping);
|
1142
|
+
JSCompiler_inline_result.thenableState =
|
1143
|
+
getThenableStateAfterSuspending();
|
1144
|
+
task.keyPath = prevKeyPath;
|
1145
|
+
task.implicitSlot = prevImplicitSlot;
|
1146
|
+
JSCompiler_inline_result = value
|
1147
|
+
? "$L" + JSCompiler_inline_result.id.toString(16)
|
1148
|
+
: serializeByValueID(JSCompiler_inline_result.id);
|
1149
|
+
} else if (
|
1180
1150
|
((task.keyPath = prevKeyPath),
|
1181
1151
|
(task.implicitSlot = prevImplicitSlot),
|
1182
|
-
|
1152
|
+
value)
|
1183
1153
|
)
|
1184
1154
|
request.pendingChunks++,
|
1185
1155
|
(prevKeyPath = request.nextChunkId++),
|
1186
|
-
(prevImplicitSlot = logRecoverableError(
|
1156
|
+
(prevImplicitSlot = logRecoverableError(
|
1157
|
+
request,
|
1158
|
+
parentPropertyName
|
1159
|
+
)),
|
1187
1160
|
emitErrorChunk(request, prevKeyPath, prevImplicitSlot),
|
1188
1161
|
(JSCompiler_inline_result = "$L" + prevKeyPath.toString(16));
|
1189
|
-
else throw
|
1162
|
+
else throw parentPropertyName;
|
1190
1163
|
}
|
1191
1164
|
return JSCompiler_inline_result;
|
1192
1165
|
},
|
@@ -1337,11 +1310,12 @@ function renderModelDestructive(
|
|
1337
1310
|
parentPropertyName
|
1338
1311
|
);
|
1339
1312
|
case REACT_LAZY_TYPE:
|
1340
|
-
|
1341
|
-
|
1342
|
-
|
1343
|
-
|
1344
|
-
|
1313
|
+
return (
|
1314
|
+
(task.thenableState = null),
|
1315
|
+
(parentPropertyName = value._init),
|
1316
|
+
(value = parentPropertyName(value._payload)),
|
1317
|
+
renderModelDestructive(request, task, emptyRoot, "", value)
|
1318
|
+
);
|
1345
1319
|
case REACT_LEGACY_ELEMENT_TYPE:
|
1346
1320
|
throw Error(
|
1347
1321
|
'A React Element from an older version of React was rendered. This is not supported. It can happen if:\n- Multiple copies of the "react" package is used.\n- A library pre-bundled an old copy of "react" or "react/jsx-runtime".\n- A compiler tries to "inline" JSX instead of using the runtime.'
|
@@ -1601,18 +1575,14 @@ function logRecoverableError(request, error) {
|
|
1601
1575
|
}
|
1602
1576
|
function fatalError(request, error) {
|
1603
1577
|
null !== request.destination
|
1604
|
-
? ((request.status =
|
1605
|
-
: ((request.status =
|
1578
|
+
? ((request.status = 2), request.destination.destroy(error))
|
1579
|
+
: ((request.status = 1), (request.fatalError = error));
|
1606
1580
|
}
|
1607
1581
|
function emitErrorChunk(request, id, digest) {
|
1608
1582
|
digest = { digest: digest };
|
1609
1583
|
id = id.toString(16) + ":E" + stringify(digest) + "\n";
|
1610
1584
|
request.completedErrorChunks.push(id);
|
1611
1585
|
}
|
1612
|
-
function emitModelChunk(request, id, json) {
|
1613
|
-
id = id.toString(16) + ":" + json + "\n";
|
1614
|
-
request.completedRegularChunks.push(id);
|
1615
|
-
}
|
1616
1586
|
function emitTypedArrayChunk(request, id, tag, typedArray) {
|
1617
1587
|
request.pendingChunks++;
|
1618
1588
|
typedArray = new Uint8Array(
|
@@ -1664,12 +1634,12 @@ function emitChunk(request, task, value) {
|
|
1664
1634
|
: value instanceof DataView
|
1665
1635
|
? emitTypedArrayChunk(request, id, "V", value)
|
1666
1636
|
: ((value = stringify(value, task.toJSON)),
|
1667
|
-
|
1637
|
+
(task = task.id.toString(16) + ":" + value + "\n"),
|
1638
|
+
request.completedRegularChunks.push(task));
|
1668
1639
|
}
|
1669
1640
|
var emptyRoot = {};
|
1670
1641
|
function retryTask(request, task) {
|
1671
|
-
if (0 === task.status)
|
1672
|
-
task.status = 5;
|
1642
|
+
if (0 === task.status)
|
1673
1643
|
try {
|
1674
1644
|
modelRoot = task.model;
|
1675
1645
|
var resolvedModel = renderModelDestructive(
|
@@ -1686,8 +1656,9 @@ function retryTask(request, task) {
|
|
1686
1656
|
request.writtenObjects.set(resolvedModel, serializeByValueID(task.id)),
|
1687
1657
|
emitChunk(request, task, resolvedModel);
|
1688
1658
|
else {
|
1689
|
-
var json = stringify(resolvedModel)
|
1690
|
-
|
1659
|
+
var json = stringify(resolvedModel),
|
1660
|
+
processedChunk = task.id.toString(16) + ":" + json + "\n";
|
1661
|
+
request.completedRegularChunks.push(processedChunk);
|
1691
1662
|
}
|
1692
1663
|
request.abortableTasks.delete(task);
|
1693
1664
|
task.status = 1;
|
@@ -1696,23 +1667,10 @@ function retryTask(request, task) {
|
|
1696
1667
|
thrownValue === SuspenseException
|
1697
1668
|
? getSuspendedThenable()
|
1698
1669
|
: thrownValue;
|
1699
|
-
if ("object" === typeof x && null !== x && "function" === typeof x.then)
|
1700
|
-
|
1701
|
-
|
1702
|
-
|
1703
|
-
var model = stringify(serializeByValueID(request.fatalError));
|
1704
|
-
emitModelChunk(request, task.id, model);
|
1705
|
-
} else {
|
1706
|
-
task.status = 0;
|
1707
|
-
task.thenableState = getThenableStateAfterSuspending();
|
1708
|
-
var ping = task.ping;
|
1709
|
-
x.then(ping, ping);
|
1710
|
-
}
|
1711
|
-
else if (x === AbortSigil) {
|
1712
|
-
request.abortableTasks.delete(task);
|
1713
|
-
task.status = 3;
|
1714
|
-
var model$19 = stringify(serializeByValueID(request.fatalError));
|
1715
|
-
emitModelChunk(request, task.id, model$19);
|
1670
|
+
if ("object" === typeof x && null !== x && "function" === typeof x.then) {
|
1671
|
+
var ping = task.ping;
|
1672
|
+
x.then(ping, ping);
|
1673
|
+
task.thenableState = getThenableStateAfterSuspending();
|
1716
1674
|
} else {
|
1717
1675
|
request.abortableTasks.delete(task);
|
1718
1676
|
task.status = 4;
|
@@ -1721,7 +1679,6 @@ function retryTask(request, task) {
|
|
1721
1679
|
}
|
1722
1680
|
} finally {
|
1723
1681
|
}
|
1724
|
-
}
|
1725
1682
|
}
|
1726
1683
|
function performWork(request) {
|
1727
1684
|
var prevDispatcher = ReactSharedInternalsServer.H;
|
@@ -1803,7 +1760,7 @@ function flushCompletedChunks(request, destination) {
|
|
1803
1760
|
}
|
1804
1761
|
"function" === typeof destination.flush && destination.flush();
|
1805
1762
|
0 === request.pendingChunks &&
|
1806
|
-
(
|
1763
|
+
(destination.end(), (request.destination = null));
|
1807
1764
|
}
|
1808
1765
|
function startWork(request) {
|
1809
1766
|
request.flushScheduled = null !== request.destination;
|
@@ -1812,20 +1769,22 @@ function startWork(request) {
|
|
1812
1769
|
});
|
1813
1770
|
}
|
1814
1771
|
function enqueueFlush(request) {
|
1815
|
-
|
1772
|
+
if (
|
1773
|
+
!1 === request.flushScheduled &&
|
1816
1774
|
0 === request.pingedTasks.length &&
|
1817
|
-
null !== request.destination
|
1818
|
-
|
1775
|
+
null !== request.destination
|
1776
|
+
) {
|
1777
|
+
var destination = request.destination;
|
1778
|
+
request.flushScheduled = !0;
|
1819
1779
|
setImmediate(function () {
|
1820
|
-
request
|
1821
|
-
|
1822
|
-
|
1823
|
-
}));
|
1780
|
+
return flushCompletedChunks(request, destination);
|
1781
|
+
});
|
1782
|
+
}
|
1824
1783
|
}
|
1825
1784
|
function startFlowing(request, destination) {
|
1826
|
-
if (
|
1827
|
-
(request.status =
|
1828
|
-
else if (
|
1785
|
+
if (1 === request.status)
|
1786
|
+
(request.status = 2), destination.destroy(request.fatalError);
|
1787
|
+
else if (2 !== request.status && null === request.destination) {
|
1829
1788
|
request.destination = destination;
|
1830
1789
|
try {
|
1831
1790
|
flushCompletedChunks(request, destination);
|
@@ -1836,51 +1795,39 @@ function startFlowing(request, destination) {
|
|
1836
1795
|
}
|
1837
1796
|
function abort(request, reason) {
|
1838
1797
|
try {
|
1839
|
-
request.status = 1;
|
1840
1798
|
var abortableTasks = request.abortableTasks;
|
1841
1799
|
if (0 < abortableTasks.size) {
|
1842
1800
|
request.pendingChunks++;
|
1843
|
-
var errorId = request.nextChunkId
|
1844
|
-
|
1845
|
-
var error =
|
1801
|
+
var errorId = request.nextChunkId++,
|
1802
|
+
error =
|
1846
1803
|
void 0 === reason
|
1847
1804
|
? Error("The render was aborted by the server without a reason.")
|
1848
|
-
: "object" === typeof reason &&
|
1849
|
-
null !== reason &&
|
1850
|
-
"function" === typeof reason.then
|
1851
|
-
? Error("The render was aborted by the server with a promise.")
|
1852
1805
|
: reason,
|
1853
1806
|
digest = logRecoverableError(request, error);
|
1854
1807
|
emitErrorChunk(request, errorId, digest, error);
|
1855
1808
|
abortableTasks.forEach(function (task) {
|
1856
|
-
|
1857
|
-
|
1858
|
-
|
1859
|
-
|
1860
|
-
request.completedErrorChunks.push(task);
|
1861
|
-
}
|
1809
|
+
task.status = 3;
|
1810
|
+
var ref = serializeByValueID(errorId);
|
1811
|
+
task = encodeReferenceChunk(request, task.id, ref);
|
1812
|
+
request.completedErrorChunks.push(task);
|
1862
1813
|
});
|
1863
1814
|
abortableTasks.clear();
|
1864
1815
|
}
|
1865
1816
|
var abortListeners = request.abortListeners;
|
1866
1817
|
if (0 < abortListeners.size) {
|
1867
|
-
var error$
|
1818
|
+
var error$22 =
|
1868
1819
|
void 0 === reason
|
1869
1820
|
? Error("The render was aborted by the server without a reason.")
|
1870
|
-
: "object" === typeof reason &&
|
1871
|
-
null !== reason &&
|
1872
|
-
"function" === typeof reason.then
|
1873
|
-
? Error("The render was aborted by the server with a promise.")
|
1874
1821
|
: reason;
|
1875
1822
|
abortListeners.forEach(function (callback) {
|
1876
|
-
return callback(error$
|
1823
|
+
return callback(error$22);
|
1877
1824
|
});
|
1878
1825
|
abortListeners.clear();
|
1879
1826
|
}
|
1880
1827
|
null !== request.destination &&
|
1881
1828
|
flushCompletedChunks(request, request.destination);
|
1882
|
-
} catch (error$
|
1883
|
-
logRecoverableError(request, error$
|
1829
|
+
} catch (error$23) {
|
1830
|
+
logRecoverableError(request, error$23), fatalError(request, error$23);
|
1884
1831
|
}
|
1885
1832
|
}
|
1886
1833
|
function resolveServerReference(bundlerConfig, id) {
|
@@ -2291,8 +2238,8 @@ function parseReadableStream(response, reference, type) {
|
|
2291
2238
|
(previousBlockedChunk = chunk));
|
2292
2239
|
} else {
|
2293
2240
|
chunk = previousBlockedChunk;
|
2294
|
-
var chunk$
|
2295
|
-
chunk$
|
2241
|
+
var chunk$26 = createPendingChunk(response);
|
2242
|
+
chunk$26.then(
|
2296
2243
|
function (v) {
|
2297
2244
|
return controller.enqueue(v);
|
2298
2245
|
},
|
@@ -2300,10 +2247,10 @@ function parseReadableStream(response, reference, type) {
|
|
2300
2247
|
return controller.error(e);
|
2301
2248
|
}
|
2302
2249
|
);
|
2303
|
-
previousBlockedChunk = chunk$
|
2250
|
+
previousBlockedChunk = chunk$26;
|
2304
2251
|
chunk.then(function () {
|
2305
|
-
previousBlockedChunk === chunk$
|
2306
|
-
resolveModelChunk(chunk$
|
2252
|
+
previousBlockedChunk === chunk$26 && (previousBlockedChunk = null);
|
2253
|
+
resolveModelChunk(chunk$26, json, -1);
|
2307
2254
|
});
|
2308
2255
|
}
|
2309
2256
|
},
|
@@ -2661,12 +2608,12 @@ exports.decodeReplyFromBusboy = function (busboyStream, webpackMap, options) {
|
|
2661
2608
|
"React doesn't accept base64 encoded file uploads because we don't expect form data passed from a browser to ever encode data that way. If that's the wrong assumption, we can easily fix it."
|
2662
2609
|
);
|
2663
2610
|
pendingFiles++;
|
2664
|
-
var
|
2611
|
+
var JSCompiler_object_inline_chunks_216 = [];
|
2665
2612
|
value.on("data", function (chunk) {
|
2666
|
-
|
2613
|
+
JSCompiler_object_inline_chunks_216.push(chunk);
|
2667
2614
|
});
|
2668
2615
|
value.on("end", function () {
|
2669
|
-
var blob = new Blob(
|
2616
|
+
var blob = new Blob(JSCompiler_object_inline_chunks_216, {
|
2670
2617
|
type: mimeType
|
2671
2618
|
});
|
2672
2619
|
response._formData.append(name, blob, filename);
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-server-dom-webpack",
|
3
3
|
"description": "React Server Components bindings for DOM using Webpack. This is intended to be integrated into meta-frameworks. It is not intended to be imported directly.",
|
4
|
-
"version": "19.0.0-rc-
|
4
|
+
"version": "19.0.0-rc-34d0c5e357-20240607",
|
5
5
|
"keywords": [
|
6
6
|
"react"
|
7
7
|
],
|
@@ -77,8 +77,8 @@
|
|
77
77
|
"node": ">=0.10.0"
|
78
78
|
},
|
79
79
|
"peerDependencies": {
|
80
|
-
"react": "19.0.0-rc-
|
81
|
-
"react-dom": "19.0.0-rc-
|
80
|
+
"react": "19.0.0-rc-34d0c5e357-20240607",
|
81
|
+
"react-dom": "19.0.0-rc-34d0c5e357-20240607",
|
82
82
|
"webpack": "^5.59.0"
|
83
83
|
},
|
84
84
|
"dependencies": {
|