大活
This commit is contained in:
127
art-agent/frontend/node_modules/next/dist/server/node-environment-extensions/utils.js
generated
vendored
Normal file
127
art-agent/frontend/node_modules/next/dist/server/node-environment-extensions/utils.js
generated
vendored
Normal file
@@ -0,0 +1,127 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "io", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return io;
|
||||
}
|
||||
});
|
||||
const _workasyncstorageexternal = require("../app-render/work-async-storage.external");
|
||||
const _workunitasyncstorageexternal = require("../app-render/work-unit-async-storage.external");
|
||||
const _dynamicrendering = require("../app-render/dynamic-rendering");
|
||||
const _invarianterror = require("../../shared/lib/invariant-error");
|
||||
function io(expression, type) {
|
||||
const workUnitStore = _workunitasyncstorageexternal.workUnitAsyncStorage.getStore();
|
||||
const workStore = _workasyncstorageexternal.workAsyncStorage.getStore();
|
||||
if (!workUnitStore || !workStore) {
|
||||
return;
|
||||
}
|
||||
switch(workUnitStore.type){
|
||||
case 'prerender':
|
||||
case 'prerender-runtime':
|
||||
{
|
||||
const prerenderSignal = workUnitStore.controller.signal;
|
||||
if (prerenderSignal.aborted === false) {
|
||||
// If the prerender signal is already aborted we don't need to construct
|
||||
// any stacks because something else actually terminated the prerender.
|
||||
let message;
|
||||
switch(type){
|
||||
case 'time':
|
||||
message = `Route "${workStore.route}" used ${expression} instead of using \`performance\` or without explicitly calling \`await connection()\` beforehand. See more info here: https://nextjs.org/docs/messages/next-prerender-current-time`;
|
||||
break;
|
||||
case 'random':
|
||||
message = `Route "${workStore.route}" used ${expression} outside of \`"use cache"\` and without explicitly calling \`await connection()\` beforehand. See more info here: https://nextjs.org/docs/messages/next-prerender-random`;
|
||||
break;
|
||||
case 'crypto':
|
||||
message = `Route "${workStore.route}" used ${expression} outside of \`"use cache"\` and without explicitly calling \`await connection()\` beforehand. See more info here: https://nextjs.org/docs/messages/next-prerender-crypto`;
|
||||
break;
|
||||
default:
|
||||
throw Object.defineProperty(new _invarianterror.InvariantError('Unknown expression type in abortOnSynchronousPlatformIOAccess.'), "__NEXT_ERROR_CODE", {
|
||||
value: "E526",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
(0, _dynamicrendering.abortOnSynchronousPlatformIOAccess)(workStore.route, expression, applyOwnerStack(Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", {
|
||||
value: "E394",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
}), workUnitStore), workUnitStore);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 'prerender-client':
|
||||
{
|
||||
const prerenderSignal = workUnitStore.controller.signal;
|
||||
if (prerenderSignal.aborted === false) {
|
||||
// If the prerender signal is already aborted we don't need to construct
|
||||
// any stacks because something else actually terminated the prerender.
|
||||
let message;
|
||||
switch(type){
|
||||
case 'time':
|
||||
message = `Route "${workStore.route}" used ${expression} inside a Client Component without a Suspense boundary above it. See more info here: https://nextjs.org/docs/messages/next-prerender-current-time-client`;
|
||||
break;
|
||||
case 'random':
|
||||
message = `Route "${workStore.route}" used ${expression} inside a Client Component without a Suspense boundary above it. See more info here: https://nextjs.org/docs/messages/next-prerender-random-client`;
|
||||
break;
|
||||
case 'crypto':
|
||||
message = `Route "${workStore.route}" used ${expression} inside a Client Component without a Suspense boundary above it. See more info here: https://nextjs.org/docs/messages/next-prerender-crypto-client`;
|
||||
break;
|
||||
default:
|
||||
throw Object.defineProperty(new _invarianterror.InvariantError('Unknown expression type in abortOnSynchronousPlatformIOAccess.'), "__NEXT_ERROR_CODE", {
|
||||
value: "E526",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
(0, _dynamicrendering.abortOnSynchronousPlatformIOAccess)(workStore.route, expression, applyOwnerStack(Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", {
|
||||
value: "E394",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
}), workUnitStore), workUnitStore);
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 'request':
|
||||
if (workUnitStore.prerenderPhase === true) {
|
||||
(0, _dynamicrendering.trackSynchronousPlatformIOAccessInDev)(workUnitStore);
|
||||
}
|
||||
break;
|
||||
case 'prerender-ppr':
|
||||
case 'prerender-legacy':
|
||||
case 'cache':
|
||||
case 'private-cache':
|
||||
case 'unstable-cache':
|
||||
break;
|
||||
default:
|
||||
workUnitStore;
|
||||
}
|
||||
}
|
||||
function applyOwnerStack(error, workUnitStore) {
|
||||
// TODO: Instead of stitching the stacks here, we should log the original
|
||||
// error as-is when it occurs, and let `patchErrorInspect` handle adding the
|
||||
// owner stack, instead of logging it deferred in the `LogSafely` component
|
||||
// via `throwIfDisallowedDynamic`.
|
||||
if (process.env.NODE_ENV !== 'production' && workUnitStore.captureOwnerStack) {
|
||||
const ownerStack = workUnitStore.captureOwnerStack();
|
||||
if (ownerStack) {
|
||||
let stack = ownerStack;
|
||||
if (error.stack) {
|
||||
const frames = [];
|
||||
for (const frame of error.stack.split('\n').slice(1)){
|
||||
if (frame.includes('react_stack_bottom_frame')) {
|
||||
break;
|
||||
}
|
||||
frames.push(frame);
|
||||
}
|
||||
stack = '\n' + frames.join('\n') + stack;
|
||||
}
|
||||
error.stack = error.name + ': ' + error.message + stack;
|
||||
}
|
||||
}
|
||||
return error;
|
||||
}
|
||||
|
||||
//# sourceMappingURL=utils.js.map
|
||||
Reference in New Issue
Block a user