Initial commit
This commit is contained in:
2
frontend/webapp/node_modules/next/dist/server/dev/dev-indicator-middleware.d.ts
generated
vendored
Normal file
2
frontend/webapp/node_modules/next/dist/server/dev/dev-indicator-middleware.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
import type { ServerResponse, IncomingMessage } from 'http';
|
||||
export declare function getDisableDevIndicatorMiddleware(): (req: IncomingMessage, res: ServerResponse, next: () => void) => Promise<void>;
|
||||
76
frontend/webapp/node_modules/next/dist/server/dev/dev-indicator-middleware.js
generated
vendored
Normal file
76
frontend/webapp/node_modules/next/dist/server/dev/dev-indicator-middleware.js
generated
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "getDisableDevIndicatorMiddleware", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return getDisableDevIndicatorMiddleware;
|
||||
}
|
||||
});
|
||||
const _middlewareresponse = require("../../client/components/react-dev-overlay/server/middleware-response");
|
||||
const _log = /*#__PURE__*/ _interop_require_wildcard(require("../../build/output/log"));
|
||||
const _devindicatorserverstate = require("./dev-indicator-server-state");
|
||||
function _getRequireWildcardCache(nodeInterop) {
|
||||
if (typeof WeakMap !== "function") return null;
|
||||
var cacheBabelInterop = new WeakMap();
|
||||
var cacheNodeInterop = new WeakMap();
|
||||
return (_getRequireWildcardCache = function(nodeInterop) {
|
||||
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
||||
})(nodeInterop);
|
||||
}
|
||||
function _interop_require_wildcard(obj, nodeInterop) {
|
||||
if (!nodeInterop && obj && obj.__esModule) {
|
||||
return obj;
|
||||
}
|
||||
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
||||
return {
|
||||
default: obj
|
||||
};
|
||||
}
|
||||
var cache = _getRequireWildcardCache(nodeInterop);
|
||||
if (cache && cache.has(obj)) {
|
||||
return cache.get(obj);
|
||||
}
|
||||
var newObj = {
|
||||
__proto__: null
|
||||
};
|
||||
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
||||
for(var key in obj){
|
||||
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
||||
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
||||
if (desc && (desc.get || desc.set)) {
|
||||
Object.defineProperty(newObj, key, desc);
|
||||
} else {
|
||||
newObj[key] = obj[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
newObj.default = obj;
|
||||
if (cache) {
|
||||
cache.set(obj, newObj);
|
||||
}
|
||||
return newObj;
|
||||
}
|
||||
const DISABLE_DEV_INDICATOR_PREFIX = '/__nextjs_disable_dev_indicator';
|
||||
const COOLDOWN_TIME_MS = process.env.__NEXT_DEV_INDICATOR_COOLDOWN_MS ? parseInt(process.env.__NEXT_DEV_INDICATOR_COOLDOWN_MS) : 1000 * 60 * 60 * 24;
|
||||
function getDisableDevIndicatorMiddleware() {
|
||||
return async function disableDevIndicatorMiddleware(req, res, next) {
|
||||
try {
|
||||
const { pathname } = new URL(`http://n${req.url}`);
|
||||
if (!pathname.startsWith(DISABLE_DEV_INDICATOR_PREFIX)) {
|
||||
return next();
|
||||
}
|
||||
if (req.method !== 'POST') {
|
||||
return _middlewareresponse.middlewareResponse.methodNotAllowed(res);
|
||||
}
|
||||
_devindicatorserverstate.devIndicatorServerState.disabledUntil = Date.now() + COOLDOWN_TIME_MS;
|
||||
return _middlewareresponse.middlewareResponse.noContent(res);
|
||||
} catch (err) {
|
||||
_log.error('Failed to disable the dev indicator:', err instanceof Error ? err.message : err);
|
||||
return _middlewareresponse.middlewareResponse.internalServerError(res);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
//# sourceMappingURL=dev-indicator-middleware.js.map
|
||||
1
frontend/webapp/node_modules/next/dist/server/dev/dev-indicator-middleware.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/dev-indicator-middleware.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["../../../src/server/dev/dev-indicator-middleware.ts"],"sourcesContent":["import type { ServerResponse, IncomingMessage } from 'http'\nimport { middlewareResponse } from '../../client/components/react-dev-overlay/server/middleware-response'\nimport * as Log from '../../build/output/log'\nimport { devIndicatorServerState } from './dev-indicator-server-state'\n\nconst DISABLE_DEV_INDICATOR_PREFIX = '/__nextjs_disable_dev_indicator'\n\nconst COOLDOWN_TIME_MS = process.env.__NEXT_DEV_INDICATOR_COOLDOWN_MS\n ? parseInt(process.env.__NEXT_DEV_INDICATOR_COOLDOWN_MS)\n : // 1 day from now\n 1000 * 60 * 60 * 24\n\nexport function getDisableDevIndicatorMiddleware() {\n return async function disableDevIndicatorMiddleware(\n req: IncomingMessage,\n res: ServerResponse,\n next: () => void\n ): Promise<void> {\n try {\n const { pathname } = new URL(`http://n${req.url}`)\n\n if (!pathname.startsWith(DISABLE_DEV_INDICATOR_PREFIX)) {\n return next()\n }\n\n if (req.method !== 'POST') {\n return middlewareResponse.methodNotAllowed(res)\n }\n\n devIndicatorServerState.disabledUntil = Date.now() + COOLDOWN_TIME_MS\n\n return middlewareResponse.noContent(res)\n } catch (err) {\n Log.error(\n 'Failed to disable the dev indicator:',\n err instanceof Error ? err.message : err\n )\n return middlewareResponse.internalServerError(res)\n }\n }\n}\n"],"names":["getDisableDevIndicatorMiddleware","DISABLE_DEV_INDICATOR_PREFIX","COOLDOWN_TIME_MS","process","env","__NEXT_DEV_INDICATOR_COOLDOWN_MS","parseInt","disableDevIndicatorMiddleware","req","res","next","pathname","URL","url","startsWith","method","middlewareResponse","methodNotAllowed","devIndicatorServerState","disabledUntil","Date","now","noContent","err","Log","error","Error","message","internalServerError"],"mappings":";;;;+BAYgBA;;;eAAAA;;;oCAXmB;6DACd;yCACmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAExC,MAAMC,+BAA+B;AAErC,MAAMC,mBAAmBC,QAAQC,GAAG,CAACC,gCAAgC,GACjEC,SAASH,QAAQC,GAAG,CAACC,gCAAgC,IAErD,OAAO,KAAK,KAAK;AAEd,SAASL;IACd,OAAO,eAAeO,8BACpBC,GAAoB,EACpBC,GAAmB,EACnBC,IAAgB;QAEhB,IAAI;YACF,MAAM,EAAEC,QAAQ,EAAE,GAAG,IAAIC,IAAI,CAAC,QAAQ,EAAEJ,IAAIK,GAAG,EAAE;YAEjD,IAAI,CAACF,SAASG,UAAU,CAACb,+BAA+B;gBACtD,OAAOS;YACT;YAEA,IAAIF,IAAIO,MAAM,KAAK,QAAQ;gBACzB,OAAOC,sCAAkB,CAACC,gBAAgB,CAACR;YAC7C;YAEAS,gDAAuB,CAACC,aAAa,GAAGC,KAAKC,GAAG,KAAKnB;YAErD,OAAOc,sCAAkB,CAACM,SAAS,CAACb;QACtC,EAAE,OAAOc,KAAK;YACZC,KAAIC,KAAK,CACP,wCACAF,eAAeG,QAAQH,IAAII,OAAO,GAAGJ;YAEvC,OAAOP,sCAAkB,CAACY,mBAAmB,CAACnB;QAChD;IACF;AACF"}
|
||||
4
frontend/webapp/node_modules/next/dist/server/dev/dev-indicator-server-state.d.ts
generated
vendored
Normal file
4
frontend/webapp/node_modules/next/dist/server/dev/dev-indicator-server-state.d.ts
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
export type DevIndicatorServerState = typeof devIndicatorServerState;
|
||||
export declare const devIndicatorServerState: {
|
||||
disabledUntil: number;
|
||||
};
|
||||
15
frontend/webapp/node_modules/next/dist/server/dev/dev-indicator-server-state.js
generated
vendored
Normal file
15
frontend/webapp/node_modules/next/dist/server/dev/dev-indicator-server-state.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "devIndicatorServerState", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return devIndicatorServerState;
|
||||
}
|
||||
});
|
||||
const devIndicatorServerState = {
|
||||
disabledUntil: 0
|
||||
};
|
||||
|
||||
//# sourceMappingURL=dev-indicator-server-state.js.map
|
||||
1
frontend/webapp/node_modules/next/dist/server/dev/dev-indicator-server-state.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/dev-indicator-server-state.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["../../../src/server/dev/dev-indicator-server-state.ts"],"sourcesContent":["export type DevIndicatorServerState = typeof devIndicatorServerState\n\nexport const devIndicatorServerState = {\n disabledUntil: 0,\n}\n"],"names":["devIndicatorServerState","disabledUntil"],"mappings":";;;;+BAEaA;;;eAAAA;;;AAAN,MAAMA,0BAA0B;IACrCC,eAAe;AACjB"}
|
||||
47
frontend/webapp/node_modules/next/dist/server/dev/hot-middleware.d.ts
generated
vendored
Normal file
47
frontend/webapp/node_modules/next/dist/server/dev/hot-middleware.d.ts
generated
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
import type { webpack } from 'next/dist/compiled/webpack/webpack';
|
||||
import type ws from 'next/dist/compiled/ws';
|
||||
import type { VersionInfo } from './parse-version-info';
|
||||
import type { HMR_ACTION_TYPES } from './hot-reloader-types';
|
||||
declare class EventStream {
|
||||
clients: Set<ws>;
|
||||
constructor();
|
||||
close(): void;
|
||||
handler(client: ws): void;
|
||||
publish(payload: any): void;
|
||||
}
|
||||
export declare class WebpackHotMiddleware {
|
||||
eventStream: EventStream;
|
||||
clientLatestStats: {
|
||||
ts: number;
|
||||
stats: webpack.Stats;
|
||||
} | null;
|
||||
middlewareLatestStats: {
|
||||
ts: number;
|
||||
stats: webpack.Stats;
|
||||
} | null;
|
||||
serverLatestStats: {
|
||||
ts: number;
|
||||
stats: webpack.Stats;
|
||||
} | null;
|
||||
closed: boolean;
|
||||
versionInfo: VersionInfo;
|
||||
devtoolsFrontendUrl: string | undefined;
|
||||
constructor(compilers: webpack.Compiler[], versionInfo: VersionInfo, devtoolsFrontendUrl: string | undefined);
|
||||
onClientInvalid: () => void;
|
||||
onClientDone: (statsResult: webpack.Stats) => void;
|
||||
onServerInvalid: () => void;
|
||||
onServerDone: (statsResult: webpack.Stats) => void;
|
||||
onEdgeServerInvalid: () => void;
|
||||
onEdgeServerDone: (statsResult: webpack.Stats) => void;
|
||||
/**
|
||||
* To sync we use the most recent stats but also we append middleware
|
||||
* errors. This is because it is possible that middleware fails to compile
|
||||
* and we still want to show the client overlay with the error while
|
||||
* the error page should be rendered just fine.
|
||||
*/
|
||||
onHMR: (client: ws) => void;
|
||||
publishStats: (statsResult: webpack.Stats) => void;
|
||||
publish: (payload: HMR_ACTION_TYPES) => void;
|
||||
close: () => void;
|
||||
}
|
||||
export {};
|
||||
220
frontend/webapp/node_modules/next/dist/server/dev/hot-middleware.js
generated
vendored
Normal file
220
frontend/webapp/node_modules/next/dist/server/dev/hot-middleware.js
generated
vendored
Normal file
@@ -0,0 +1,220 @@
|
||||
// Based on https://github.com/webpack-contrib/webpack-hot-middleware/blob/9708d781ae0e46179cf8ea1a94719de4679aaf53/middleware.js
|
||||
// Included License below
|
||||
// Copyright JS Foundation and other contributors
|
||||
// Permission is hereby granted, free of charge, to any person obtaining
|
||||
// a copy of this software and associated documentation files (the
|
||||
// 'Software'), to deal in the Software without restriction, including
|
||||
// without limitation the rights to use, copy, modify, merge, publish,
|
||||
// distribute, sublicense, and/or sell copies of the Software, and to
|
||||
// permit persons to whom the Software is furnished to do so, subject to
|
||||
// the following conditions:
|
||||
// The above copyright notice and this permission notice shall be
|
||||
// included in all copies or substantial portions of the Software.
|
||||
// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "WebpackHotMiddleware", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return WebpackHotMiddleware;
|
||||
}
|
||||
});
|
||||
const _utils = require("../../build/utils");
|
||||
const _hotreloadertypes = require("./hot-reloader-types");
|
||||
const _devindicatorserverstate = require("./dev-indicator-server-state");
|
||||
function isMiddlewareStats(stats) {
|
||||
for (const key of stats.compilation.entrypoints.keys()){
|
||||
if ((0, _utils.isMiddlewareFilename)(key)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
function statsToJson(stats) {
|
||||
if (!stats) return {};
|
||||
return stats.toJson({
|
||||
all: false,
|
||||
errors: true,
|
||||
hash: true,
|
||||
warnings: true
|
||||
});
|
||||
}
|
||||
function getStatsForSyncEvent(clientStats, serverStats) {
|
||||
if (!clientStats) return serverStats == null ? void 0 : serverStats.stats;
|
||||
if (!serverStats) return clientStats == null ? void 0 : clientStats.stats;
|
||||
// Prefer the server compiler stats if it has errors.
|
||||
// Otherwise we may end up in a state where the client compilation is the latest but without errors.
|
||||
// This causes the error overlay to not display the build error.
|
||||
if (serverStats.stats.hasErrors()) {
|
||||
return serverStats.stats;
|
||||
}
|
||||
// Return the latest stats
|
||||
return serverStats.ts > clientStats.ts ? serverStats.stats : clientStats.stats;
|
||||
}
|
||||
class EventStream {
|
||||
constructor(){
|
||||
this.clients = new Set();
|
||||
}
|
||||
close() {
|
||||
for (const wsClient of this.clients){
|
||||
// it's okay to not cleanly close these websocket connections, this is dev
|
||||
wsClient.terminate();
|
||||
}
|
||||
this.clients.clear();
|
||||
}
|
||||
handler(client) {
|
||||
this.clients.add(client);
|
||||
client.addEventListener('close', ()=>{
|
||||
this.clients.delete(client);
|
||||
});
|
||||
}
|
||||
publish(payload) {
|
||||
for (const wsClient of this.clients){
|
||||
wsClient.send(JSON.stringify(payload));
|
||||
}
|
||||
}
|
||||
}
|
||||
class WebpackHotMiddleware {
|
||||
constructor(compilers, versionInfo, devtoolsFrontendUrl){
|
||||
this.onClientInvalid = ()=>{
|
||||
var _this_serverLatestStats;
|
||||
if (this.closed || ((_this_serverLatestStats = this.serverLatestStats) == null ? void 0 : _this_serverLatestStats.stats.hasErrors())) return;
|
||||
this.publish({
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.BUILDING
|
||||
});
|
||||
};
|
||||
this.onClientDone = (statsResult)=>{
|
||||
var _this_serverLatestStats;
|
||||
this.clientLatestStats = {
|
||||
ts: Date.now(),
|
||||
stats: statsResult
|
||||
};
|
||||
if (this.closed || ((_this_serverLatestStats = this.serverLatestStats) == null ? void 0 : _this_serverLatestStats.stats.hasErrors())) return;
|
||||
this.publishStats(statsResult);
|
||||
};
|
||||
this.onServerInvalid = ()=>{
|
||||
var _this_serverLatestStats, _this_clientLatestStats;
|
||||
if (!((_this_serverLatestStats = this.serverLatestStats) == null ? void 0 : _this_serverLatestStats.stats.hasErrors())) return;
|
||||
this.serverLatestStats = null;
|
||||
if ((_this_clientLatestStats = this.clientLatestStats) == null ? void 0 : _this_clientLatestStats.stats) {
|
||||
this.publishStats(this.clientLatestStats.stats);
|
||||
}
|
||||
};
|
||||
this.onServerDone = (statsResult)=>{
|
||||
if (this.closed) return;
|
||||
if (statsResult.hasErrors()) {
|
||||
this.serverLatestStats = {
|
||||
ts: Date.now(),
|
||||
stats: statsResult
|
||||
};
|
||||
this.publishStats(statsResult);
|
||||
}
|
||||
};
|
||||
this.onEdgeServerInvalid = ()=>{
|
||||
var _this_middlewareLatestStats, _this_clientLatestStats;
|
||||
if (!((_this_middlewareLatestStats = this.middlewareLatestStats) == null ? void 0 : _this_middlewareLatestStats.stats.hasErrors())) return;
|
||||
this.middlewareLatestStats = null;
|
||||
if ((_this_clientLatestStats = this.clientLatestStats) == null ? void 0 : _this_clientLatestStats.stats) {
|
||||
this.publishStats(this.clientLatestStats.stats);
|
||||
}
|
||||
};
|
||||
this.onEdgeServerDone = (statsResult)=>{
|
||||
if (!isMiddlewareStats(statsResult)) {
|
||||
this.onServerInvalid();
|
||||
this.onServerDone(statsResult);
|
||||
return;
|
||||
}
|
||||
if (statsResult.hasErrors()) {
|
||||
this.middlewareLatestStats = {
|
||||
ts: Date.now(),
|
||||
stats: statsResult
|
||||
};
|
||||
this.publishStats(statsResult);
|
||||
}
|
||||
};
|
||||
/**
|
||||
* To sync we use the most recent stats but also we append middleware
|
||||
* errors. This is because it is possible that middleware fails to compile
|
||||
* and we still want to show the client overlay with the error while
|
||||
* the error page should be rendered just fine.
|
||||
*/ this.onHMR = (client)=>{
|
||||
if (this.closed) return;
|
||||
this.eventStream.handler(client);
|
||||
const syncStats = getStatsForSyncEvent(this.clientLatestStats, this.serverLatestStats);
|
||||
if (syncStats) {
|
||||
var _this_middlewareLatestStats;
|
||||
const stats = statsToJson(syncStats);
|
||||
const middlewareStats = statsToJson((_this_middlewareLatestStats = this.middlewareLatestStats) == null ? void 0 : _this_middlewareLatestStats.stats);
|
||||
if (_devindicatorserverstate.devIndicatorServerState.disabledUntil < Date.now()) {
|
||||
_devindicatorserverstate.devIndicatorServerState.disabledUntil = 0;
|
||||
}
|
||||
this.publish({
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.SYNC,
|
||||
hash: stats.hash,
|
||||
errors: [
|
||||
...stats.errors || [],
|
||||
...middlewareStats.errors || []
|
||||
],
|
||||
warnings: [
|
||||
...stats.warnings || [],
|
||||
...middlewareStats.warnings || []
|
||||
],
|
||||
versionInfo: this.versionInfo,
|
||||
debug: {
|
||||
devtoolsFrontendUrl: this.devtoolsFrontendUrl
|
||||
},
|
||||
devIndicator: _devindicatorserverstate.devIndicatorServerState
|
||||
});
|
||||
}
|
||||
};
|
||||
this.publishStats = (statsResult)=>{
|
||||
const stats = statsResult.toJson({
|
||||
all: false,
|
||||
hash: true,
|
||||
warnings: true,
|
||||
errors: true,
|
||||
moduleTrace: true
|
||||
});
|
||||
this.publish({
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.BUILT,
|
||||
hash: stats.hash,
|
||||
warnings: stats.warnings || [],
|
||||
errors: stats.errors || []
|
||||
});
|
||||
};
|
||||
this.publish = (payload)=>{
|
||||
if (this.closed) return;
|
||||
this.eventStream.publish(payload);
|
||||
};
|
||||
this.close = ()=>{
|
||||
if (this.closed) return;
|
||||
// Can't remove compiler plugins, so we just set a flag and noop if closed
|
||||
// https://github.com/webpack/tapable/issues/32#issuecomment-350644466
|
||||
this.closed = true;
|
||||
this.eventStream.close();
|
||||
};
|
||||
this.eventStream = new EventStream();
|
||||
this.clientLatestStats = null;
|
||||
this.middlewareLatestStats = null;
|
||||
this.serverLatestStats = null;
|
||||
this.closed = false;
|
||||
this.versionInfo = versionInfo;
|
||||
this.devtoolsFrontendUrl = devtoolsFrontendUrl;
|
||||
compilers[0].hooks.invalid.tap('webpack-hot-middleware', this.onClientInvalid);
|
||||
compilers[0].hooks.done.tap('webpack-hot-middleware', this.onClientDone);
|
||||
compilers[1].hooks.invalid.tap('webpack-hot-middleware', this.onServerInvalid);
|
||||
compilers[1].hooks.done.tap('webpack-hot-middleware', this.onServerDone);
|
||||
compilers[2].hooks.done.tap('webpack-hot-middleware', this.onEdgeServerDone);
|
||||
compilers[2].hooks.invalid.tap('webpack-hot-middleware', this.onEdgeServerInvalid);
|
||||
}
|
||||
}
|
||||
|
||||
//# sourceMappingURL=hot-middleware.js.map
|
||||
1
frontend/webapp/node_modules/next/dist/server/dev/hot-middleware.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/hot-middleware.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
3
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-turbopack.d.ts
generated
vendored
Normal file
3
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-turbopack.d.ts
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
import type { NextJsHotReloaderInterface } from './hot-reloader-types';
|
||||
import { type ServerFields, type SetupOpts } from '../lib/router-utils/setup-dev-bundler';
|
||||
export declare function createHotReloaderTurbopack(opts: SetupOpts, serverFields: ServerFields, distDir: string, resetFetch: () => void): Promise<NextJsHotReloaderInterface>;
|
||||
949
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-turbopack.js
generated
vendored
Normal file
949
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-turbopack.js
generated
vendored
Normal file
@@ -0,0 +1,949 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "createHotReloaderTurbopack", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return createHotReloaderTurbopack;
|
||||
}
|
||||
});
|
||||
const _promises = require("fs/promises");
|
||||
const _path = require("path");
|
||||
const _url = require("url");
|
||||
const _ws = /*#__PURE__*/ _interop_require_default(require("next/dist/compiled/ws"));
|
||||
const _store = require("../../build/output/store");
|
||||
const _hotreloadertypes = require("./hot-reloader-types");
|
||||
const _swc = require("../../build/swc");
|
||||
const _log = /*#__PURE__*/ _interop_require_wildcard(require("../../build/output/log"));
|
||||
const _hotreloaderwebpack = require("./hot-reloader-webpack");
|
||||
const _constants = require("../../shared/lib/constants");
|
||||
const _middlewareturbopack = require("../../client/components/react-dev-overlay/server/middleware-turbopack");
|
||||
const _utils = require("../../shared/lib/utils");
|
||||
const _utils1 = require("../utils");
|
||||
const _requirecache = require("./require-cache");
|
||||
const _renderserver = require("../lib/render-server");
|
||||
const _denormalizepagepath = require("../../shared/lib/page-path/denormalize-page-path");
|
||||
const _trace = require("../../trace");
|
||||
const _turbopackutils = require("./turbopack-utils");
|
||||
const _setupdevbundler = require("../lib/router-utils/setup-dev-bundler");
|
||||
const _manifestloader = require("../../shared/lib/turbopack/manifest-loader");
|
||||
const _ondemandentryhandler = require("./on-demand-entry-handler");
|
||||
const _entrykey = require("../../shared/lib/turbopack/entry-key");
|
||||
const _messages = require("./messages");
|
||||
const _encryptionutilsserver = require("../app-render/encryption-utils-server");
|
||||
const _apppageroutedefinition = require("../route-definitions/app-page-route-definition");
|
||||
const _apppaths = require("../../shared/lib/router/utils/app-paths");
|
||||
const _utils2 = require("../lib/utils");
|
||||
const _ismetadataroute = require("../../lib/metadata/is-metadata-route");
|
||||
const _patcherrorinspect = require("../patch-error-inspect");
|
||||
const _getnexterrorfeedbackmiddleware = require("../../client/components/react-dev-overlay/server/get-next-error-feedback-middleware");
|
||||
const _utils3 = require("../../shared/lib/turbopack/utils");
|
||||
const _getdevoverlayfontmiddleware = require("../../client/components/react-dev-overlay/font/get-dev-overlay-font-middleware");
|
||||
const _devindicatorserverstate = require("./dev-indicator-server-state");
|
||||
const _devindicatormiddleware = require("./dev-indicator-middleware");
|
||||
function _interop_require_default(obj) {
|
||||
return obj && obj.__esModule ? obj : {
|
||||
default: obj
|
||||
};
|
||||
}
|
||||
function _getRequireWildcardCache(nodeInterop) {
|
||||
if (typeof WeakMap !== "function") return null;
|
||||
var cacheBabelInterop = new WeakMap();
|
||||
var cacheNodeInterop = new WeakMap();
|
||||
return (_getRequireWildcardCache = function(nodeInterop) {
|
||||
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
||||
})(nodeInterop);
|
||||
}
|
||||
function _interop_require_wildcard(obj, nodeInterop) {
|
||||
if (!nodeInterop && obj && obj.__esModule) {
|
||||
return obj;
|
||||
}
|
||||
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
||||
return {
|
||||
default: obj
|
||||
};
|
||||
}
|
||||
var cache = _getRequireWildcardCache(nodeInterop);
|
||||
if (cache && cache.has(obj)) {
|
||||
return cache.get(obj);
|
||||
}
|
||||
var newObj = {
|
||||
__proto__: null
|
||||
};
|
||||
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
||||
for(var key in obj){
|
||||
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
||||
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
||||
if (desc && (desc.get || desc.set)) {
|
||||
Object.defineProperty(newObj, key, desc);
|
||||
} else {
|
||||
newObj[key] = obj[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
newObj.default = obj;
|
||||
if (cache) {
|
||||
cache.set(obj, newObj);
|
||||
}
|
||||
return newObj;
|
||||
}
|
||||
// import { getSupportedBrowsers } from '../../build/utils'
|
||||
const wsServer = new _ws.default.Server({
|
||||
noServer: true
|
||||
});
|
||||
const isTestMode = !!(process.env.NEXT_TEST_MODE || process.env.__NEXT_TEST_MODE || process.env.DEBUG);
|
||||
const sessionId = Math.floor(Number.MAX_SAFE_INTEGER * Math.random());
|
||||
/**
|
||||
* Replaces turbopack:///[project] with the specified project in the `source` field.
|
||||
*/ function rewriteTurbopackSources(projectRoot, sourceMap) {
|
||||
if ('sections' in sourceMap) {
|
||||
for (const section of sourceMap.sections){
|
||||
rewriteTurbopackSources(projectRoot, section.map);
|
||||
}
|
||||
} else {
|
||||
for(let i = 0; i < sourceMap.sources.length; i++){
|
||||
sourceMap.sources[i] = (0, _url.pathToFileURL)((0, _path.join)(projectRoot, sourceMap.sources[i].replace(/turbopack:\/\/\/\[project\]/, ''))).toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
function getSourceMapFromTurbopack(project, projectRoot, sourceURL) {
|
||||
let sourceMapJson = null;
|
||||
try {
|
||||
sourceMapJson = project.getSourceMapSync(sourceURL);
|
||||
} catch (err) {}
|
||||
if (sourceMapJson === null) {
|
||||
return undefined;
|
||||
} else {
|
||||
const payload = JSON.parse(sourceMapJson);
|
||||
// The sourcemap from Turbopack is not yet written to disk so its `sources`
|
||||
// are not absolute paths yet. We need to rewrite them to be absolute paths.
|
||||
rewriteTurbopackSources(projectRoot, payload);
|
||||
return payload;
|
||||
}
|
||||
}
|
||||
async function createHotReloaderTurbopack(opts, serverFields, distDir, resetFetch) {
|
||||
var _opts_nextConfig_turbopack, _nextConfig_watchOptions, _opts_nextConfig_experimental;
|
||||
const dev = true;
|
||||
const buildId = 'development';
|
||||
const { nextConfig, dir: projectPath } = opts;
|
||||
const { loadBindings } = require('../../build/swc');
|
||||
let bindings = await loadBindings();
|
||||
// For the debugging purpose, check if createNext or equivalent next instance setup in test cases
|
||||
// works correctly. Normally `run-test` hides output so only will be visible when `--debug` flag is used.
|
||||
if (isTestMode) {
|
||||
require('console').log('Creating turbopack project', {
|
||||
dir: projectPath,
|
||||
testMode: isTestMode
|
||||
});
|
||||
}
|
||||
const hasRewrites = opts.fsChecker.rewrites.afterFiles.length > 0 || opts.fsChecker.rewrites.beforeFiles.length > 0 || opts.fsChecker.rewrites.fallback.length > 0;
|
||||
const hotReloaderSpan = (0, _trace.trace)('hot-reloader', undefined, {
|
||||
version: "15.3.0"
|
||||
});
|
||||
// Ensure the hotReloaderSpan is flushed immediately as it's the parentSpan for all processing
|
||||
// of the current `next dev` invocation.
|
||||
hotReloaderSpan.stop();
|
||||
const encryptionKey = await (0, _encryptionutilsserver.generateEncryptionKeyBase64)({
|
||||
isBuild: false,
|
||||
distDir
|
||||
});
|
||||
// TODO: Implement
|
||||
let clientRouterFilters;
|
||||
if (nextConfig.experimental.clientRouterFilter) {
|
||||
// TODO this need to be set correctly for persistent caching to work
|
||||
}
|
||||
// const supportedBrowsers = await getSupportedBrowsers(dir, dev)
|
||||
const supportedBrowsers = [
|
||||
'last 1 Chrome versions, last 1 Firefox versions, last 1 Safari versions, last 1 Edge versions'
|
||||
];
|
||||
const project = await bindings.turbo.createProject({
|
||||
projectPath: projectPath,
|
||||
rootPath: ((_opts_nextConfig_turbopack = opts.nextConfig.turbopack) == null ? void 0 : _opts_nextConfig_turbopack.root) || opts.nextConfig.outputFileTracingRoot || projectPath,
|
||||
distDir,
|
||||
nextConfig: opts.nextConfig,
|
||||
jsConfig: await (0, _utils3.getTurbopackJsConfig)(projectPath, nextConfig),
|
||||
watch: {
|
||||
enable: dev,
|
||||
pollIntervalMs: (_nextConfig_watchOptions = nextConfig.watchOptions) == null ? void 0 : _nextConfig_watchOptions.pollIntervalMs
|
||||
},
|
||||
dev,
|
||||
env: process.env,
|
||||
defineEnv: (0, _swc.createDefineEnv)({
|
||||
isTurbopack: true,
|
||||
clientRouterFilters,
|
||||
config: nextConfig,
|
||||
dev,
|
||||
distDir,
|
||||
fetchCacheKeyPrefix: opts.nextConfig.experimental.fetchCacheKeyPrefix,
|
||||
hasRewrites,
|
||||
// TODO: Implement
|
||||
middlewareMatchers: undefined
|
||||
}),
|
||||
buildId,
|
||||
encryptionKey,
|
||||
previewProps: opts.fsChecker.prerenderManifest.preview,
|
||||
browserslistQuery: supportedBrowsers.join(', '),
|
||||
noMangling: false
|
||||
}, {
|
||||
persistentCaching: (0, _utils3.isPersistentCachingEnabled)(opts.nextConfig),
|
||||
memoryLimit: (_opts_nextConfig_experimental = opts.nextConfig.experimental) == null ? void 0 : _opts_nextConfig_experimental.turbopackMemoryLimit
|
||||
});
|
||||
(0, _patcherrorinspect.setBundlerFindSourceMapImplementation)(getSourceMapFromTurbopack.bind(null, project, projectPath));
|
||||
opts.onDevServerCleanup == null ? void 0 : opts.onDevServerCleanup.call(opts, async ()=>{
|
||||
(0, _patcherrorinspect.setBundlerFindSourceMapImplementation)(()=>undefined);
|
||||
await project.onExit();
|
||||
});
|
||||
const entrypointsSubscription = project.entrypointsSubscribe();
|
||||
const currentWrittenEntrypoints = new Map();
|
||||
const currentEntrypoints = {
|
||||
global: {
|
||||
app: undefined,
|
||||
document: undefined,
|
||||
error: undefined,
|
||||
middleware: undefined,
|
||||
instrumentation: undefined
|
||||
},
|
||||
page: new Map(),
|
||||
app: new Map()
|
||||
};
|
||||
const currentTopLevelIssues = new Map();
|
||||
const currentEntryIssues = new Map();
|
||||
const manifestLoader = new _manifestloader.TurbopackManifestLoader({
|
||||
buildId,
|
||||
distDir,
|
||||
encryptionKey
|
||||
});
|
||||
// Dev specific
|
||||
const changeSubscriptions = new Map();
|
||||
const serverPathState = new Map();
|
||||
const readyIds = new Set();
|
||||
let currentEntriesHandlingResolve;
|
||||
let currentEntriesHandling = new Promise((resolve)=>currentEntriesHandlingResolve = resolve);
|
||||
const assetMapper = new _turbopackutils.AssetMapper();
|
||||
function clearRequireCache(key, writtenEndpoint, { force } = {}) {
|
||||
if (force) {
|
||||
for (const { path, contentHash } of writtenEndpoint.serverPaths){
|
||||
serverPathState.set(path, contentHash);
|
||||
}
|
||||
} else {
|
||||
// Figure out if the server files have changed
|
||||
let hasChange = false;
|
||||
for (const { path, contentHash } of writtenEndpoint.serverPaths){
|
||||
// We ignore source maps
|
||||
if (path.endsWith('.map')) continue;
|
||||
const localKey = `${key}:${path}`;
|
||||
const localHash = serverPathState.get(localKey);
|
||||
const globalHash = serverPathState.get(path);
|
||||
if (localHash && localHash !== contentHash || globalHash && globalHash !== contentHash) {
|
||||
hasChange = true;
|
||||
serverPathState.set(key, contentHash);
|
||||
serverPathState.set(path, contentHash);
|
||||
} else {
|
||||
if (!localHash) {
|
||||
serverPathState.set(key, contentHash);
|
||||
}
|
||||
if (!globalHash) {
|
||||
serverPathState.set(path, contentHash);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!hasChange) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
resetFetch();
|
||||
const hasAppPaths = writtenEndpoint.serverPaths.some(({ path: p })=>p.startsWith('server/app'));
|
||||
if (hasAppPaths) {
|
||||
(0, _requirecache.deleteFromRequireCache)(require.resolve('next/dist/compiled/next-server/app-page-turbo.runtime.dev.js'));
|
||||
(0, _requirecache.deleteFromRequireCache)(require.resolve('next/dist/compiled/next-server/app-page-turbo-experimental.runtime.dev.js'));
|
||||
}
|
||||
const serverPaths = writtenEndpoint.serverPaths.map(({ path: p })=>(0, _path.join)(distDir, p));
|
||||
for (const file of serverPaths){
|
||||
(0, _renderserver.clearModuleContext)(file);
|
||||
(0, _requirecache.deleteCache)(file);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
const buildingIds = new Set();
|
||||
const startBuilding = (id, requestUrl, forceRebuild)=>{
|
||||
if (!forceRebuild && readyIds.has(id)) {
|
||||
return ()=>{};
|
||||
}
|
||||
if (buildingIds.size === 0) {
|
||||
_store.store.setState({
|
||||
loading: true,
|
||||
trigger: id,
|
||||
url: requestUrl
|
||||
}, true);
|
||||
}
|
||||
buildingIds.add(id);
|
||||
return function finishBuilding() {
|
||||
if (buildingIds.size === 0) {
|
||||
return;
|
||||
}
|
||||
readyIds.add(id);
|
||||
buildingIds.delete(id);
|
||||
if (buildingIds.size === 0) {
|
||||
hmrEventHappened = false;
|
||||
_store.store.setState({
|
||||
loading: false
|
||||
}, true);
|
||||
}
|
||||
};
|
||||
};
|
||||
let hmrEventHappened = false;
|
||||
let hmrHash = 0;
|
||||
const clients = new Set();
|
||||
const clientStates = new WeakMap();
|
||||
function sendToClient(client, payload) {
|
||||
client.send(JSON.stringify(payload));
|
||||
}
|
||||
function sendEnqueuedMessages() {
|
||||
for (const [, issueMap] of currentEntryIssues){
|
||||
if ([
|
||||
...issueMap.values()
|
||||
].filter((i)=>i.severity !== 'warning').length > 0) {
|
||||
// During compilation errors we want to delay the HMR events until errors are fixed
|
||||
return;
|
||||
}
|
||||
}
|
||||
for (const client of clients){
|
||||
const state = clientStates.get(client);
|
||||
if (!state) {
|
||||
continue;
|
||||
}
|
||||
for (const [, issueMap] of state.clientIssues){
|
||||
if ([
|
||||
...issueMap.values()
|
||||
].filter((i)=>i.severity !== 'warning').length > 0) {
|
||||
// During compilation errors we want to delay the HMR events until errors are fixed
|
||||
return;
|
||||
}
|
||||
}
|
||||
for (const payload of state.hmrPayloads.values()){
|
||||
sendToClient(client, payload);
|
||||
}
|
||||
state.hmrPayloads.clear();
|
||||
if (state.turbopackUpdates.length > 0) {
|
||||
sendToClient(client, {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.TURBOPACK_MESSAGE,
|
||||
data: state.turbopackUpdates
|
||||
});
|
||||
state.turbopackUpdates.length = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
const sendEnqueuedMessagesDebounce = (0, _utils1.debounce)(sendEnqueuedMessages, 2);
|
||||
const sendHmr = (id, payload)=>{
|
||||
for (const client of clients){
|
||||
var _clientStates_get;
|
||||
(_clientStates_get = clientStates.get(client)) == null ? void 0 : _clientStates_get.hmrPayloads.set(id, payload);
|
||||
}
|
||||
hmrEventHappened = true;
|
||||
sendEnqueuedMessagesDebounce();
|
||||
};
|
||||
function sendTurbopackMessage(payload) {
|
||||
// TODO(PACK-2049): For some reason we end up emitting hundreds of issues messages on bigger apps,
|
||||
// a lot of which are duplicates.
|
||||
// They are currently not handled on the client at all, so might as well not send them for now.
|
||||
payload.diagnostics = [];
|
||||
payload.issues = [];
|
||||
for (const client of clients){
|
||||
var _clientStates_get;
|
||||
(_clientStates_get = clientStates.get(client)) == null ? void 0 : _clientStates_get.turbopackUpdates.push(payload);
|
||||
}
|
||||
hmrEventHappened = true;
|
||||
sendEnqueuedMessagesDebounce();
|
||||
}
|
||||
async function subscribeToChanges(key, includeIssues, endpoint, makePayload, onError) {
|
||||
if (changeSubscriptions.has(key)) {
|
||||
return;
|
||||
}
|
||||
const { side } = (0, _entrykey.splitEntryKey)(key);
|
||||
const changedPromise = endpoint[`${side}Changed`](includeIssues);
|
||||
changeSubscriptions.set(key, changedPromise);
|
||||
try {
|
||||
const changed = await changedPromise;
|
||||
for await (const change of changed){
|
||||
(0, _utils3.processIssues)(currentEntryIssues, key, change, false, true);
|
||||
// TODO: Get an actual content hash from Turbopack.
|
||||
const payload = await makePayload(change, String(++hmrHash));
|
||||
if (payload) {
|
||||
sendHmr(key, payload);
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
changeSubscriptions.delete(key);
|
||||
const payload = await (onError == null ? void 0 : onError(e));
|
||||
if (payload) {
|
||||
sendHmr(key, payload);
|
||||
}
|
||||
return;
|
||||
}
|
||||
changeSubscriptions.delete(key);
|
||||
}
|
||||
async function unsubscribeFromChanges(key) {
|
||||
const subscription = await changeSubscriptions.get(key);
|
||||
if (subscription) {
|
||||
await (subscription.return == null ? void 0 : subscription.return.call(subscription));
|
||||
changeSubscriptions.delete(key);
|
||||
}
|
||||
currentEntryIssues.delete(key);
|
||||
}
|
||||
async function subscribeToHmrEvents(client, id) {
|
||||
const key = (0, _entrykey.getEntryKey)('assets', 'client', id);
|
||||
if (!(0, _turbopackutils.hasEntrypointForKey)(currentEntrypoints, key, assetMapper)) {
|
||||
// maybe throw an error / force the client to reload?
|
||||
return;
|
||||
}
|
||||
const state = clientStates.get(client);
|
||||
if (!state || state.subscriptions.has(id)) {
|
||||
return;
|
||||
}
|
||||
const subscription = project.hmrEvents(id);
|
||||
state.subscriptions.set(id, subscription);
|
||||
// The subscription will always emit once, which is the initial
|
||||
// computation. This is not a change, so swallow it.
|
||||
try {
|
||||
await subscription.next();
|
||||
for await (const data of subscription){
|
||||
(0, _utils3.processIssues)(state.clientIssues, key, data, false, true);
|
||||
if (data.type !== 'issues') {
|
||||
sendTurbopackMessage(data);
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
// The client might be using an HMR session from a previous server, tell them
|
||||
// to fully reload the page to resolve the issue. We can't use
|
||||
// `hotReloader.send` since that would force every connected client to
|
||||
// reload, only this client is out of date.
|
||||
const reloadAction = {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
|
||||
data: `error in HMR event subscription for ${id}: ${e}`
|
||||
};
|
||||
sendToClient(client, reloadAction);
|
||||
client.close();
|
||||
return;
|
||||
}
|
||||
}
|
||||
function unsubscribeFromHmrEvents(client, id) {
|
||||
const state = clientStates.get(client);
|
||||
if (!state) {
|
||||
return;
|
||||
}
|
||||
const subscription = state.subscriptions.get(id);
|
||||
subscription == null ? void 0 : subscription.return();
|
||||
const key = (0, _entrykey.getEntryKey)('assets', 'client', id);
|
||||
state.clientIssues.delete(key);
|
||||
}
|
||||
async function handleEntrypointsSubscription() {
|
||||
for await (const entrypoints of entrypointsSubscription){
|
||||
if (!currentEntriesHandlingResolve) {
|
||||
currentEntriesHandling = new Promise(// eslint-disable-next-line no-loop-func
|
||||
(resolve)=>currentEntriesHandlingResolve = resolve);
|
||||
}
|
||||
(0, _turbopackutils.processTopLevelIssues)(currentTopLevelIssues, entrypoints);
|
||||
await (0, _turbopackutils.handleEntrypoints)({
|
||||
entrypoints,
|
||||
currentEntrypoints,
|
||||
currentEntryIssues,
|
||||
manifestLoader,
|
||||
devRewrites: opts.fsChecker.rewrites,
|
||||
productionRewrites: undefined,
|
||||
logErrors: true,
|
||||
dev: {
|
||||
assetMapper,
|
||||
changeSubscriptions,
|
||||
clients,
|
||||
clientStates,
|
||||
serverFields,
|
||||
hooks: {
|
||||
handleWrittenEndpoint: (id, result, forceDeleteCache)=>{
|
||||
currentWrittenEntrypoints.set(id, result);
|
||||
return clearRequireCache(id, result, {
|
||||
force: forceDeleteCache
|
||||
});
|
||||
},
|
||||
propagateServerField: _setupdevbundler.propagateServerField.bind(null, opts),
|
||||
sendHmr,
|
||||
startBuilding,
|
||||
subscribeToChanges,
|
||||
unsubscribeFromChanges,
|
||||
unsubscribeFromHmrEvents
|
||||
}
|
||||
}
|
||||
});
|
||||
currentEntriesHandlingResolve();
|
||||
currentEntriesHandlingResolve = undefined;
|
||||
}
|
||||
}
|
||||
await (0, _promises.mkdir)((0, _path.join)(distDir, 'server'), {
|
||||
recursive: true
|
||||
});
|
||||
await (0, _promises.mkdir)((0, _path.join)(distDir, 'static', buildId), {
|
||||
recursive: true
|
||||
});
|
||||
await (0, _promises.writeFile)((0, _path.join)(distDir, 'package.json'), JSON.stringify({
|
||||
type: 'commonjs'
|
||||
}, null, 2));
|
||||
const middlewares = [
|
||||
(0, _middlewareturbopack.getOverlayMiddleware)(project, projectPath),
|
||||
(0, _middlewareturbopack.getSourceMapMiddleware)(project),
|
||||
(0, _getnexterrorfeedbackmiddleware.getNextErrorFeedbackMiddleware)(opts.telemetry),
|
||||
(0, _getdevoverlayfontmiddleware.getDevOverlayFontMiddleware)(),
|
||||
(0, _devindicatormiddleware.getDisableDevIndicatorMiddleware)()
|
||||
];
|
||||
const versionInfoPromise = (0, _hotreloaderwebpack.getVersionInfo)();
|
||||
let devtoolsFrontendUrl;
|
||||
const nodeDebugType = (0, _utils2.getNodeDebugType)();
|
||||
if (nodeDebugType) {
|
||||
const debugPort = process.debugPort;
|
||||
let debugInfo;
|
||||
try {
|
||||
// It requires to use 127.0.0.1 instead of localhost for server-side fetching.
|
||||
const debugInfoList = await fetch(`http://127.0.0.1:${debugPort}/json/list`).then((res)=>res.json());
|
||||
debugInfo = debugInfoList[0];
|
||||
} catch {}
|
||||
if (debugInfo) {
|
||||
devtoolsFrontendUrl = debugInfo.devtoolsFrontendUrl;
|
||||
}
|
||||
}
|
||||
const hotReloader = {
|
||||
turbopackProject: project,
|
||||
activeWebpackConfigs: undefined,
|
||||
serverStats: null,
|
||||
edgeServerStats: null,
|
||||
async run (req, res, _parsedUrl) {
|
||||
var _req_url;
|
||||
// intercept page chunks request and ensure them with turbopack
|
||||
if ((_req_url = req.url) == null ? void 0 : _req_url.startsWith('/_next/static/chunks/pages/')) {
|
||||
const params = (0, _hotreloaderwebpack.matchNextPageBundleRequest)(req.url);
|
||||
if (params) {
|
||||
const decodedPagePath = `/${params.path.map((param)=>decodeURIComponent(param)).join('/')}`;
|
||||
const denormalizedPagePath = (0, _denormalizepagepath.denormalizePagePath)(decodedPagePath);
|
||||
await hotReloader.ensurePage({
|
||||
page: denormalizedPagePath,
|
||||
clientOnly: false,
|
||||
definition: undefined,
|
||||
url: req.url
|
||||
}).catch(console.error);
|
||||
}
|
||||
}
|
||||
for (const middleware of middlewares){
|
||||
let calledNext = false;
|
||||
await middleware(req, res, ()=>{
|
||||
calledNext = true;
|
||||
});
|
||||
if (!calledNext) {
|
||||
return {
|
||||
finished: true
|
||||
};
|
||||
}
|
||||
}
|
||||
// Request was not finished.
|
||||
return {
|
||||
finished: undefined
|
||||
};
|
||||
},
|
||||
// TODO: Figure out if socket type can match the NextJsHotReloaderInterface
|
||||
onHMR (req, socket, head, onUpgrade) {
|
||||
wsServer.handleUpgrade(req, socket, head, (client)=>{
|
||||
onUpgrade(client);
|
||||
const clientIssues = new Map();
|
||||
const subscriptions = new Map();
|
||||
clients.add(client);
|
||||
clientStates.set(client, {
|
||||
clientIssues,
|
||||
hmrPayloads: new Map(),
|
||||
turbopackUpdates: [],
|
||||
subscriptions
|
||||
});
|
||||
client.on('close', ()=>{
|
||||
// Remove active subscriptions
|
||||
for (const subscription of subscriptions.values()){
|
||||
subscription.return == null ? void 0 : subscription.return.call(subscription);
|
||||
}
|
||||
clientStates.delete(client);
|
||||
clients.delete(client);
|
||||
});
|
||||
client.addEventListener('message', ({ data })=>{
|
||||
const parsedData = JSON.parse(typeof data !== 'string' ? data.toString() : data);
|
||||
// Next.js messages
|
||||
switch(parsedData.event){
|
||||
case 'span-end':
|
||||
{
|
||||
hotReloaderSpan.manualTraceChild(parsedData.spanName, (0, _turbopackutils.msToNs)(parsedData.startTime), (0, _turbopackutils.msToNs)(parsedData.endTime), parsedData.attributes);
|
||||
break;
|
||||
}
|
||||
case 'client-hmr-latency':
|
||||
hotReloaderSpan.manualTraceChild(parsedData.event, (0, _turbopackutils.msToNs)(parsedData.startTime), (0, _turbopackutils.msToNs)(parsedData.endTime), {
|
||||
updatedModules: parsedData.updatedModules,
|
||||
page: parsedData.page,
|
||||
isPageHidden: parsedData.isPageHidden
|
||||
});
|
||||
break;
|
||||
case 'client-error':
|
||||
case 'client-warning':
|
||||
case 'client-success':
|
||||
case 'server-component-reload-page':
|
||||
case 'client-reload-page':
|
||||
case 'client-removed-page':
|
||||
case 'client-full-reload':
|
||||
const { hadRuntimeError, dependencyChain } = parsedData;
|
||||
if (hadRuntimeError) {
|
||||
_log.warn(_messages.FAST_REFRESH_RUNTIME_RELOAD);
|
||||
}
|
||||
if (Array.isArray(dependencyChain) && typeof dependencyChain[0] === 'string') {
|
||||
const cleanedModulePath = dependencyChain[0].replace(/^\[project\]/, '.').replace(/ \[.*\] \(.*\)$/, '');
|
||||
_log.warn(`Fast Refresh had to perform a full reload when ${cleanedModulePath} changed. Read more: https://nextjs.org/docs/messages/fast-refresh-reload`);
|
||||
}
|
||||
break;
|
||||
case 'client-added-page':
|
||||
break;
|
||||
default:
|
||||
// Might be a Turbopack message...
|
||||
if (!parsedData.type) {
|
||||
throw Object.defineProperty(new Error(`unrecognized HMR message "${data}"`), "__NEXT_ERROR_CODE", {
|
||||
value: "E155",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
}
|
||||
// Turbopack messages
|
||||
switch(parsedData.type){
|
||||
case 'turbopack-subscribe':
|
||||
subscribeToHmrEvents(client, parsedData.path);
|
||||
break;
|
||||
case 'turbopack-unsubscribe':
|
||||
unsubscribeFromHmrEvents(client, parsedData.path);
|
||||
break;
|
||||
default:
|
||||
if (!parsedData.event) {
|
||||
throw Object.defineProperty(new Error(`unrecognized Turbopack HMR message "${data}"`), "__NEXT_ERROR_CODE", {
|
||||
value: "E492",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
const turbopackConnected = {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.TURBOPACK_CONNECTED,
|
||||
data: {
|
||||
sessionId
|
||||
}
|
||||
};
|
||||
sendToClient(client, turbopackConnected);
|
||||
const errors = [];
|
||||
for (const entryIssues of currentEntryIssues.values()){
|
||||
for (const issue of entryIssues.values()){
|
||||
if (issue.severity !== 'warning') {
|
||||
errors.push({
|
||||
message: (0, _utils3.formatIssue)(issue)
|
||||
});
|
||||
} else {
|
||||
(0, _turbopackutils.printNonFatalIssue)(issue);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (_devindicatorserverstate.devIndicatorServerState.disabledUntil < Date.now()) {
|
||||
_devindicatorserverstate.devIndicatorServerState.disabledUntil = 0;
|
||||
}
|
||||
;
|
||||
(async function() {
|
||||
const versionInfo = await versionInfoPromise;
|
||||
const sync = {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.SYNC,
|
||||
errors,
|
||||
warnings: [],
|
||||
hash: '',
|
||||
versionInfo,
|
||||
debug: {
|
||||
devtoolsFrontendUrl
|
||||
},
|
||||
devIndicator: _devindicatorserverstate.devIndicatorServerState
|
||||
};
|
||||
sendToClient(client, sync);
|
||||
})();
|
||||
});
|
||||
},
|
||||
send (action) {
|
||||
const payload = JSON.stringify(action);
|
||||
for (const client of clients){
|
||||
client.send(payload);
|
||||
}
|
||||
},
|
||||
setHmrServerError (_error) {
|
||||
// Not implemented yet.
|
||||
},
|
||||
clearHmrServerError () {
|
||||
// Not implemented yet.
|
||||
},
|
||||
async start () {},
|
||||
async getCompilationErrors (page) {
|
||||
const appEntryKey = (0, _entrykey.getEntryKey)('app', 'server', page);
|
||||
const pagesEntryKey = (0, _entrykey.getEntryKey)('pages', 'server', page);
|
||||
const topLevelIssues = currentTopLevelIssues.values();
|
||||
const thisEntryIssues = currentEntryIssues.get(appEntryKey) ?? currentEntryIssues.get(pagesEntryKey);
|
||||
if (thisEntryIssues !== undefined && thisEntryIssues.size > 0) {
|
||||
// If there is an error related to the requesting page we display it instead of the first error
|
||||
return [
|
||||
...topLevelIssues,
|
||||
...thisEntryIssues.values()
|
||||
].map((issue)=>{
|
||||
const formattedIssue = (0, _utils3.formatIssue)(issue);
|
||||
if (issue.severity === 'warning') {
|
||||
(0, _turbopackutils.printNonFatalIssue)(issue);
|
||||
return null;
|
||||
} else if ((0, _utils3.isWellKnownError)(issue)) {
|
||||
_log.error(formattedIssue);
|
||||
}
|
||||
return Object.defineProperty(new Error(formattedIssue), "__NEXT_ERROR_CODE", {
|
||||
value: "E394",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}).filter((error)=>error !== null);
|
||||
}
|
||||
// Otherwise, return all errors across pages
|
||||
const errors = [];
|
||||
for (const issue of topLevelIssues){
|
||||
if (issue.severity !== 'warning') {
|
||||
errors.push(Object.defineProperty(new Error((0, _utils3.formatIssue)(issue)), "__NEXT_ERROR_CODE", {
|
||||
value: "E394",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
}));
|
||||
}
|
||||
}
|
||||
for (const entryIssues of currentEntryIssues.values()){
|
||||
for (const issue of entryIssues.values()){
|
||||
if (issue.severity !== 'warning') {
|
||||
const message = (0, _utils3.formatIssue)(issue);
|
||||
errors.push(Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", {
|
||||
value: "E394",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
}));
|
||||
} else {
|
||||
(0, _turbopackutils.printNonFatalIssue)(issue);
|
||||
}
|
||||
}
|
||||
}
|
||||
return errors;
|
||||
},
|
||||
async invalidate ({ // .env files or tsconfig/jsconfig change
|
||||
reloadAfterInvalidation }) {
|
||||
if (reloadAfterInvalidation) {
|
||||
for (const [key, entrypoint] of currentWrittenEntrypoints){
|
||||
clearRequireCache(key, entrypoint, {
|
||||
force: true
|
||||
});
|
||||
}
|
||||
await (0, _renderserver.clearAllModuleContexts)();
|
||||
this.send({
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.SERVER_COMPONENT_CHANGES,
|
||||
hash: String(++hmrHash)
|
||||
});
|
||||
}
|
||||
},
|
||||
async buildFallbackError () {
|
||||
// Not implemented yet.
|
||||
},
|
||||
async ensurePage ({ page: inputPage, // Unused parameters
|
||||
// clientOnly,
|
||||
appPaths, definition, isApp, url: requestUrl }) {
|
||||
// When there is no route definition this is an internal file not a route the user added.
|
||||
// Middleware and instrumentation are handled in turbpack-utils.ts handleEntrypoints instead.
|
||||
if (!definition) {
|
||||
if (inputPage === '/middleware') return;
|
||||
if (inputPage === '/src/middleware') return;
|
||||
if (inputPage === '/instrumentation') return;
|
||||
if (inputPage === '/src/instrumentation') return;
|
||||
}
|
||||
return hotReloaderSpan.traceChild('ensure-page', {
|
||||
inputPage
|
||||
}).traceAsyncFn(async ()=>{
|
||||
if (_constants.BLOCKED_PAGES.includes(inputPage) && inputPage !== '/_error') {
|
||||
return;
|
||||
}
|
||||
await currentEntriesHandling;
|
||||
// TODO We shouldn't look into the filesystem again. This should use the information from entrypoints
|
||||
let routeDef = definition ?? await (0, _ondemandentryhandler.findPagePathData)(projectPath, inputPage, nextConfig.pageExtensions, opts.pagesDir, opts.appDir);
|
||||
// If the route is actually an app page route, then we should have access
|
||||
// to the app route definition, and therefore, the appPaths from it.
|
||||
if (!appPaths && definition && (0, _apppageroutedefinition.isAppPageRouteDefinition)(definition)) {
|
||||
appPaths = definition.appPaths;
|
||||
}
|
||||
let page = routeDef.page;
|
||||
if (appPaths) {
|
||||
const normalizedPage = (0, _apppaths.normalizeAppPath)(page);
|
||||
// filter out paths that are not exact matches (e.g. catchall)
|
||||
const matchingAppPaths = appPaths.filter((path)=>(0, _apppaths.normalizeAppPath)(path) === normalizedPage);
|
||||
// the last item in the array is the root page, if there are parallel routes
|
||||
page = matchingAppPaths[matchingAppPaths.length - 1];
|
||||
}
|
||||
const pathname = (definition == null ? void 0 : definition.pathname) ?? inputPage;
|
||||
if (page === '/_error') {
|
||||
let finishBuilding = startBuilding(pathname, requestUrl, false);
|
||||
try {
|
||||
await (0, _turbopackutils.handlePagesErrorRoute)({
|
||||
currentEntryIssues,
|
||||
entrypoints: currentEntrypoints,
|
||||
manifestLoader,
|
||||
devRewrites: opts.fsChecker.rewrites,
|
||||
productionRewrites: undefined,
|
||||
logErrors: true,
|
||||
hooks: {
|
||||
subscribeToChanges,
|
||||
handleWrittenEndpoint: (id, result, forceDeleteCache)=>{
|
||||
currentWrittenEntrypoints.set(id, result);
|
||||
assetMapper.setPathsForKey(id, result.clientPaths);
|
||||
return clearRequireCache(id, result, {
|
||||
force: forceDeleteCache
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
} finally{
|
||||
finishBuilding();
|
||||
}
|
||||
return;
|
||||
}
|
||||
const isInsideAppDir = routeDef.bundlePath.startsWith('app/');
|
||||
const isEntryMetadataRouteFile = (0, _ismetadataroute.isMetadataRouteFile)(routeDef.filename.replace(opts.appDir || '', ''), nextConfig.pageExtensions, true);
|
||||
const normalizedAppPage = isEntryMetadataRouteFile ? (0, _turbopackutils.normalizedPageToTurbopackStructureRoute)(page, (0, _path.extname)(routeDef.filename)) : page;
|
||||
const route = isInsideAppDir ? currentEntrypoints.app.get(normalizedAppPage) : currentEntrypoints.page.get(page);
|
||||
if (!route) {
|
||||
// TODO: why is this entry missing in turbopack?
|
||||
if (page === '/middleware') return;
|
||||
if (page === '/src/middleware') return;
|
||||
if (page === '/instrumentation') return;
|
||||
if (page === '/src/instrumentation') return;
|
||||
throw new _utils.PageNotFoundError(`route not found ${page}`);
|
||||
}
|
||||
// We don't throw on ensureOpts.isApp === true for page-api
|
||||
// since this can happen when app pages make
|
||||
// api requests to page API routes.
|
||||
if (isApp && route.type === 'page') {
|
||||
throw Object.defineProperty(new Error(`mis-matched route type: isApp && page for ${page}`), "__NEXT_ERROR_CODE", {
|
||||
value: "E373",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
const finishBuilding = startBuilding(pathname, requestUrl, false);
|
||||
try {
|
||||
await (0, _turbopackutils.handleRouteType)({
|
||||
dev,
|
||||
page,
|
||||
pathname,
|
||||
route,
|
||||
currentEntryIssues,
|
||||
entrypoints: currentEntrypoints,
|
||||
manifestLoader,
|
||||
readyIds,
|
||||
devRewrites: opts.fsChecker.rewrites,
|
||||
productionRewrites: undefined,
|
||||
logErrors: true,
|
||||
hooks: {
|
||||
subscribeToChanges,
|
||||
handleWrittenEndpoint: (id, result, forceDeleteCache)=>{
|
||||
currentWrittenEntrypoints.set(id, result);
|
||||
assetMapper.setPathsForKey(id, result.clientPaths);
|
||||
return clearRequireCache(id, result, {
|
||||
force: forceDeleteCache
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
} finally{
|
||||
finishBuilding();
|
||||
}
|
||||
});
|
||||
},
|
||||
close () {
|
||||
for (const wsClient of clients){
|
||||
// it's okay to not cleanly close these websocket connections, this is dev
|
||||
wsClient.terminate();
|
||||
}
|
||||
clients.clear();
|
||||
}
|
||||
};
|
||||
handleEntrypointsSubscription().catch((err)=>{
|
||||
console.error(err);
|
||||
process.exit(1);
|
||||
});
|
||||
// Write empty manifests
|
||||
await currentEntriesHandling;
|
||||
await manifestLoader.writeManifests({
|
||||
devRewrites: opts.fsChecker.rewrites,
|
||||
productionRewrites: undefined,
|
||||
entrypoints: currentEntrypoints
|
||||
});
|
||||
async function handleProjectUpdates() {
|
||||
for await (const updateMessage of project.updateInfoSubscribe(30)){
|
||||
switch(updateMessage.updateType){
|
||||
case 'start':
|
||||
{
|
||||
hotReloader.send({
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.BUILDING
|
||||
});
|
||||
break;
|
||||
}
|
||||
case 'end':
|
||||
{
|
||||
sendEnqueuedMessages();
|
||||
function addErrors(errorsMap, issues) {
|
||||
for (const issueMap of issues.values()){
|
||||
for (const [key, issue] of issueMap){
|
||||
if (issue.severity === 'warning') continue;
|
||||
if (errorsMap.has(key)) continue;
|
||||
const message = (0, _utils3.formatIssue)(issue);
|
||||
errorsMap.set(key, {
|
||||
message,
|
||||
details: issue.detail ? (0, _utils3.renderStyledStringToErrorAnsi)(issue.detail) : undefined
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
const errors = new Map();
|
||||
addErrors(errors, currentEntryIssues);
|
||||
for (const client of clients){
|
||||
const state = clientStates.get(client);
|
||||
if (!state) {
|
||||
continue;
|
||||
}
|
||||
const clientErrors = new Map(errors);
|
||||
addErrors(clientErrors, state.clientIssues);
|
||||
sendToClient(client, {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.BUILT,
|
||||
hash: String(++hmrHash),
|
||||
errors: [
|
||||
...clientErrors.values()
|
||||
],
|
||||
warnings: []
|
||||
});
|
||||
}
|
||||
if (hmrEventHappened) {
|
||||
const time = updateMessage.value.duration;
|
||||
const timeMessage = time > 2000 ? `${Math.round(time / 100) / 10}s` : `${time}ms`;
|
||||
_log.event(`Compiled in ${timeMessage}`);
|
||||
hmrEventHappened = false;
|
||||
}
|
||||
break;
|
||||
}
|
||||
default:
|
||||
}
|
||||
}
|
||||
}
|
||||
handleProjectUpdates().catch((err)=>{
|
||||
console.error(err);
|
||||
process.exit(1);
|
||||
});
|
||||
return hotReloader;
|
||||
}
|
||||
|
||||
//# sourceMappingURL=hot-reloader-turbopack.js.map
|
||||
1
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-turbopack.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-turbopack.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
154
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-types.d.ts
generated
vendored
Normal file
154
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-types.d.ts
generated
vendored
Normal file
@@ -0,0 +1,154 @@
|
||||
import type { IncomingMessage, ServerResponse } from 'http';
|
||||
import type { UrlObject } from 'url';
|
||||
import type { Duplex } from 'stream';
|
||||
import type { webpack } from 'next/dist/compiled/webpack/webpack';
|
||||
import type getBaseWebpackConfig from '../../build/webpack-config';
|
||||
import type { RouteDefinition } from '../route-definitions/route-definition';
|
||||
import type { Project, Update as TurbopackUpdate } from '../../build/swc/types';
|
||||
import type { VersionInfo } from './parse-version-info';
|
||||
import type { DebugInfo } from '../../client/components/react-dev-overlay/types';
|
||||
import type { DevIndicatorServerState } from './dev-indicator-server-state';
|
||||
export declare const enum HMR_ACTIONS_SENT_TO_BROWSER {
|
||||
ADDED_PAGE = "addedPage",
|
||||
REMOVED_PAGE = "removedPage",
|
||||
RELOAD_PAGE = "reloadPage",
|
||||
SERVER_COMPONENT_CHANGES = "serverComponentChanges",
|
||||
MIDDLEWARE_CHANGES = "middlewareChanges",
|
||||
CLIENT_CHANGES = "clientChanges",
|
||||
SERVER_ONLY_CHANGES = "serverOnlyChanges",
|
||||
SYNC = "sync",
|
||||
BUILT = "built",
|
||||
BUILDING = "building",
|
||||
DEV_PAGES_MANIFEST_UPDATE = "devPagesManifestUpdate",
|
||||
TURBOPACK_MESSAGE = "turbopack-message",
|
||||
SERVER_ERROR = "serverError",
|
||||
TURBOPACK_CONNECTED = "turbopack-connected",
|
||||
ISR_MANIFEST = "isrManifest",
|
||||
DEV_INDICATOR = "devIndicator"
|
||||
}
|
||||
interface ServerErrorAction {
|
||||
action: HMR_ACTIONS_SENT_TO_BROWSER.SERVER_ERROR;
|
||||
errorJSON: string;
|
||||
}
|
||||
export interface TurbopackMessageAction {
|
||||
action: HMR_ACTIONS_SENT_TO_BROWSER.TURBOPACK_MESSAGE;
|
||||
data: TurbopackUpdate | TurbopackUpdate[];
|
||||
}
|
||||
interface BuildingAction {
|
||||
action: HMR_ACTIONS_SENT_TO_BROWSER.BUILDING;
|
||||
}
|
||||
export interface CompilationError {
|
||||
moduleName?: string;
|
||||
message: string;
|
||||
details?: string;
|
||||
moduleTrace?: Array<{
|
||||
moduleName?: string;
|
||||
}>;
|
||||
stack?: string;
|
||||
}
|
||||
export interface SyncAction {
|
||||
action: HMR_ACTIONS_SENT_TO_BROWSER.SYNC;
|
||||
hash: string;
|
||||
errors: ReadonlyArray<CompilationError>;
|
||||
warnings: ReadonlyArray<CompilationError>;
|
||||
versionInfo: VersionInfo;
|
||||
updatedModules?: ReadonlyArray<string>;
|
||||
debug?: DebugInfo;
|
||||
devIndicator: DevIndicatorServerState;
|
||||
}
|
||||
interface BuiltAction {
|
||||
action: HMR_ACTIONS_SENT_TO_BROWSER.BUILT;
|
||||
hash: string;
|
||||
errors: ReadonlyArray<CompilationError>;
|
||||
warnings: ReadonlyArray<CompilationError>;
|
||||
updatedModules?: ReadonlyArray<string>;
|
||||
}
|
||||
interface AddedPageAction {
|
||||
action: HMR_ACTIONS_SENT_TO_BROWSER.ADDED_PAGE;
|
||||
data: [page: string | null];
|
||||
}
|
||||
interface RemovedPageAction {
|
||||
action: HMR_ACTIONS_SENT_TO_BROWSER.REMOVED_PAGE;
|
||||
data: [page: string | null];
|
||||
}
|
||||
export interface ReloadPageAction {
|
||||
action: HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE;
|
||||
data: string;
|
||||
}
|
||||
interface ServerComponentChangesAction {
|
||||
action: HMR_ACTIONS_SENT_TO_BROWSER.SERVER_COMPONENT_CHANGES;
|
||||
hash: string;
|
||||
}
|
||||
interface MiddlewareChangesAction {
|
||||
event: HMR_ACTIONS_SENT_TO_BROWSER.MIDDLEWARE_CHANGES;
|
||||
}
|
||||
interface ClientChangesAction {
|
||||
event: HMR_ACTIONS_SENT_TO_BROWSER.CLIENT_CHANGES;
|
||||
}
|
||||
interface ServerOnlyChangesAction {
|
||||
event: HMR_ACTIONS_SENT_TO_BROWSER.SERVER_ONLY_CHANGES;
|
||||
pages: ReadonlyArray<string>;
|
||||
}
|
||||
interface DevPagesManifestUpdateAction {
|
||||
action: HMR_ACTIONS_SENT_TO_BROWSER.DEV_PAGES_MANIFEST_UPDATE;
|
||||
data: [
|
||||
{
|
||||
devPagesManifest: true;
|
||||
}
|
||||
];
|
||||
}
|
||||
export interface TurbopackConnectedAction {
|
||||
action: HMR_ACTIONS_SENT_TO_BROWSER.TURBOPACK_CONNECTED;
|
||||
data: {
|
||||
sessionId: number;
|
||||
};
|
||||
}
|
||||
export interface AppIsrManifestAction {
|
||||
action: HMR_ACTIONS_SENT_TO_BROWSER.ISR_MANIFEST;
|
||||
data: Record<string, boolean>;
|
||||
}
|
||||
export interface DevIndicatorAction {
|
||||
action: HMR_ACTIONS_SENT_TO_BROWSER.DEV_INDICATOR;
|
||||
devIndicator: DevIndicatorServerState;
|
||||
}
|
||||
export type HMR_ACTION_TYPES = TurbopackMessageAction | TurbopackConnectedAction | BuildingAction | SyncAction | BuiltAction | AddedPageAction | RemovedPageAction | ReloadPageAction | ServerComponentChangesAction | ClientChangesAction | MiddlewareChangesAction | ServerOnlyChangesAction | DevPagesManifestUpdateAction | ServerErrorAction | AppIsrManifestAction | DevIndicatorAction;
|
||||
export type TurbopackMsgToBrowser = {
|
||||
type: HMR_ACTIONS_SENT_TO_BROWSER.TURBOPACK_MESSAGE;
|
||||
data: any;
|
||||
} | {
|
||||
type: HMR_ACTIONS_SENT_TO_BROWSER.TURBOPACK_CONNECTED;
|
||||
data: {
|
||||
sessionId: number;
|
||||
};
|
||||
};
|
||||
export interface NextJsHotReloaderInterface {
|
||||
turbopackProject?: Project;
|
||||
activeWebpackConfigs?: Array<Awaited<ReturnType<typeof getBaseWebpackConfig>>>;
|
||||
serverStats: webpack.Stats | null;
|
||||
edgeServerStats: webpack.Stats | null;
|
||||
run(req: IncomingMessage, res: ServerResponse, parsedUrl: UrlObject): Promise<{
|
||||
finished?: true;
|
||||
}>;
|
||||
setHmrServerError(error: Error | null): void;
|
||||
clearHmrServerError(): void;
|
||||
start(): Promise<void>;
|
||||
send(action: HMR_ACTION_TYPES): void;
|
||||
getCompilationErrors(page: string): Promise<any[]>;
|
||||
onHMR(req: IncomingMessage, _socket: Duplex, head: Buffer, onUpgrade: (client: {
|
||||
send(data: string): void;
|
||||
}) => void): void;
|
||||
invalidate({ reloadAfterInvalidation, }: {
|
||||
reloadAfterInvalidation: boolean;
|
||||
}): Promise<void> | void;
|
||||
buildFallbackError(): Promise<void>;
|
||||
ensurePage({ page, clientOnly, appPaths, definition, isApp, url, }: {
|
||||
page: string;
|
||||
clientOnly: boolean;
|
||||
appPaths?: ReadonlyArray<string> | null;
|
||||
isApp?: boolean;
|
||||
definition: RouteDefinition | undefined;
|
||||
url?: string;
|
||||
}): Promise<void>;
|
||||
close(): void;
|
||||
}
|
||||
export {};
|
||||
31
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-types.js
generated
vendored
Normal file
31
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-types.js
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "HMR_ACTIONS_SENT_TO_BROWSER", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return HMR_ACTIONS_SENT_TO_BROWSER;
|
||||
}
|
||||
});
|
||||
var HMR_ACTIONS_SENT_TO_BROWSER = /*#__PURE__*/ function(HMR_ACTIONS_SENT_TO_BROWSER) {
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["ADDED_PAGE"] = "addedPage";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["REMOVED_PAGE"] = "removedPage";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["RELOAD_PAGE"] = "reloadPage";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["SERVER_COMPONENT_CHANGES"] = "serverComponentChanges";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["MIDDLEWARE_CHANGES"] = "middlewareChanges";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["CLIENT_CHANGES"] = "clientChanges";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["SERVER_ONLY_CHANGES"] = "serverOnlyChanges";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["SYNC"] = "sync";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["BUILT"] = "built";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["BUILDING"] = "building";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["DEV_PAGES_MANIFEST_UPDATE"] = "devPagesManifestUpdate";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["TURBOPACK_MESSAGE"] = "turbopack-message";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["SERVER_ERROR"] = "serverError";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["TURBOPACK_CONNECTED"] = "turbopack-connected";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["ISR_MANIFEST"] = "isrManifest";
|
||||
HMR_ACTIONS_SENT_TO_BROWSER["DEV_INDICATOR"] = "devIndicator";
|
||||
return HMR_ACTIONS_SENT_TO_BROWSER;
|
||||
}({});
|
||||
|
||||
//# sourceMappingURL=hot-reloader-types.js.map
|
||||
1
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-types.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-types.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
97
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-webpack.d.ts
generated
vendored
Normal file
97
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-webpack.d.ts
generated
vendored
Normal file
@@ -0,0 +1,97 @@
|
||||
import type { NextConfigComplete } from '../config-shared';
|
||||
import type { CustomRoutes } from '../../lib/load-custom-routes';
|
||||
import type { Duplex } from 'stream';
|
||||
import type { Telemetry } from '../../telemetry/storage';
|
||||
import type { IncomingMessage, ServerResponse } from 'http';
|
||||
import type { UrlObject } from 'url';
|
||||
import type { RouteDefinition } from '../route-definitions/route-definition';
|
||||
import { type webpack } from 'next/dist/compiled/webpack/webpack';
|
||||
import getBaseWebpackConfig from '../../build/webpack-config';
|
||||
import type { __ApiPreviewProps } from '../api-utils';
|
||||
import ws from 'next/dist/compiled/ws';
|
||||
import type { UnwrapPromise } from '../../lib/coalesced-function';
|
||||
import type { VersionInfo } from './parse-version-info';
|
||||
import { type NextJsHotReloaderInterface } from './hot-reloader-types';
|
||||
import type { HMR_ACTION_TYPES } from './hot-reloader-types';
|
||||
export declare function renderScriptError(res: ServerResponse, error: Error, { verbose }?: {
|
||||
verbose?: boolean | undefined;
|
||||
}): Promise<{
|
||||
finished: true | undefined;
|
||||
}>;
|
||||
export declare const matchNextPageBundleRequest: import("../../shared/lib/router/utils/path-match").PatchMatcher;
|
||||
export declare function getVersionInfo(): Promise<VersionInfo>;
|
||||
export default class HotReloaderWebpack implements NextJsHotReloaderInterface {
|
||||
private hasAmpEntrypoints;
|
||||
private hasAppRouterEntrypoints;
|
||||
private hasPagesRouterEntrypoints;
|
||||
private dir;
|
||||
private buildId;
|
||||
private encryptionKey;
|
||||
private middlewares;
|
||||
private pagesDir?;
|
||||
private distDir;
|
||||
private webpackHotMiddleware?;
|
||||
private config;
|
||||
private clientStats;
|
||||
private clientError;
|
||||
private serverError;
|
||||
private hmrServerError;
|
||||
private serverPrevDocumentHash;
|
||||
private serverChunkNames?;
|
||||
private prevChunkNames?;
|
||||
private onDemandEntries?;
|
||||
private previewProps;
|
||||
private watcher;
|
||||
private rewrites;
|
||||
private fallbackWatcher;
|
||||
private hotReloaderSpan;
|
||||
private pagesMapping;
|
||||
private appDir?;
|
||||
private telemetry;
|
||||
private resetFetch;
|
||||
private versionInfo;
|
||||
private devtoolsFrontendUrl;
|
||||
private reloadAfterInvalidation;
|
||||
serverStats: webpack.Stats | null;
|
||||
edgeServerStats: webpack.Stats | null;
|
||||
multiCompiler?: webpack.MultiCompiler;
|
||||
activeWebpackConfigs?: Array<UnwrapPromise<ReturnType<typeof getBaseWebpackConfig>>>;
|
||||
constructor(dir: string, { config, pagesDir, distDir, buildId, encryptionKey, previewProps, rewrites, appDir, telemetry, resetFetch, }: {
|
||||
config: NextConfigComplete;
|
||||
pagesDir?: string;
|
||||
distDir: string;
|
||||
buildId: string;
|
||||
encryptionKey: string;
|
||||
previewProps: __ApiPreviewProps;
|
||||
rewrites: CustomRoutes['rewrites'];
|
||||
appDir?: string;
|
||||
telemetry: Telemetry;
|
||||
resetFetch: () => void;
|
||||
});
|
||||
run(req: IncomingMessage, res: ServerResponse, parsedUrl: UrlObject): Promise<{
|
||||
finished?: true;
|
||||
}>;
|
||||
setHmrServerError(error: Error | null): void;
|
||||
clearHmrServerError(): void;
|
||||
protected refreshServerComponents(hash: string): Promise<void>;
|
||||
onHMR(req: IncomingMessage, _socket: Duplex, head: Buffer, callback: (client: ws.WebSocket) => void): void;
|
||||
private clean;
|
||||
private getWebpackConfig;
|
||||
buildFallbackError(): Promise<void>;
|
||||
private tracedGetVersionInfo;
|
||||
start(): Promise<void>;
|
||||
invalidate({ reloadAfterInvalidation }?: {
|
||||
reloadAfterInvalidation: boolean;
|
||||
}): void;
|
||||
getCompilationErrors(page: string): Promise<Error[]>;
|
||||
send(action: HMR_ACTION_TYPES): void;
|
||||
ensurePage({ page, clientOnly, appPaths, definition, isApp, url, }: {
|
||||
page: string;
|
||||
clientOnly: boolean;
|
||||
appPaths?: ReadonlyArray<string> | null;
|
||||
isApp?: boolean;
|
||||
definition?: RouteDefinition;
|
||||
url?: string;
|
||||
}): Promise<void>;
|
||||
close(): void;
|
||||
}
|
||||
1246
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-webpack.js
generated
vendored
Normal file
1246
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-webpack.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-webpack.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/hot-reloader-webpack.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
13
frontend/webapp/node_modules/next/dist/server/dev/log-requests.d.ts
generated
vendored
Normal file
13
frontend/webapp/node_modules/next/dist/server/dev/log-requests.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { NodeNextRequest, NodeNextResponse } from '../base-http/node';
|
||||
import type { LoggingConfig } from '../config-shared';
|
||||
export interface RequestLoggingOptions {
|
||||
readonly request: NodeNextRequest;
|
||||
readonly response: NodeNextResponse;
|
||||
readonly loggingConfig: LoggingConfig | undefined;
|
||||
readonly requestDurationInMs: number;
|
||||
}
|
||||
/**
|
||||
* Returns true if the incoming request should be ignored for logging.
|
||||
*/
|
||||
export declare function ignoreLoggingIncomingRequests(request: NodeNextRequest, loggingConfig: LoggingConfig | undefined): boolean;
|
||||
export declare function logRequests(options: RequestLoggingOptions): void;
|
||||
110
frontend/webapp/node_modules/next/dist/server/dev/log-requests.js
generated
vendored
Normal file
110
frontend/webapp/node_modules/next/dist/server/dev/log-requests.js
generated
vendored
Normal file
@@ -0,0 +1,110 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
0 && (module.exports = {
|
||||
ignoreLoggingIncomingRequests: null,
|
||||
logRequests: null
|
||||
});
|
||||
function _export(target, all) {
|
||||
for(var name in all)Object.defineProperty(target, name, {
|
||||
enumerable: true,
|
||||
get: all[name]
|
||||
});
|
||||
}
|
||||
_export(exports, {
|
||||
ignoreLoggingIncomingRequests: function() {
|
||||
return ignoreLoggingIncomingRequests;
|
||||
},
|
||||
logRequests: function() {
|
||||
return logRequests;
|
||||
}
|
||||
});
|
||||
const _picocolors = require("../../lib/picocolors");
|
||||
const _url = require("../../lib/url");
|
||||
const _requestmeta = require("../request-meta");
|
||||
function ignoreLoggingIncomingRequests(request, loggingConfig) {
|
||||
var _loggingConfig_incomingRequests;
|
||||
// If it's boolean use the boolean value
|
||||
if (typeof (loggingConfig == null ? void 0 : loggingConfig.incomingRequests) === 'boolean') {
|
||||
return !loggingConfig.incomingRequests;
|
||||
}
|
||||
// Any of the value on the chain is falsy, will not ignore the request.
|
||||
const ignore = loggingConfig == null ? void 0 : (_loggingConfig_incomingRequests = loggingConfig.incomingRequests) == null ? void 0 : _loggingConfig_incomingRequests.ignore;
|
||||
// If ignore is not set, don't ignore anything
|
||||
if (!ignore) {
|
||||
return false;
|
||||
}
|
||||
// If array of RegExp, ignore if any pattern matches
|
||||
return ignore.some((pattern)=>pattern.test(request.url));
|
||||
}
|
||||
function logRequests(options) {
|
||||
const { request, response, loggingConfig, requestDurationInMs } = options;
|
||||
if (!ignoreLoggingIncomingRequests(request, loggingConfig)) {
|
||||
logIncomingRequests({
|
||||
request,
|
||||
requestDurationInMs,
|
||||
statusCode: response.statusCode
|
||||
});
|
||||
}
|
||||
if (request.fetchMetrics) {
|
||||
for (const fetchMetric of request.fetchMetrics){
|
||||
logFetchMetric(fetchMetric, loggingConfig);
|
||||
}
|
||||
}
|
||||
}
|
||||
function logIncomingRequests(options) {
|
||||
const { request, requestDurationInMs, statusCode } = options;
|
||||
const isRSC = (0, _requestmeta.getRequestMeta)(request, 'isRSCRequest');
|
||||
const url = isRSC ? (0, _url.stripNextRscUnionQuery)(request.url) : request.url;
|
||||
const statusCodeColor = statusCode < 200 ? _picocolors.white : statusCode < 300 ? _picocolors.green : statusCode < 400 ? _picocolors.blue : statusCode < 500 ? _picocolors.yellow : _picocolors.red;
|
||||
const coloredStatus = statusCodeColor(statusCode.toString());
|
||||
return writeLine(`${request.method} ${url} ${coloredStatus} in ${requestDurationInMs}ms`);
|
||||
}
|
||||
function logFetchMetric(fetchMetric, loggingConfig) {
|
||||
var _loggingConfig_fetches;
|
||||
let { cacheReason, cacheStatus, cacheWarning, end, method, start, status, url } = fetchMetric;
|
||||
if (cacheStatus === 'hmr' && !(loggingConfig == null ? void 0 : (_loggingConfig_fetches = loggingConfig.fetches) == null ? void 0 : _loggingConfig_fetches.hmrRefreshes)) {
|
||||
// Cache hits during HMR refreshes are intentionally not logged, unless
|
||||
// explicitly enabled in the logging config.
|
||||
return;
|
||||
}
|
||||
if (loggingConfig == null ? void 0 : loggingConfig.fetches) {
|
||||
if (url.length > 48 && !loggingConfig.fetches.fullUrl) {
|
||||
url = truncateUrl(url);
|
||||
}
|
||||
writeLine((0, _picocolors.white)(`${method} ${url} ${status} in ${Math.round(end - start)}ms ${formatCacheStatus(cacheStatus)}`), 1);
|
||||
if (cacheStatus === 'skip' || cacheStatus === 'miss') {
|
||||
writeLine((0, _picocolors.gray)(`Cache ${cacheStatus === 'skip' ? 'skipped' : 'missed'} reason: (${(0, _picocolors.white)(cacheReason)})`), 2);
|
||||
}
|
||||
} else if (cacheWarning) {
|
||||
// When logging for fetches is not enabled, we still want to print any
|
||||
// associated warnings, so we print the request first to provide context.
|
||||
writeLine((0, _picocolors.white)(`${method} ${url}`), 1);
|
||||
}
|
||||
if (cacheWarning) {
|
||||
writeLine(`${(0, _picocolors.yellow)((0, _picocolors.bold)('⚠'))} ${(0, _picocolors.white)(cacheWarning)}`, 2);
|
||||
}
|
||||
}
|
||||
function writeLine(text, indentationLevel = 0) {
|
||||
process.stdout.write(` ${'│ '.repeat(indentationLevel)}${text}\n`);
|
||||
}
|
||||
function truncate(text, maxLength) {
|
||||
return maxLength !== undefined && text.length > maxLength ? text.substring(0, maxLength) + '..' : text;
|
||||
}
|
||||
function truncateUrl(url) {
|
||||
const { protocol, host, pathname, search } = new URL(url);
|
||||
return protocol + '//' + truncate(host, 16) + truncate(pathname, 24) + truncate(search, 16);
|
||||
}
|
||||
function formatCacheStatus(cacheStatus) {
|
||||
switch(cacheStatus){
|
||||
case 'hmr':
|
||||
return (0, _picocolors.green)('(HMR cache)');
|
||||
case 'hit':
|
||||
return (0, _picocolors.green)('(cache hit)');
|
||||
default:
|
||||
return (0, _picocolors.yellow)(`(cache ${cacheStatus})`);
|
||||
}
|
||||
}
|
||||
|
||||
//# sourceMappingURL=log-requests.js.map
|
||||
1
frontend/webapp/node_modules/next/dist/server/dev/log-requests.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/log-requests.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
frontend/webapp/node_modules/next/dist/server/dev/messages.d.ts
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/messages.d.ts
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
export declare const FAST_REFRESH_RUNTIME_RELOAD = "Fast Refresh had to perform a full reload due to a runtime error.";
|
||||
13
frontend/webapp/node_modules/next/dist/server/dev/messages.js
generated
vendored
Normal file
13
frontend/webapp/node_modules/next/dist/server/dev/messages.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "FAST_REFRESH_RUNTIME_RELOAD", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return FAST_REFRESH_RUNTIME_RELOAD;
|
||||
}
|
||||
});
|
||||
const FAST_REFRESH_RUNTIME_RELOAD = 'Fast Refresh had to perform a full reload due to a runtime error.';
|
||||
|
||||
//# sourceMappingURL=messages.js.map
|
||||
1
frontend/webapp/node_modules/next/dist/server/dev/messages.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/messages.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["../../../src/server/dev/messages.ts"],"sourcesContent":["export const FAST_REFRESH_RUNTIME_RELOAD =\n 'Fast Refresh had to perform a full reload due to a runtime error.'\n"],"names":["FAST_REFRESH_RUNTIME_RELOAD"],"mappings":";;;;+BAAaA;;;eAAAA;;;AAAN,MAAMA,8BACX"}
|
||||
136
frontend/webapp/node_modules/next/dist/server/dev/next-dev-server.d.ts
generated
vendored
Normal file
136
frontend/webapp/node_modules/next/dist/server/dev/next-dev-server.d.ts
generated
vendored
Normal file
@@ -0,0 +1,136 @@
|
||||
import type { FindComponentsResult, NodeRequestHandler } from '../next-server';
|
||||
import type { LoadComponentsReturnType } from '../load-components';
|
||||
import type { Options as ServerOptions } from '../next-server';
|
||||
import type { Params } from '../request/params';
|
||||
import type { ParsedUrl } from '../../shared/lib/router/utils/parse-url';
|
||||
import type { ParsedUrlQuery } from 'querystring';
|
||||
import type { UrlWithParsedQuery } from 'url';
|
||||
import type { MiddlewareRoutingItem } from '../base-server';
|
||||
import type { RouteDefinition } from '../route-definitions/route-definition';
|
||||
import type { RouteMatcherManager } from '../route-matcher-managers/route-matcher-manager';
|
||||
import { type NextParsedUrlQuery, type NextUrlWithParsedQuery } from '../request-meta';
|
||||
import type { DevBundlerService } from '../lib/dev-bundler-service';
|
||||
import type { IncrementalCache } from '../lib/incremental-cache';
|
||||
import type { NodeNextResponse, NodeNextRequest } from '../base-http/node';
|
||||
import type { PagesManifest } from '../../build/webpack/plugins/pages-manifest-plugin';
|
||||
import Server from '../next-server';
|
||||
import { type Span } from '../../trace';
|
||||
import type { ServerOnInstrumentationRequestError } from '../app-render/types';
|
||||
import type { ServerComponentsHmrCache } from '../response-cache';
|
||||
import { FallbackMode } from '../../lib/fallback';
|
||||
export interface Options extends ServerOptions {
|
||||
/**
|
||||
* Tells of Next.js is running from the `next dev` command
|
||||
*/
|
||||
isNextDevCommand?: boolean;
|
||||
/**
|
||||
* Interface to the development bundler.
|
||||
*/
|
||||
bundlerService: DevBundlerService;
|
||||
/**
|
||||
* Trace span for server startup.
|
||||
*/
|
||||
startServerSpan: Span;
|
||||
}
|
||||
export default class DevServer extends Server {
|
||||
/**
|
||||
* The promise that resolves when the server is ready. When this is unset
|
||||
* the server is ready.
|
||||
*/
|
||||
private ready?;
|
||||
protected sortedRoutes?: string[];
|
||||
private pagesDir?;
|
||||
private appDir?;
|
||||
private actualMiddlewareFile?;
|
||||
private actualInstrumentationHookFile?;
|
||||
private middleware?;
|
||||
private originalFetch?;
|
||||
private readonly bundlerService;
|
||||
private staticPathsCache;
|
||||
private startServerSpan;
|
||||
private readonly serverComponentsHmrCache;
|
||||
protected staticPathsWorker?: {
|
||||
[key: string]: any;
|
||||
} & {
|
||||
loadStaticPaths: typeof import('./static-paths-worker').loadStaticPaths;
|
||||
};
|
||||
private getStaticPathsWorker;
|
||||
constructor(options: Options);
|
||||
protected getServerComponentsHmrCache(): ServerComponentsHmrCache | undefined;
|
||||
protected getRouteMatchers(): RouteMatcherManager;
|
||||
protected getBuildId(): string;
|
||||
protected prepareImpl(): Promise<void>;
|
||||
protected hasPage(pathname: string): Promise<boolean>;
|
||||
runMiddleware(params: {
|
||||
request: NodeNextRequest;
|
||||
response: NodeNextResponse;
|
||||
parsedUrl: ParsedUrl;
|
||||
parsed: UrlWithParsedQuery;
|
||||
middlewareList: MiddlewareRoutingItem[];
|
||||
}): Promise<import("../web/types").FetchEventResult | {
|
||||
finished: boolean;
|
||||
}>;
|
||||
runEdgeFunction(params: {
|
||||
req: NodeNextRequest;
|
||||
res: NodeNextResponse;
|
||||
query: ParsedUrlQuery;
|
||||
params: Params | undefined;
|
||||
page: string;
|
||||
appPaths: string[] | null;
|
||||
isAppPath: boolean;
|
||||
}): Promise<import("../web/types").FetchEventResult | null>;
|
||||
getRequestHandler(): NodeRequestHandler;
|
||||
handleRequest(req: NodeNextRequest, res: NodeNextResponse, parsedUrl?: NextUrlWithParsedQuery): Promise<void>;
|
||||
run(req: NodeNextRequest, res: NodeNextResponse, parsedUrl: UrlWithParsedQuery): Promise<void>;
|
||||
protected logErrorWithOriginalStack(err?: unknown, type?: 'unhandledRejection' | 'uncaughtException' | 'warning' | 'app-dir'): void;
|
||||
protected getPagesManifest(): PagesManifest | undefined;
|
||||
protected getAppPathsManifest(): PagesManifest | undefined;
|
||||
protected getinterceptionRoutePatterns(): RegExp[];
|
||||
protected getMiddleware(): Promise<MiddlewareRoutingItem | undefined>;
|
||||
protected getNextFontManifest(): undefined;
|
||||
protected hasMiddleware(): Promise<boolean>;
|
||||
protected ensureMiddleware(url: string): Promise<void>;
|
||||
protected loadInstrumentationModule(): Promise<any>;
|
||||
protected runInstrumentationHookIfAvailable(): Promise<void>;
|
||||
protected ensureEdgeFunction({ page, appPaths, url, }: {
|
||||
page: string;
|
||||
appPaths: string[] | null;
|
||||
url: string;
|
||||
}): Promise<void>;
|
||||
generateRoutes(_dev?: boolean): void;
|
||||
_filterAmpDevelopmentScript(html: string, event: {
|
||||
line: number;
|
||||
col: number;
|
||||
code: string;
|
||||
}): boolean;
|
||||
protected getStaticPaths({ pathname, requestHeaders, page, isAppPath, }: {
|
||||
pathname: string;
|
||||
requestHeaders: IncrementalCache['requestHeaders'];
|
||||
page: string;
|
||||
isAppPath: boolean;
|
||||
}): Promise<{
|
||||
staticPaths?: string[];
|
||||
fallbackMode?: FallbackMode;
|
||||
}>;
|
||||
protected ensurePage(opts: {
|
||||
page: string;
|
||||
clientOnly: boolean;
|
||||
appPaths?: ReadonlyArray<string> | null;
|
||||
definition: RouteDefinition | undefined;
|
||||
url?: string;
|
||||
}): Promise<void>;
|
||||
protected findPageComponents({ locale, page, query, params, isAppPath, appPaths, shouldEnsure, url, }: {
|
||||
locale: string | undefined;
|
||||
page: string;
|
||||
query: NextParsedUrlQuery;
|
||||
params: Params;
|
||||
isAppPath: boolean;
|
||||
sriEnabled?: boolean;
|
||||
appPaths?: ReadonlyArray<string> | null;
|
||||
shouldEnsure: boolean;
|
||||
url?: string;
|
||||
}): Promise<FindComponentsResult | null>;
|
||||
protected getFallbackErrorComponents(url?: string): Promise<LoadComponentsReturnType | null>;
|
||||
getCompilationError(page: string): Promise<any>;
|
||||
protected instrumentationOnRequestError(...args: Parameters<ServerOnInstrumentationRequestError>): Promise<void>;
|
||||
}
|
||||
652
frontend/webapp/node_modules/next/dist/server/dev/next-dev-server.js
generated
vendored
Normal file
652
frontend/webapp/node_modules/next/dist/server/dev/next-dev-server.js
generated
vendored
Normal file
@@ -0,0 +1,652 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return DevServer;
|
||||
}
|
||||
});
|
||||
const _requestmeta = require("../request-meta");
|
||||
const _fs = /*#__PURE__*/ _interop_require_default(require("fs"));
|
||||
const _jestworker = require("next/dist/compiled/jest-worker");
|
||||
const _path = require("path");
|
||||
const _output = require("../../build/output");
|
||||
const _constants = require("../../lib/constants");
|
||||
const _findpagesdir = require("../../lib/find-pages-dir");
|
||||
const _constants1 = require("../../shared/lib/constants");
|
||||
const _nextserver = /*#__PURE__*/ _interop_require_wildcard(require("../next-server"));
|
||||
const _normalizepagepath = require("../../shared/lib/page-path/normalize-page-path");
|
||||
const _pathhasprefix = require("../../shared/lib/router/utils/path-has-prefix");
|
||||
const _removepathprefix = require("../../shared/lib/router/utils/remove-path-prefix");
|
||||
const _storage = require("../../telemetry/storage");
|
||||
const _trace = require("../../trace");
|
||||
const _findpagefile = require("../lib/find-page-file");
|
||||
const _utils = require("../lib/utils");
|
||||
const _coalescedfunction = require("../../lib/coalesced-function");
|
||||
const _loaddefaulterrorcomponents = require("../load-default-error-components");
|
||||
const _utils1 = require("../../shared/lib/utils");
|
||||
const _log = /*#__PURE__*/ _interop_require_wildcard(require("../../build/output/log"));
|
||||
const _iserror = /*#__PURE__*/ _interop_require_wildcard(require("../../lib/is-error"));
|
||||
const _utils2 = require("../../build/utils");
|
||||
const _formatservererror = require("../../lib/format-server-error");
|
||||
const _devroutematchermanager = require("../route-matcher-managers/dev-route-matcher-manager");
|
||||
const _devpagesroutematcherprovider = require("../route-matcher-providers/dev/dev-pages-route-matcher-provider");
|
||||
const _devpagesapiroutematcherprovider = require("../route-matcher-providers/dev/dev-pages-api-route-matcher-provider");
|
||||
const _devapppageroutematcherprovider = require("../route-matcher-providers/dev/dev-app-page-route-matcher-provider");
|
||||
const _devapprouteroutematcherprovider = require("../route-matcher-providers/dev/dev-app-route-route-matcher-provider");
|
||||
const _nodemanifestloader = require("../route-matcher-providers/helpers/manifest-loaders/node-manifest-loader");
|
||||
const _batchedfilereader = require("../route-matcher-providers/dev/helpers/file-reader/batched-file-reader");
|
||||
const _defaultfilereader = require("../route-matcher-providers/dev/helpers/file-reader/default-file-reader");
|
||||
const _lrucache = require("../lib/lru-cache");
|
||||
const _middlewareroutematcher = require("../../shared/lib/router/utils/middleware-route-matcher");
|
||||
const _detachedpromise = require("../../lib/detached-promise");
|
||||
const _ispostpone = require("../lib/router-utils/is-postpone");
|
||||
const _generateinterceptionroutesrewrites = require("../../lib/generate-interception-routes-rewrites");
|
||||
const _buildcustomroute = require("../../lib/build-custom-route");
|
||||
const _errorsource = require("../../shared/lib/error-source");
|
||||
const _logrequests = require("./log-requests");
|
||||
const _fallback = require("../../lib/fallback");
|
||||
function _interop_require_default(obj) {
|
||||
return obj && obj.__esModule ? obj : {
|
||||
default: obj
|
||||
};
|
||||
}
|
||||
function _getRequireWildcardCache(nodeInterop) {
|
||||
if (typeof WeakMap !== "function") return null;
|
||||
var cacheBabelInterop = new WeakMap();
|
||||
var cacheNodeInterop = new WeakMap();
|
||||
return (_getRequireWildcardCache = function(nodeInterop) {
|
||||
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
||||
})(nodeInterop);
|
||||
}
|
||||
function _interop_require_wildcard(obj, nodeInterop) {
|
||||
if (!nodeInterop && obj && obj.__esModule) {
|
||||
return obj;
|
||||
}
|
||||
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
||||
return {
|
||||
default: obj
|
||||
};
|
||||
}
|
||||
var cache = _getRequireWildcardCache(nodeInterop);
|
||||
if (cache && cache.has(obj)) {
|
||||
return cache.get(obj);
|
||||
}
|
||||
var newObj = {
|
||||
__proto__: null
|
||||
};
|
||||
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
||||
for(var key in obj){
|
||||
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
||||
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
||||
if (desc && (desc.get || desc.set)) {
|
||||
Object.defineProperty(newObj, key, desc);
|
||||
} else {
|
||||
newObj[key] = obj[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
newObj.default = obj;
|
||||
if (cache) {
|
||||
cache.set(obj, newObj);
|
||||
}
|
||||
return newObj;
|
||||
}
|
||||
// Load ReactDevOverlay only when needed
|
||||
let ReactDevOverlayImpl;
|
||||
const ReactDevOverlay = (props)=>{
|
||||
if (ReactDevOverlayImpl === undefined) {
|
||||
ReactDevOverlayImpl = require('../../client/components/react-dev-overlay/pages/pages-dev-overlay').PagesDevOverlay;
|
||||
}
|
||||
return ReactDevOverlayImpl(props);
|
||||
};
|
||||
class DevServer extends _nextserver.default {
|
||||
getStaticPathsWorker() {
|
||||
const worker = new _jestworker.Worker(require.resolve('./static-paths-worker'), {
|
||||
maxRetries: 1,
|
||||
// For dev server, it's not necessary to spin up too many workers as long as you are not doing a load test.
|
||||
// This helps reusing the memory a lot.
|
||||
numWorkers: 1,
|
||||
enableWorkerThreads: this.nextConfig.experimental.workerThreads,
|
||||
forkOptions: {
|
||||
env: {
|
||||
...process.env,
|
||||
// discard --inspect/--inspect-brk flags from process.env.NODE_OPTIONS. Otherwise multiple Node.js debuggers
|
||||
// would be started if user launch Next.js in debugging mode. The number of debuggers is linked to
|
||||
// the number of workers Next.js tries to launch. The only worker users are interested in debugging
|
||||
// is the main Next.js one
|
||||
NODE_OPTIONS: (0, _utils.getFormattedNodeOptionsWithoutInspect)()
|
||||
}
|
||||
}
|
||||
});
|
||||
worker.getStdout().pipe(process.stdout);
|
||||
worker.getStderr().pipe(process.stderr);
|
||||
return worker;
|
||||
}
|
||||
constructor(options){
|
||||
var _this_nextConfig_experimental_amp, _this_nextConfig_experimental;
|
||||
try {
|
||||
// Increase the number of stack frames on the server
|
||||
Error.stackTraceLimit = 50;
|
||||
} catch {}
|
||||
super({
|
||||
...options,
|
||||
dev: true
|
||||
}), /**
|
||||
* The promise that resolves when the server is ready. When this is unset
|
||||
* the server is ready.
|
||||
*/ this.ready = new _detachedpromise.DetachedPromise();
|
||||
this.bundlerService = options.bundlerService;
|
||||
this.startServerSpan = options.startServerSpan ?? (0, _trace.trace)('start-next-dev-server');
|
||||
this.renderOpts.dev = true;
|
||||
this.renderOpts.ErrorDebug = ReactDevOverlay;
|
||||
this.staticPathsCache = new _lrucache.LRUCache(// 5MB
|
||||
5 * 1024 * 1024, function length(value) {
|
||||
var _JSON_stringify;
|
||||
return ((_JSON_stringify = JSON.stringify(value.staticPaths)) == null ? void 0 : _JSON_stringify.length) ?? 0;
|
||||
});
|
||||
this.renderOpts.ampSkipValidation = ((_this_nextConfig_experimental = this.nextConfig.experimental) == null ? void 0 : (_this_nextConfig_experimental_amp = _this_nextConfig_experimental.amp) == null ? void 0 : _this_nextConfig_experimental_amp.skipValidation) ?? false;
|
||||
this.renderOpts.ampValidator = (html, pathname)=>{
|
||||
const validatorPath = this.nextConfig.experimental && this.nextConfig.experimental.amp && this.nextConfig.experimental.amp.validator || require.resolve('next/dist/compiled/amphtml-validator/validator_wasm.js');
|
||||
const AmpHtmlValidator = require('next/dist/compiled/amphtml-validator');
|
||||
return AmpHtmlValidator.getInstance(validatorPath).then((validator)=>{
|
||||
const result = validator.validateString(html);
|
||||
(0, _output.ampValidation)(pathname, result.errors.filter((e)=>e.severity === 'ERROR').filter((e)=>this._filterAmpDevelopmentScript(html, e)), result.errors.filter((e)=>e.severity !== 'ERROR'));
|
||||
});
|
||||
};
|
||||
const { pagesDir, appDir } = (0, _findpagesdir.findPagesDir)(this.dir);
|
||||
this.pagesDir = pagesDir;
|
||||
this.appDir = appDir;
|
||||
if (this.nextConfig.experimental.serverComponentsHmrCache) {
|
||||
this.serverComponentsHmrCache = new _lrucache.LRUCache(this.nextConfig.cacheMaxMemorySize, function length(value) {
|
||||
return JSON.stringify(value).length;
|
||||
});
|
||||
}
|
||||
}
|
||||
getServerComponentsHmrCache() {
|
||||
return this.serverComponentsHmrCache;
|
||||
}
|
||||
getRouteMatchers() {
|
||||
const { pagesDir, appDir } = (0, _findpagesdir.findPagesDir)(this.dir);
|
||||
const ensurer = {
|
||||
ensure: async (match, pathname)=>{
|
||||
await this.ensurePage({
|
||||
definition: match.definition,
|
||||
page: match.definition.page,
|
||||
clientOnly: false,
|
||||
url: pathname
|
||||
});
|
||||
}
|
||||
};
|
||||
const matchers = new _devroutematchermanager.DevRouteMatcherManager(super.getRouteMatchers(), ensurer, this.dir);
|
||||
const extensions = this.nextConfig.pageExtensions;
|
||||
const extensionsExpression = new RegExp(`\\.(?:${extensions.join('|')})$`);
|
||||
// If the pages directory is available, then configure those matchers.
|
||||
if (pagesDir) {
|
||||
const fileReader = new _batchedfilereader.BatchedFileReader(new _defaultfilereader.DefaultFileReader({
|
||||
// Only allow files that have the correct extensions.
|
||||
pathnameFilter: (pathname)=>extensionsExpression.test(pathname)
|
||||
}));
|
||||
matchers.push(new _devpagesroutematcherprovider.DevPagesRouteMatcherProvider(pagesDir, extensions, fileReader, this.localeNormalizer));
|
||||
matchers.push(new _devpagesapiroutematcherprovider.DevPagesAPIRouteMatcherProvider(pagesDir, extensions, fileReader, this.localeNormalizer));
|
||||
}
|
||||
if (appDir) {
|
||||
// We create a new file reader for the app directory because we don't want
|
||||
// to include any folders or files starting with an underscore. This will
|
||||
// prevent the reader from wasting time reading files that we know we
|
||||
// don't care about.
|
||||
const fileReader = new _batchedfilereader.BatchedFileReader(new _defaultfilereader.DefaultFileReader({
|
||||
// Ignore any directory prefixed with an underscore.
|
||||
ignorePartFilter: (part)=>part.startsWith('_')
|
||||
}));
|
||||
matchers.push(new _devapppageroutematcherprovider.DevAppPageRouteMatcherProvider(appDir, extensions, fileReader));
|
||||
matchers.push(new _devapprouteroutematcherprovider.DevAppRouteRouteMatcherProvider(appDir, extensions, fileReader));
|
||||
}
|
||||
return matchers;
|
||||
}
|
||||
getBuildId() {
|
||||
return 'development';
|
||||
}
|
||||
async prepareImpl() {
|
||||
var _this_ready;
|
||||
(0, _trace.setGlobal)('distDir', this.distDir);
|
||||
(0, _trace.setGlobal)('phase', _constants1.PHASE_DEVELOPMENT_SERVER);
|
||||
const telemetry = new _storage.Telemetry({
|
||||
distDir: this.distDir
|
||||
});
|
||||
await super.prepareImpl();
|
||||
await this.matchers.reload();
|
||||
(_this_ready = this.ready) == null ? void 0 : _this_ready.resolve();
|
||||
this.ready = undefined;
|
||||
// In dev, this needs to be called after prepare because the build entries won't be known in the constructor
|
||||
this.interceptionRoutePatterns = this.getinterceptionRoutePatterns();
|
||||
// This is required by the tracing subsystem.
|
||||
(0, _trace.setGlobal)('appDir', this.appDir);
|
||||
(0, _trace.setGlobal)('pagesDir', this.pagesDir);
|
||||
(0, _trace.setGlobal)('telemetry', telemetry);
|
||||
process.on('unhandledRejection', (reason)=>{
|
||||
if ((0, _ispostpone.isPostpone)(reason)) {
|
||||
// React postpones that are unhandled might end up logged here but they're
|
||||
// not really errors. They're just part of rendering.
|
||||
return;
|
||||
}
|
||||
this.logErrorWithOriginalStack(reason, 'unhandledRejection');
|
||||
});
|
||||
process.on('uncaughtException', (err)=>{
|
||||
this.logErrorWithOriginalStack(err, 'uncaughtException');
|
||||
});
|
||||
}
|
||||
async hasPage(pathname) {
|
||||
let normalizedPath;
|
||||
try {
|
||||
normalizedPath = (0, _normalizepagepath.normalizePagePath)(pathname);
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
// if normalizing the page fails it means it isn't valid
|
||||
// so it doesn't exist so don't throw and return false
|
||||
// to ensure we return 404 instead of 500
|
||||
return false;
|
||||
}
|
||||
if ((0, _utils2.isMiddlewareFile)(normalizedPath)) {
|
||||
return (0, _findpagefile.findPageFile)(this.dir, normalizedPath, this.nextConfig.pageExtensions, false).then(Boolean);
|
||||
}
|
||||
let appFile = null;
|
||||
let pagesFile = null;
|
||||
if (this.appDir) {
|
||||
appFile = await (0, _findpagefile.findPageFile)(this.appDir, normalizedPath + '/page', this.nextConfig.pageExtensions, true);
|
||||
}
|
||||
if (this.pagesDir) {
|
||||
pagesFile = await (0, _findpagefile.findPageFile)(this.pagesDir, normalizedPath, this.nextConfig.pageExtensions, false);
|
||||
}
|
||||
if (appFile && pagesFile) {
|
||||
return false;
|
||||
}
|
||||
return Boolean(appFile || pagesFile);
|
||||
}
|
||||
async runMiddleware(params) {
|
||||
try {
|
||||
const result = await super.runMiddleware({
|
||||
...params,
|
||||
onWarning: (warn)=>{
|
||||
this.logErrorWithOriginalStack(warn, 'warning');
|
||||
}
|
||||
});
|
||||
if ('finished' in result) {
|
||||
return result;
|
||||
}
|
||||
result.waitUntil.catch((error)=>{
|
||||
this.logErrorWithOriginalStack(error, 'unhandledRejection');
|
||||
});
|
||||
return result;
|
||||
} catch (error) {
|
||||
if (error instanceof _utils1.DecodeError) {
|
||||
throw error;
|
||||
}
|
||||
/**
|
||||
* We only log the error when it is not a MiddlewareNotFound error as
|
||||
* in that case we should be already displaying a compilation error
|
||||
* which is what makes the module not found.
|
||||
*/ if (!(error instanceof _utils1.MiddlewareNotFoundError)) {
|
||||
this.logErrorWithOriginalStack(error);
|
||||
}
|
||||
const err = (0, _iserror.getProperError)(error);
|
||||
(0, _errorsource.decorateServerError)(err, _constants1.COMPILER_NAMES.edgeServer);
|
||||
const { request, response, parsedUrl } = params;
|
||||
/**
|
||||
* When there is a failure for an internal Next.js request from
|
||||
* middleware we bypass the error without finishing the request
|
||||
* so we can serve the required chunks to render the error.
|
||||
*/ if (request.url.includes('/_next/static') || request.url.includes('/__nextjs_original-stack-frame') || request.url.includes('/__nextjs_source-map') || request.url.includes('/__nextjs_error_feedback')) {
|
||||
return {
|
||||
finished: false
|
||||
};
|
||||
}
|
||||
response.statusCode = 500;
|
||||
await this.renderError(err, request, response, parsedUrl.pathname);
|
||||
return {
|
||||
finished: true
|
||||
};
|
||||
}
|
||||
}
|
||||
async runEdgeFunction(params) {
|
||||
try {
|
||||
return super.runEdgeFunction({
|
||||
...params,
|
||||
onError: (err)=>this.logErrorWithOriginalStack(err, 'app-dir'),
|
||||
onWarning: (warn)=>{
|
||||
this.logErrorWithOriginalStack(warn, 'warning');
|
||||
}
|
||||
});
|
||||
} catch (error) {
|
||||
if (error instanceof _utils1.DecodeError) {
|
||||
throw error;
|
||||
}
|
||||
this.logErrorWithOriginalStack(error, 'warning');
|
||||
const err = (0, _iserror.getProperError)(error);
|
||||
const { req, res, page } = params;
|
||||
res.statusCode = 500;
|
||||
await this.renderError(err, req, res, page);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
getRequestHandler() {
|
||||
const handler = super.getRequestHandler();
|
||||
return (req, res, parsedUrl)=>{
|
||||
const request = this.normalizeReq(req);
|
||||
const response = this.normalizeRes(res);
|
||||
const loggingConfig = this.nextConfig.logging;
|
||||
if (loggingConfig !== false) {
|
||||
const start = Date.now();
|
||||
const isMiddlewareRequest = (0, _requestmeta.getRequestMeta)(req, 'middlewareInvoke');
|
||||
if (!isMiddlewareRequest) {
|
||||
response.originalResponse.once('close', ()=>{
|
||||
// NOTE: The route match is only attached to the request's meta data
|
||||
// after the request handler is created, so we need to check it in the
|
||||
// close handler and not before.
|
||||
const routeMatch = (0, _requestmeta.getRequestMeta)(req).match;
|
||||
if (!routeMatch) {
|
||||
return;
|
||||
}
|
||||
(0, _logrequests.logRequests)({
|
||||
request,
|
||||
response,
|
||||
loggingConfig,
|
||||
requestDurationInMs: Date.now() - start
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
return handler(request, response, parsedUrl);
|
||||
};
|
||||
}
|
||||
async handleRequest(req, res, parsedUrl) {
|
||||
const span = (0, _trace.trace)('handle-request', undefined, {
|
||||
url: req.url
|
||||
});
|
||||
const result = await span.traceAsyncFn(async ()=>{
|
||||
var _this_ready;
|
||||
await ((_this_ready = this.ready) == null ? void 0 : _this_ready.promise);
|
||||
return await super.handleRequest(req, res, parsedUrl);
|
||||
});
|
||||
const memoryUsage = process.memoryUsage();
|
||||
span.traceChild('memory-usage', {
|
||||
url: req.url,
|
||||
'memory.rss': String(memoryUsage.rss),
|
||||
'memory.heapUsed': String(memoryUsage.heapUsed),
|
||||
'memory.heapTotal': String(memoryUsage.heapTotal)
|
||||
}).stop();
|
||||
return result;
|
||||
}
|
||||
async run(req, res, parsedUrl) {
|
||||
var _this_ready;
|
||||
await ((_this_ready = this.ready) == null ? void 0 : _this_ready.promise);
|
||||
const { basePath } = this.nextConfig;
|
||||
let originalPathname = null;
|
||||
// TODO: see if we can remove this in the future
|
||||
if (basePath && (0, _pathhasprefix.pathHasPrefix)(parsedUrl.pathname || '/', basePath)) {
|
||||
// strip basePath before handling dev bundles
|
||||
// If replace ends up replacing the full url it'll be `undefined`, meaning we have to default it to `/`
|
||||
originalPathname = parsedUrl.pathname;
|
||||
parsedUrl.pathname = (0, _removepathprefix.removePathPrefix)(parsedUrl.pathname || '/', basePath);
|
||||
}
|
||||
const { pathname } = parsedUrl;
|
||||
if (pathname.startsWith('/_next')) {
|
||||
if (_fs.default.existsSync((0, _path.join)(this.publicDir, '_next'))) {
|
||||
throw Object.defineProperty(new Error(_constants.PUBLIC_DIR_MIDDLEWARE_CONFLICT), "__NEXT_ERROR_CODE", {
|
||||
value: "E394",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
}
|
||||
if (originalPathname) {
|
||||
// restore the path before continuing so that custom-routes can accurately determine
|
||||
// if they should match against the basePath or not
|
||||
parsedUrl.pathname = originalPathname;
|
||||
}
|
||||
try {
|
||||
return await super.run(req, res, parsedUrl);
|
||||
} catch (error) {
|
||||
const err = (0, _iserror.getProperError)(error);
|
||||
(0, _formatservererror.formatServerError)(err);
|
||||
this.logErrorWithOriginalStack(err);
|
||||
if (!res.sent) {
|
||||
res.statusCode = 500;
|
||||
try {
|
||||
return await this.renderError(err, req, res, pathname, {
|
||||
__NEXT_PAGE: (0, _iserror.default)(err) && err.page || pathname || ''
|
||||
});
|
||||
} catch (internalErr) {
|
||||
console.error(internalErr);
|
||||
res.body('Internal Server Error').send();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
logErrorWithOriginalStack(err, type) {
|
||||
this.bundlerService.logErrorWithOriginalStack(err, type);
|
||||
}
|
||||
getPagesManifest() {
|
||||
return _nodemanifestloader.NodeManifestLoader.require((0, _path.join)(this.serverDistDir, _constants1.PAGES_MANIFEST)) ?? undefined;
|
||||
}
|
||||
getAppPathsManifest() {
|
||||
if (!this.enabledDirectories.app) return undefined;
|
||||
return _nodemanifestloader.NodeManifestLoader.require((0, _path.join)(this.serverDistDir, _constants1.APP_PATHS_MANIFEST)) ?? undefined;
|
||||
}
|
||||
getinterceptionRoutePatterns() {
|
||||
const rewrites = (0, _generateinterceptionroutesrewrites.generateInterceptionRoutesRewrites)(Object.keys(this.appPathRoutes ?? {}), this.nextConfig.basePath).map((route)=>new RegExp((0, _buildcustomroute.buildCustomRoute)('rewrite', route).regex));
|
||||
if (this.nextConfig.output === 'export' && rewrites.length > 0) {
|
||||
_log.error('Intercepting routes are not supported with static export.\nRead more: https://nextjs.org/docs/app/building-your-application/deploying/static-exports#unsupported-features');
|
||||
process.exit(1);
|
||||
}
|
||||
return rewrites ?? [];
|
||||
}
|
||||
async getMiddleware() {
|
||||
var _this_middleware;
|
||||
// We need to populate the match
|
||||
// field as it isn't serializable
|
||||
if (((_this_middleware = this.middleware) == null ? void 0 : _this_middleware.match) === null) {
|
||||
this.middleware.match = (0, _middlewareroutematcher.getMiddlewareRouteMatcher)(this.middleware.matchers || []);
|
||||
}
|
||||
return this.middleware;
|
||||
}
|
||||
getNextFontManifest() {
|
||||
return undefined;
|
||||
}
|
||||
async hasMiddleware() {
|
||||
return this.hasPage(this.actualMiddlewareFile);
|
||||
}
|
||||
async ensureMiddleware(url) {
|
||||
return this.ensurePage({
|
||||
page: this.actualMiddlewareFile,
|
||||
clientOnly: false,
|
||||
definition: undefined,
|
||||
url
|
||||
});
|
||||
}
|
||||
async loadInstrumentationModule() {
|
||||
let instrumentationModule;
|
||||
if (this.actualInstrumentationHookFile && await this.ensurePage({
|
||||
page: this.actualInstrumentationHookFile,
|
||||
clientOnly: false,
|
||||
definition: undefined
|
||||
}).then(()=>true).catch(()=>false)) {
|
||||
try {
|
||||
instrumentationModule = await require((0, _path.join)(this.distDir, 'server', _constants.INSTRUMENTATION_HOOK_FILENAME));
|
||||
} catch (err) {
|
||||
err.message = `An error occurred while loading instrumentation hook: ${err.message}`;
|
||||
throw err;
|
||||
}
|
||||
}
|
||||
return instrumentationModule;
|
||||
}
|
||||
async runInstrumentationHookIfAvailable() {
|
||||
await this.startServerSpan.traceChild('run-instrumentation-hook').traceAsyncFn(()=>{
|
||||
var _this_instrumentation_register, _this_instrumentation;
|
||||
return (_this_instrumentation = this.instrumentation) == null ? void 0 : (_this_instrumentation_register = _this_instrumentation.register) == null ? void 0 : _this_instrumentation_register.call(_this_instrumentation);
|
||||
});
|
||||
}
|
||||
async ensureEdgeFunction({ page, appPaths, url }) {
|
||||
return this.ensurePage({
|
||||
page,
|
||||
appPaths,
|
||||
clientOnly: false,
|
||||
definition: undefined,
|
||||
url
|
||||
});
|
||||
}
|
||||
generateRoutes(_dev) {
|
||||
// In development we expose all compiled files for react-error-overlay's line show feature
|
||||
// We use unshift so that we're sure the routes is defined before Next's default routes
|
||||
// routes.unshift({
|
||||
// match: getPathMatch('/_next/development/:path*'),
|
||||
// type: 'route',
|
||||
// name: '_next/development catchall',
|
||||
// fn: async (req, res, params) => {
|
||||
// const p = pathJoin(this.distDir, ...(params.path || []))
|
||||
// await this.serveStatic(req, res, p)
|
||||
// return {
|
||||
// finished: true,
|
||||
// }
|
||||
// },
|
||||
// })
|
||||
}
|
||||
_filterAmpDevelopmentScript(html, event) {
|
||||
if (event.code !== 'DISALLOWED_SCRIPT_TAG') {
|
||||
return true;
|
||||
}
|
||||
const snippetChunks = html.split('\n');
|
||||
let snippet;
|
||||
if (!(snippet = html.split('\n')[event.line - 1]) || !(snippet = snippet.substring(event.col))) {
|
||||
return true;
|
||||
}
|
||||
snippet = snippet + snippetChunks.slice(event.line).join('\n');
|
||||
snippet = snippet.substring(0, snippet.indexOf('</script>'));
|
||||
return !snippet.includes('data-amp-development-mode-only');
|
||||
}
|
||||
async getStaticPaths({ pathname, requestHeaders, page, isAppPath }) {
|
||||
// we lazy load the staticPaths to prevent the user
|
||||
// from waiting on them for the page to load in dev mode
|
||||
const __getStaticPaths = async ()=>{
|
||||
const { configFileName, publicRuntimeConfig, serverRuntimeConfig, httpAgentOptions } = this.nextConfig;
|
||||
const { locales, defaultLocale } = this.nextConfig.i18n || {};
|
||||
const staticPathsWorker = this.getStaticPathsWorker();
|
||||
try {
|
||||
var _this_nextConfig_experimental_sri;
|
||||
const pathsResult = await staticPathsWorker.loadStaticPaths({
|
||||
dir: this.dir,
|
||||
distDir: this.distDir,
|
||||
pathname,
|
||||
config: {
|
||||
pprConfig: this.nextConfig.experimental.ppr,
|
||||
configFileName,
|
||||
publicRuntimeConfig,
|
||||
serverRuntimeConfig,
|
||||
dynamicIO: Boolean(this.nextConfig.experimental.dynamicIO)
|
||||
},
|
||||
httpAgentOptions,
|
||||
locales,
|
||||
defaultLocale,
|
||||
page,
|
||||
isAppPath,
|
||||
requestHeaders,
|
||||
cacheHandler: this.nextConfig.cacheHandler,
|
||||
cacheHandlers: this.nextConfig.experimental.cacheHandlers,
|
||||
cacheLifeProfiles: this.nextConfig.experimental.cacheLife,
|
||||
fetchCacheKeyPrefix: this.nextConfig.experimental.fetchCacheKeyPrefix,
|
||||
isrFlushToDisk: this.nextConfig.experimental.isrFlushToDisk,
|
||||
maxMemoryCacheSize: this.nextConfig.cacheMaxMemorySize,
|
||||
nextConfigOutput: this.nextConfig.output,
|
||||
buildId: this.buildId,
|
||||
authInterrupts: Boolean(this.nextConfig.experimental.authInterrupts),
|
||||
sriEnabled: Boolean((_this_nextConfig_experimental_sri = this.nextConfig.experimental.sri) == null ? void 0 : _this_nextConfig_experimental_sri.algorithm)
|
||||
});
|
||||
return pathsResult;
|
||||
} finally{
|
||||
// we don't re-use workers so destroy the used one
|
||||
staticPathsWorker.end();
|
||||
}
|
||||
};
|
||||
const result = this.staticPathsCache.get(pathname);
|
||||
const nextInvoke = (0, _coalescedfunction.withCoalescedInvoke)(__getStaticPaths)(`staticPaths-${pathname}`, []).then((res)=>{
|
||||
const { prerenderedRoutes: staticPaths, fallbackMode: fallback } = res.value;
|
||||
if (!isAppPath && this.nextConfig.output === 'export') {
|
||||
if (fallback === _fallback.FallbackMode.BLOCKING_STATIC_RENDER) {
|
||||
throw Object.defineProperty(new Error('getStaticPaths with "fallback: blocking" cannot be used with "output: export". See more info here: https://nextjs.org/docs/advanced-features/static-html-export'), "__NEXT_ERROR_CODE", {
|
||||
value: "E11",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
} else if (fallback === _fallback.FallbackMode.PRERENDER) {
|
||||
throw Object.defineProperty(new Error('getStaticPaths with "fallback: true" cannot be used with "output: export". See more info here: https://nextjs.org/docs/advanced-features/static-html-export'), "__NEXT_ERROR_CODE", {
|
||||
value: "E210",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
}
|
||||
const value = {
|
||||
staticPaths: staticPaths == null ? void 0 : staticPaths.map((route)=>route.pathname),
|
||||
fallbackMode: fallback
|
||||
};
|
||||
this.staticPathsCache.set(pathname, value);
|
||||
return value;
|
||||
}).catch((err)=>{
|
||||
this.staticPathsCache.remove(pathname);
|
||||
if (!result) throw err;
|
||||
_log.error(`Failed to generate static paths for ${pathname}:`);
|
||||
console.error(err);
|
||||
});
|
||||
if (result) {
|
||||
return result;
|
||||
}
|
||||
return nextInvoke;
|
||||
}
|
||||
async ensurePage(opts) {
|
||||
await this.bundlerService.ensurePage(opts);
|
||||
}
|
||||
async findPageComponents({ locale, page, query, params, isAppPath, appPaths = null, shouldEnsure, url }) {
|
||||
var _this_ready;
|
||||
await ((_this_ready = this.ready) == null ? void 0 : _this_ready.promise);
|
||||
const compilationErr = await this.getCompilationError(page);
|
||||
if (compilationErr) {
|
||||
// Wrap build errors so that they don't get logged again
|
||||
throw new _nextserver.WrappedBuildError(compilationErr);
|
||||
}
|
||||
if (shouldEnsure || this.serverOptions.customServer) {
|
||||
await this.ensurePage({
|
||||
page,
|
||||
appPaths,
|
||||
clientOnly: false,
|
||||
definition: undefined,
|
||||
url
|
||||
});
|
||||
}
|
||||
this.nextFontManifest = super.getNextFontManifest();
|
||||
return await super.findPageComponents({
|
||||
page,
|
||||
query,
|
||||
params,
|
||||
locale,
|
||||
isAppPath,
|
||||
shouldEnsure,
|
||||
url
|
||||
});
|
||||
}
|
||||
async getFallbackErrorComponents(url) {
|
||||
await this.bundlerService.getFallbackErrorComponents(url);
|
||||
return await (0, _loaddefaulterrorcomponents.loadDefaultErrorComponents)(this.distDir);
|
||||
}
|
||||
async getCompilationError(page) {
|
||||
return await this.bundlerService.getCompilationError(page);
|
||||
}
|
||||
async instrumentationOnRequestError(...args) {
|
||||
await super.instrumentationOnRequestError(...args);
|
||||
const err = args[0];
|
||||
this.logErrorWithOriginalStack(err, 'app-dir');
|
||||
}
|
||||
}
|
||||
|
||||
//# sourceMappingURL=next-dev-server.js.map
|
||||
1
frontend/webapp/node_modules/next/dist/server/dev/next-dev-server.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/next-dev-server.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
129
frontend/webapp/node_modules/next/dist/server/dev/on-demand-entry-handler.d.ts
generated
vendored
Normal file
129
frontend/webapp/node_modules/next/dist/server/dev/on-demand-entry-handler.d.ts
generated
vendored
Normal file
@@ -0,0 +1,129 @@
|
||||
import type ws from 'next/dist/compiled/ws';
|
||||
import type { webpack } from 'next/dist/compiled/webpack/webpack';
|
||||
import type { NextConfigComplete } from '../config-shared';
|
||||
import type { CompilerNameValues } from '../../shared/lib/constants';
|
||||
import type { RouteDefinition } from '../route-definitions/route-definition';
|
||||
import type HotReloaderWebpack from './hot-reloader-webpack';
|
||||
import { COMPILER_INDEXES } from '../../shared/lib/constants';
|
||||
import { PAGE_TYPES } from '../../lib/page-types';
|
||||
declare const COMPILER_KEYS: CompilerNameValues[];
|
||||
/**
|
||||
* format: {compiler type}@{page type}@{page path}
|
||||
* e.g. client@pages@/index
|
||||
* e.g. server@app@app/page
|
||||
*
|
||||
* This guarantees the uniqueness for each page, to avoid conflicts between app/ and pages/
|
||||
*/
|
||||
export declare function getEntryKey(compilerType: CompilerNameValues, pageBundleType: PAGE_TYPES, page: string): string;
|
||||
export declare const ADDED: unique symbol;
|
||||
export declare const BUILDING: unique symbol;
|
||||
export declare const BUILT: unique symbol;
|
||||
interface EntryType {
|
||||
/**
|
||||
* Tells if a page is scheduled to be disposed.
|
||||
*/
|
||||
dispose?: boolean;
|
||||
/**
|
||||
* Timestamp with the last time the page was active.
|
||||
*/
|
||||
lastActiveTime?: number;
|
||||
/**
|
||||
* Page build status.
|
||||
*/
|
||||
status?: typeof ADDED | typeof BUILDING | typeof BUILT;
|
||||
/**
|
||||
* Path to the page file relative to the dist folder with no extension.
|
||||
* For example: `pages/about/index`
|
||||
*/
|
||||
bundlePath: string;
|
||||
/**
|
||||
* Webpack request to create a dependency for.
|
||||
*/
|
||||
request: string;
|
||||
}
|
||||
export declare const enum EntryTypes {
|
||||
ENTRY = 0,
|
||||
CHILD_ENTRY = 1
|
||||
}
|
||||
interface Entry extends EntryType {
|
||||
type: EntryTypes.ENTRY;
|
||||
/**
|
||||
* The absolute page to the page file. Used for detecting if the file was removed. For example:
|
||||
* `/Users/Rick/project/pages/about/index.js`
|
||||
*/
|
||||
absolutePagePath: string;
|
||||
/**
|
||||
* All parallel pages that match the same entry, for example:
|
||||
* ['/parallel/@bar/nested/@a/page', '/parallel/@bar/nested/@b/page', '/parallel/@foo/nested/@a/page', '/parallel/@foo/nested/@b/page']
|
||||
*/
|
||||
appPaths: ReadonlyArray<string> | null;
|
||||
}
|
||||
interface ChildEntry extends EntryType {
|
||||
type: EntryTypes.CHILD_ENTRY;
|
||||
/**
|
||||
* Which parent entries use this childEntry.
|
||||
*/
|
||||
parentEntries: Set<string>;
|
||||
/**
|
||||
* The absolute page to the entry file. Used for detecting if the file was removed. For example:
|
||||
* `/Users/Rick/project/app/about/layout.js`
|
||||
*/
|
||||
absoluteEntryFilePath?: string;
|
||||
}
|
||||
declare const entriesMap: Map<string, {
|
||||
/**
|
||||
* The key composed of the compiler name and the page. For example:
|
||||
* `edge-server/about`
|
||||
*/
|
||||
[entryName: string]: Entry | ChildEntry;
|
||||
}>;
|
||||
export declare const getEntries: (dir: string) => NonNullable<ReturnType<(typeof entriesMap)["get"]>>;
|
||||
export declare const getInvalidator: (dir: string) => Invalidator | undefined;
|
||||
declare class Invalidator {
|
||||
private multiCompiler;
|
||||
private building;
|
||||
private rebuildAgain;
|
||||
constructor(multiCompiler: webpack.MultiCompiler);
|
||||
shouldRebuildAll(): boolean;
|
||||
invalidate(compilerKeys?: typeof COMPILER_KEYS): void;
|
||||
startBuilding(compilerKey: keyof typeof COMPILER_INDEXES): void;
|
||||
doneBuilding(compilerKeys?: typeof COMPILER_KEYS): void;
|
||||
willRebuild(compilerKey: keyof typeof COMPILER_INDEXES): boolean;
|
||||
}
|
||||
interface PagePathData {
|
||||
filename: string;
|
||||
bundlePath: string;
|
||||
page: string;
|
||||
}
|
||||
/**
|
||||
* Attempts to find a page file path from the given pages absolute directory,
|
||||
* a page and allowed extensions. If the page can't be found it will throw an
|
||||
* error. It defaults the `/_error` page to Next.js internal error page.
|
||||
*
|
||||
* @param rootDir Absolute path to the project root.
|
||||
* @param page The page normalized (it will be denormalized).
|
||||
* @param extensions Array of page extensions.
|
||||
* @param pagesDir Absolute path to the pages folder with trailing `/pages`.
|
||||
* @param appDir Absolute path to the app folder with trailing `/app`.
|
||||
*/
|
||||
export declare function findPagePathData(rootDir: string, page: string, extensions: string[], pagesDir?: string, appDir?: string): Promise<PagePathData>;
|
||||
export declare function onDemandEntryHandler({ hotReloader, maxInactiveAge, multiCompiler, nextConfig, pagesBufferLength, pagesDir, rootDir, appDir, }: {
|
||||
hotReloader: HotReloaderWebpack;
|
||||
maxInactiveAge: number;
|
||||
multiCompiler: webpack.MultiCompiler;
|
||||
nextConfig: NextConfigComplete;
|
||||
pagesBufferLength: number;
|
||||
pagesDir?: string;
|
||||
rootDir: string;
|
||||
appDir?: string;
|
||||
}): {
|
||||
ensurePage({ page, appPaths, definition, isApp, url, }: {
|
||||
page: string;
|
||||
appPaths?: ReadonlyArray<string> | null;
|
||||
definition?: RouteDefinition;
|
||||
isApp?: boolean;
|
||||
url?: string;
|
||||
}): Promise<void>;
|
||||
onHMR(client: ws, getHmrServerError: () => Error | null): void;
|
||||
};
|
||||
export {};
|
||||
678
frontend/webapp/node_modules/next/dist/server/dev/on-demand-entry-handler.js
generated
vendored
Normal file
678
frontend/webapp/node_modules/next/dist/server/dev/on-demand-entry-handler.js
generated
vendored
Normal file
@@ -0,0 +1,678 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
0 && (module.exports = {
|
||||
ADDED: null,
|
||||
BUILDING: null,
|
||||
BUILT: null,
|
||||
EntryTypes: null,
|
||||
findPagePathData: null,
|
||||
getEntries: null,
|
||||
getEntryKey: null,
|
||||
getInvalidator: null,
|
||||
onDemandEntryHandler: null
|
||||
});
|
||||
function _export(target, all) {
|
||||
for(var name in all)Object.defineProperty(target, name, {
|
||||
enumerable: true,
|
||||
get: all[name]
|
||||
});
|
||||
}
|
||||
_export(exports, {
|
||||
ADDED: function() {
|
||||
return ADDED;
|
||||
},
|
||||
BUILDING: function() {
|
||||
return BUILDING;
|
||||
},
|
||||
BUILT: function() {
|
||||
return BUILT;
|
||||
},
|
||||
EntryTypes: function() {
|
||||
return EntryTypes;
|
||||
},
|
||||
findPagePathData: function() {
|
||||
return findPagePathData;
|
||||
},
|
||||
getEntries: function() {
|
||||
return getEntries;
|
||||
},
|
||||
getEntryKey: function() {
|
||||
return getEntryKey;
|
||||
},
|
||||
getInvalidator: function() {
|
||||
return getInvalidator;
|
||||
},
|
||||
onDemandEntryHandler: function() {
|
||||
return onDemandEntryHandler;
|
||||
}
|
||||
});
|
||||
const _debug = /*#__PURE__*/ _interop_require_default(require("next/dist/compiled/debug"));
|
||||
const _events = require("events");
|
||||
const _findpagefile = require("../lib/find-page-file");
|
||||
const _entries = require("../../build/entries");
|
||||
const _path = require("path");
|
||||
const _normalizepathsep = require("../../shared/lib/page-path/normalize-path-sep");
|
||||
const _normalizepagepath = require("../../shared/lib/page-path/normalize-page-path");
|
||||
const _ensureleadingslash = require("../../shared/lib/page-path/ensure-leading-slash");
|
||||
const _removepagepathtail = require("../../shared/lib/page-path/remove-page-path-tail");
|
||||
const _output = require("../../build/output");
|
||||
const _getroutefromentrypoint = /*#__PURE__*/ _interop_require_default(require("../get-route-from-entrypoint"));
|
||||
const _utils = require("../../build/utils");
|
||||
const _utils1 = require("../../shared/lib/utils");
|
||||
const _constants = require("../../shared/lib/constants");
|
||||
const _segment = require("../../shared/lib/segment");
|
||||
const _hotreloadertypes = require("./hot-reloader-types");
|
||||
const _apppageroutedefinition = require("../route-definitions/app-page-route-definition");
|
||||
const _scheduler = require("../../lib/scheduler");
|
||||
const _batcher = require("../../lib/batcher");
|
||||
const _apppaths = require("../../shared/lib/router/utils/app-paths");
|
||||
const _pagetypes = require("../../lib/page-types");
|
||||
const _flightdatahelpers = require("../../client/flight-data-helpers");
|
||||
function _interop_require_default(obj) {
|
||||
return obj && obj.__esModule ? obj : {
|
||||
default: obj
|
||||
};
|
||||
}
|
||||
const debug = (0, _debug.default)('next:on-demand-entry-handler');
|
||||
/**
|
||||
* Returns object keys with type inferred from the object key
|
||||
*/ const keys = Object.keys;
|
||||
const COMPILER_KEYS = keys(_constants.COMPILER_INDEXES);
|
||||
function treePathToEntrypoint(segmentPath, parentPath) {
|
||||
const [parallelRouteKey, segment] = segmentPath;
|
||||
// TODO-APP: modify this path to cover parallelRouteKey convention
|
||||
const path = (parentPath ? parentPath + '/' : '') + (parallelRouteKey !== 'children' && !segment.startsWith('@') ? `@${parallelRouteKey}/` : '') + (segment === '' ? 'page' : segment);
|
||||
// Last segment
|
||||
if (segmentPath.length === 2) {
|
||||
return path;
|
||||
}
|
||||
const childSegmentPath = (0, _flightdatahelpers.getNextFlightSegmentPath)(segmentPath);
|
||||
return treePathToEntrypoint(childSegmentPath, path);
|
||||
}
|
||||
function convertDynamicParamTypeToSyntax(dynamicParamTypeShort, param) {
|
||||
switch(dynamicParamTypeShort){
|
||||
case 'c':
|
||||
case 'ci':
|
||||
return `[...${param}]`;
|
||||
case 'oc':
|
||||
return `[[...${param}]]`;
|
||||
case 'd':
|
||||
case 'di':
|
||||
return `[${param}]`;
|
||||
default:
|
||||
throw Object.defineProperty(new Error('Unknown dynamic param type'), "__NEXT_ERROR_CODE", {
|
||||
value: "E378",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
}
|
||||
function getEntryKey(compilerType, pageBundleType, page) {
|
||||
// TODO: handle the /children slot better
|
||||
// this is a quick hack to handle when children is provided as children/page instead of /page
|
||||
const pageKey = page.replace(/(@[^/]+)\/children/g, '$1');
|
||||
return `${compilerType}@${pageBundleType}@${pageKey}`;
|
||||
}
|
||||
function getPageBundleType(pageBundlePath) {
|
||||
// Handle special case for /_error
|
||||
if (pageBundlePath === '/_error') return _pagetypes.PAGE_TYPES.PAGES;
|
||||
if ((0, _utils.isMiddlewareFilename)(pageBundlePath)) return _pagetypes.PAGE_TYPES.ROOT;
|
||||
return pageBundlePath.startsWith('pages/') ? _pagetypes.PAGE_TYPES.PAGES : pageBundlePath.startsWith('app/') ? _pagetypes.PAGE_TYPES.APP : _pagetypes.PAGE_TYPES.ROOT;
|
||||
}
|
||||
function getEntrypointsFromTree(tree, isFirst, parentPath = []) {
|
||||
const [segment, parallelRoutes] = tree;
|
||||
const currentSegment = Array.isArray(segment) ? convertDynamicParamTypeToSyntax(segment[2], segment[0]) : segment;
|
||||
const isPageSegment = currentSegment.startsWith(_segment.PAGE_SEGMENT_KEY);
|
||||
const currentPath = [
|
||||
...parentPath,
|
||||
isPageSegment ? '' : currentSegment
|
||||
];
|
||||
if (!isFirst && isPageSegment) {
|
||||
// TODO get rid of '' at the start of tree
|
||||
return [
|
||||
treePathToEntrypoint(currentPath.slice(1))
|
||||
];
|
||||
}
|
||||
return Object.keys(parallelRoutes).reduce((paths, key)=>{
|
||||
const childTree = parallelRoutes[key];
|
||||
const childPages = getEntrypointsFromTree(childTree, false, [
|
||||
...currentPath,
|
||||
key
|
||||
]);
|
||||
return [
|
||||
...paths,
|
||||
...childPages
|
||||
];
|
||||
}, []);
|
||||
}
|
||||
const ADDED = Symbol('added');
|
||||
const BUILDING = Symbol('building');
|
||||
const BUILT = Symbol('built');
|
||||
var EntryTypes = /*#__PURE__*/ function(EntryTypes) {
|
||||
EntryTypes[EntryTypes["ENTRY"] = 0] = "ENTRY";
|
||||
EntryTypes[EntryTypes["CHILD_ENTRY"] = 1] = "CHILD_ENTRY";
|
||||
return EntryTypes;
|
||||
}({});
|
||||
const entriesMap = new Map();
|
||||
// remove /server from end of output for server compiler
|
||||
const normalizeOutputPath = (dir)=>dir.replace(/[/\\]server$/, '');
|
||||
const getEntries = (dir)=>{
|
||||
dir = normalizeOutputPath(dir);
|
||||
const entries = entriesMap.get(dir) || {};
|
||||
entriesMap.set(dir, entries);
|
||||
return entries;
|
||||
};
|
||||
const invalidators = new Map();
|
||||
const getInvalidator = (dir)=>{
|
||||
dir = normalizeOutputPath(dir);
|
||||
return invalidators.get(dir);
|
||||
};
|
||||
const doneCallbacks = new _events.EventEmitter();
|
||||
const lastClientAccessPages = [
|
||||
''
|
||||
];
|
||||
const lastServerAccessPagesForAppDir = [
|
||||
''
|
||||
];
|
||||
// Make sure only one invalidation happens at a time
|
||||
// Otherwise, webpack hash gets changed and it'll force the client to reload.
|
||||
class Invalidator {
|
||||
constructor(multiCompiler){
|
||||
this.building = new Set();
|
||||
this.rebuildAgain = new Set();
|
||||
this.multiCompiler = multiCompiler;
|
||||
}
|
||||
shouldRebuildAll() {
|
||||
return this.rebuildAgain.size > 0;
|
||||
}
|
||||
invalidate(compilerKeys = COMPILER_KEYS) {
|
||||
for (const key of compilerKeys){
|
||||
var _this_multiCompiler_compilers_COMPILER_INDEXES_key_watching;
|
||||
// If there's a current build is processing, we won't abort it by invalidating.
|
||||
// (If aborted, it'll cause a client side hard reload)
|
||||
// But let it to invalidate just after the completion.
|
||||
// So, it can re-build the queued pages at once.
|
||||
if (this.building.has(key)) {
|
||||
this.rebuildAgain.add(key);
|
||||
continue;
|
||||
}
|
||||
this.building.add(key);
|
||||
(_this_multiCompiler_compilers_COMPILER_INDEXES_key_watching = this.multiCompiler.compilers[_constants.COMPILER_INDEXES[key]].watching) == null ? void 0 : _this_multiCompiler_compilers_COMPILER_INDEXES_key_watching.invalidate();
|
||||
}
|
||||
}
|
||||
startBuilding(compilerKey) {
|
||||
this.building.add(compilerKey);
|
||||
}
|
||||
doneBuilding(compilerKeys = []) {
|
||||
const rebuild = [];
|
||||
for (const key of compilerKeys){
|
||||
this.building.delete(key);
|
||||
if (this.rebuildAgain.has(key)) {
|
||||
rebuild.push(key);
|
||||
this.rebuildAgain.delete(key);
|
||||
}
|
||||
}
|
||||
if (rebuild.length > 0) {
|
||||
this.invalidate(rebuild);
|
||||
}
|
||||
}
|
||||
willRebuild(compilerKey) {
|
||||
return this.rebuildAgain.has(compilerKey);
|
||||
}
|
||||
}
|
||||
function disposeInactiveEntries(entries, maxInactiveAge) {
|
||||
Object.keys(entries).forEach((entryKey)=>{
|
||||
const entryData = entries[entryKey];
|
||||
const { lastActiveTime, status, dispose, bundlePath } = entryData;
|
||||
// TODO-APP: implement disposing of CHILD_ENTRY
|
||||
if (entryData.type === 1) {
|
||||
return;
|
||||
}
|
||||
// For the root middleware and the instrumentation hook files,
|
||||
// we don't dispose them periodically as it's needed for every request.
|
||||
if ((0, _utils.isMiddlewareFilename)(bundlePath) || (0, _utils.isInstrumentationHookFilename)(bundlePath)) {
|
||||
return;
|
||||
}
|
||||
if (dispose) // Skip pages already scheduled for disposing
|
||||
return;
|
||||
// This means this entry is currently building or just added
|
||||
// We don't need to dispose those entries.
|
||||
if (status !== BUILT) return;
|
||||
// We should not build the last accessed page even we didn't get any pings
|
||||
// Sometimes, it's possible our XHR ping to wait before completing other requests.
|
||||
// In that case, we should not dispose the current viewing page
|
||||
if (lastClientAccessPages.includes(entryKey) || lastServerAccessPagesForAppDir.includes(entryKey)) return;
|
||||
if (lastActiveTime && Date.now() - lastActiveTime > maxInactiveAge) {
|
||||
entries[entryKey].dispose = true;
|
||||
}
|
||||
});
|
||||
}
|
||||
// Normalize both app paths and page paths
|
||||
function tryToNormalizePagePath(page) {
|
||||
try {
|
||||
return (0, _normalizepagepath.normalizePagePath)(page);
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
throw new _utils1.PageNotFoundError(page);
|
||||
}
|
||||
}
|
||||
async function findPagePathData(rootDir, page, extensions, pagesDir, appDir) {
|
||||
const normalizedPagePath = tryToNormalizePagePath(page);
|
||||
let pagePath = null;
|
||||
const isInstrumentation = (0, _utils.isInstrumentationHookFile)(normalizedPagePath);
|
||||
if ((0, _utils.isMiddlewareFile)(normalizedPagePath) || isInstrumentation) {
|
||||
pagePath = await (0, _findpagefile.findPageFile)(rootDir, normalizedPagePath, extensions, false);
|
||||
if (!pagePath) {
|
||||
throw new _utils1.PageNotFoundError(normalizedPagePath);
|
||||
}
|
||||
const pageUrl = (0, _ensureleadingslash.ensureLeadingSlash)((0, _removepagepathtail.removePagePathTail)((0, _normalizepathsep.normalizePathSep)(pagePath), {
|
||||
extensions
|
||||
}));
|
||||
let bundlePath = normalizedPagePath;
|
||||
let pageKey = _path.posix.normalize(pageUrl);
|
||||
if (isInstrumentation || (0, _utils.isMiddlewareFile)(normalizedPagePath)) {
|
||||
bundlePath = bundlePath.replace('/src', '');
|
||||
pageKey = page.replace('/src', '');
|
||||
}
|
||||
return {
|
||||
filename: (0, _path.join)(rootDir, pagePath),
|
||||
bundlePath: bundlePath.slice(1),
|
||||
page: pageKey
|
||||
};
|
||||
}
|
||||
// Check appDir first falling back to pagesDir
|
||||
if (appDir) {
|
||||
if (page === _constants.UNDERSCORE_NOT_FOUND_ROUTE_ENTRY) {
|
||||
const notFoundPath = await (0, _findpagefile.findPageFile)(appDir, 'not-found', extensions, true);
|
||||
if (notFoundPath) {
|
||||
return {
|
||||
filename: (0, _path.join)(appDir, notFoundPath),
|
||||
bundlePath: `app${_constants.UNDERSCORE_NOT_FOUND_ROUTE_ENTRY}`,
|
||||
page: _constants.UNDERSCORE_NOT_FOUND_ROUTE_ENTRY
|
||||
};
|
||||
}
|
||||
return {
|
||||
filename: require.resolve('next/dist/client/components/not-found-error'),
|
||||
bundlePath: `app${_constants.UNDERSCORE_NOT_FOUND_ROUTE_ENTRY}`,
|
||||
page: _constants.UNDERSCORE_NOT_FOUND_ROUTE_ENTRY
|
||||
};
|
||||
}
|
||||
pagePath = await (0, _findpagefile.findPageFile)(appDir, normalizedPagePath, extensions, true);
|
||||
if (pagePath) {
|
||||
const pageUrl = (0, _ensureleadingslash.ensureLeadingSlash)((0, _removepagepathtail.removePagePathTail)((0, _normalizepathsep.normalizePathSep)(pagePath), {
|
||||
keepIndex: true,
|
||||
extensions
|
||||
}));
|
||||
return {
|
||||
filename: (0, _path.join)(appDir, pagePath),
|
||||
bundlePath: _path.posix.join('app', pageUrl),
|
||||
page: _path.posix.normalize(pageUrl)
|
||||
};
|
||||
}
|
||||
}
|
||||
if (!pagePath && pagesDir) {
|
||||
pagePath = await (0, _findpagefile.findPageFile)(pagesDir, normalizedPagePath, extensions, false);
|
||||
}
|
||||
if (pagePath !== null && pagesDir) {
|
||||
const pageUrl = (0, _ensureleadingslash.ensureLeadingSlash)((0, _removepagepathtail.removePagePathTail)((0, _normalizepathsep.normalizePathSep)(pagePath), {
|
||||
extensions
|
||||
}));
|
||||
return {
|
||||
filename: (0, _path.join)(pagesDir, pagePath),
|
||||
bundlePath: _path.posix.join('pages', (0, _normalizepagepath.normalizePagePath)(pageUrl)),
|
||||
page: _path.posix.normalize(pageUrl)
|
||||
};
|
||||
}
|
||||
if (page === '/_error') {
|
||||
return {
|
||||
filename: require.resolve('next/dist/pages/_error'),
|
||||
bundlePath: page,
|
||||
page: (0, _normalizepathsep.normalizePathSep)(page)
|
||||
};
|
||||
} else {
|
||||
throw new _utils1.PageNotFoundError(normalizedPagePath);
|
||||
}
|
||||
}
|
||||
function onDemandEntryHandler({ hotReloader, maxInactiveAge, multiCompiler, nextConfig, pagesBufferLength, pagesDir, rootDir, appDir }) {
|
||||
const hasAppDir = !!appDir;
|
||||
let curInvalidator = getInvalidator(multiCompiler.outputPath);
|
||||
const curEntries = getEntries(multiCompiler.outputPath);
|
||||
if (!curInvalidator) {
|
||||
curInvalidator = new Invalidator(multiCompiler);
|
||||
invalidators.set(multiCompiler.outputPath, curInvalidator);
|
||||
}
|
||||
const startBuilding = (compilation)=>{
|
||||
const compilationName = compilation.name;
|
||||
curInvalidator.startBuilding(compilationName);
|
||||
};
|
||||
for (const compiler of multiCompiler.compilers){
|
||||
compiler.hooks.make.tap('NextJsOnDemandEntries', startBuilding);
|
||||
}
|
||||
function getPagePathsFromEntrypoints(type, entrypoints) {
|
||||
const pagePaths = [];
|
||||
for (const entrypoint of entrypoints.values()){
|
||||
const page = (0, _getroutefromentrypoint.default)(entrypoint.name, hasAppDir);
|
||||
if (page) {
|
||||
var _entrypoint_name;
|
||||
const pageBundleType = ((_entrypoint_name = entrypoint.name) == null ? void 0 : _entrypoint_name.startsWith('app/')) ? _pagetypes.PAGE_TYPES.APP : _pagetypes.PAGE_TYPES.PAGES;
|
||||
pagePaths.push(getEntryKey(type, pageBundleType, page));
|
||||
} else if ((0, _utils.isMiddlewareFilename)(entrypoint.name) || (0, _utils.isInstrumentationHookFilename)(entrypoint.name)) {
|
||||
pagePaths.push(getEntryKey(type, _pagetypes.PAGE_TYPES.ROOT, `/${entrypoint.name}`));
|
||||
}
|
||||
}
|
||||
return pagePaths;
|
||||
}
|
||||
for (const compiler of multiCompiler.compilers){
|
||||
compiler.hooks.done.tap('NextJsOnDemandEntries', ()=>{
|
||||
var _getInvalidator;
|
||||
return (_getInvalidator = getInvalidator(compiler.outputPath)) == null ? void 0 : _getInvalidator.doneBuilding([
|
||||
compiler.name
|
||||
]);
|
||||
});
|
||||
}
|
||||
multiCompiler.hooks.done.tap('NextJsOnDemandEntries', (multiStats)=>{
|
||||
var _getInvalidator;
|
||||
const [clientStats, serverStats, edgeServerStats] = multiStats.stats;
|
||||
const entryNames = [
|
||||
...getPagePathsFromEntrypoints(_constants.COMPILER_NAMES.client, clientStats.compilation.entrypoints),
|
||||
...getPagePathsFromEntrypoints(_constants.COMPILER_NAMES.server, serverStats.compilation.entrypoints),
|
||||
...edgeServerStats ? getPagePathsFromEntrypoints(_constants.COMPILER_NAMES.edgeServer, edgeServerStats.compilation.entrypoints) : []
|
||||
];
|
||||
for (const name of entryNames){
|
||||
const entry = curEntries[name];
|
||||
if (!entry) {
|
||||
continue;
|
||||
}
|
||||
if (entry.status !== BUILDING) {
|
||||
continue;
|
||||
}
|
||||
entry.status = BUILT;
|
||||
doneCallbacks.emit(name);
|
||||
}
|
||||
(_getInvalidator = getInvalidator(multiCompiler.outputPath)) == null ? void 0 : _getInvalidator.doneBuilding([
|
||||
...COMPILER_KEYS
|
||||
]);
|
||||
});
|
||||
const pingIntervalTime = Math.max(1000, Math.min(5000, maxInactiveAge));
|
||||
setInterval(function() {
|
||||
disposeInactiveEntries(curEntries, maxInactiveAge);
|
||||
}, pingIntervalTime + 1000).unref();
|
||||
function handleAppDirPing(tree) {
|
||||
const pages = getEntrypointsFromTree(tree, true);
|
||||
for (const page of pages){
|
||||
for (const compilerType of [
|
||||
_constants.COMPILER_NAMES.client,
|
||||
_constants.COMPILER_NAMES.server,
|
||||
_constants.COMPILER_NAMES.edgeServer
|
||||
]){
|
||||
const entryKey = getEntryKey(compilerType, _pagetypes.PAGE_TYPES.APP, `/${page}`);
|
||||
const entryInfo = curEntries[entryKey];
|
||||
// If there's no entry, it may have been invalidated and needs to be re-built.
|
||||
if (!entryInfo) {
|
||||
continue;
|
||||
}
|
||||
// We don't need to maintain active state of anything other than BUILT entries
|
||||
if (entryInfo.status !== BUILT) continue;
|
||||
// If there's an entryInfo
|
||||
if (!lastServerAccessPagesForAppDir.includes(entryKey)) {
|
||||
lastServerAccessPagesForAppDir.unshift(entryKey);
|
||||
// Maintain the buffer max length
|
||||
// TODO: verify that the current pageKey is not at the end of the array as multiple entrypoints can exist
|
||||
if (lastServerAccessPagesForAppDir.length > pagesBufferLength) {
|
||||
lastServerAccessPagesForAppDir.pop();
|
||||
}
|
||||
}
|
||||
entryInfo.lastActiveTime = Date.now();
|
||||
entryInfo.dispose = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
function handlePing(pg) {
|
||||
const page = (0, _normalizepathsep.normalizePathSep)(pg);
|
||||
for (const compilerType of [
|
||||
_constants.COMPILER_NAMES.client,
|
||||
_constants.COMPILER_NAMES.server,
|
||||
_constants.COMPILER_NAMES.edgeServer
|
||||
]){
|
||||
const entryKey = getEntryKey(compilerType, _pagetypes.PAGE_TYPES.PAGES, page);
|
||||
const entryInfo = curEntries[entryKey];
|
||||
// If there's no entry, it may have been invalidated and needs to be re-built.
|
||||
if (!entryInfo) {
|
||||
// if (page !== lastEntry) client pings, but there's no entry for page
|
||||
if (compilerType === _constants.COMPILER_NAMES.client) {
|
||||
return;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
// We don't need to maintain active state of anything other than BUILT entries
|
||||
if (entryInfo.status !== BUILT) continue;
|
||||
// If there's an entryInfo
|
||||
if (!lastClientAccessPages.includes(entryKey)) {
|
||||
lastClientAccessPages.unshift(entryKey);
|
||||
// Maintain the buffer max length
|
||||
if (lastClientAccessPages.length > pagesBufferLength) {
|
||||
lastClientAccessPages.pop();
|
||||
}
|
||||
}
|
||||
entryInfo.lastActiveTime = Date.now();
|
||||
entryInfo.dispose = false;
|
||||
}
|
||||
return;
|
||||
}
|
||||
async function ensurePageImpl({ page, appPaths, definition, isApp, url }) {
|
||||
const stalledTime = 60;
|
||||
const stalledEnsureTimeout = setTimeout(()=>{
|
||||
debug(`Ensuring ${page} has taken longer than ${stalledTime}s, if this continues to stall this may be a bug`);
|
||||
}, stalledTime * 1000);
|
||||
try {
|
||||
let route;
|
||||
if (definition) {
|
||||
route = definition;
|
||||
} else {
|
||||
route = await findPagePathData(rootDir, page, nextConfig.pageExtensions, pagesDir, appDir);
|
||||
}
|
||||
const isInsideAppDir = !!appDir && route.filename.startsWith(appDir);
|
||||
if (typeof isApp === 'boolean' && isApp !== isInsideAppDir) {
|
||||
Error.stackTraceLimit = 15;
|
||||
throw Object.defineProperty(new Error(`Ensure bailed, found path "${route.page}" does not match ensure type (${isApp ? 'app' : 'pages'})`), "__NEXT_ERROR_CODE", {
|
||||
value: "E419",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
const pageBundleType = getPageBundleType(route.bundlePath);
|
||||
const addEntry = (compilerType)=>{
|
||||
const entryKey = getEntryKey(compilerType, pageBundleType, route.page);
|
||||
if (curEntries[entryKey] && // there can be an overlap in the entryKey for the instrumentation hook file and a page named the same
|
||||
// this is a quick fix to support this scenario by overwriting the instrumentation hook entry, since we only use it one time
|
||||
// any changes to the instrumentation hook file will require a restart of the dev server anyway
|
||||
!(0, _utils.isInstrumentationHookFilename)(curEntries[entryKey].bundlePath)) {
|
||||
curEntries[entryKey].dispose = false;
|
||||
curEntries[entryKey].lastActiveTime = Date.now();
|
||||
if (curEntries[entryKey].status === BUILT) {
|
||||
return {
|
||||
entryKey,
|
||||
newEntry: false,
|
||||
shouldInvalidate: false
|
||||
};
|
||||
}
|
||||
return {
|
||||
entryKey,
|
||||
newEntry: false,
|
||||
shouldInvalidate: true
|
||||
};
|
||||
}
|
||||
curEntries[entryKey] = {
|
||||
type: 0,
|
||||
appPaths,
|
||||
absolutePagePath: route.filename,
|
||||
request: route.filename,
|
||||
bundlePath: route.bundlePath,
|
||||
dispose: false,
|
||||
lastActiveTime: Date.now(),
|
||||
status: ADDED
|
||||
};
|
||||
return {
|
||||
entryKey: entryKey,
|
||||
newEntry: true,
|
||||
shouldInvalidate: true
|
||||
};
|
||||
};
|
||||
const staticInfo = await (0, _entries.getStaticInfoIncludingLayouts)({
|
||||
page,
|
||||
pageFilePath: route.filename,
|
||||
isInsideAppDir,
|
||||
pageExtensions: nextConfig.pageExtensions,
|
||||
isDev: true,
|
||||
config: nextConfig,
|
||||
appDir
|
||||
});
|
||||
const added = new Map();
|
||||
const isServerComponent = isInsideAppDir && staticInfo.rsc !== _constants.RSC_MODULE_TYPES.client;
|
||||
let pageRuntime = staticInfo.runtime;
|
||||
if ((0, _utils.isMiddlewareFile)(page) && !nextConfig.experimental.nodeMiddleware) {
|
||||
pageRuntime = 'edge';
|
||||
}
|
||||
(0, _entries.runDependingOnPageType)({
|
||||
page: route.page,
|
||||
pageRuntime,
|
||||
pageType: pageBundleType,
|
||||
onClient: ()=>{
|
||||
// Skip adding the client entry for app / Server Components.
|
||||
if (isServerComponent || isInsideAppDir) {
|
||||
return;
|
||||
}
|
||||
added.set(_constants.COMPILER_NAMES.client, addEntry(_constants.COMPILER_NAMES.client));
|
||||
},
|
||||
onServer: ()=>{
|
||||
added.set(_constants.COMPILER_NAMES.server, addEntry(_constants.COMPILER_NAMES.server));
|
||||
const edgeServerEntry = getEntryKey(_constants.COMPILER_NAMES.edgeServer, pageBundleType, route.page);
|
||||
if (curEntries[edgeServerEntry] && !(0, _utils.isInstrumentationHookFile)(route.page)) {
|
||||
// Runtime switched from edge to server
|
||||
delete curEntries[edgeServerEntry];
|
||||
}
|
||||
},
|
||||
onEdgeServer: ()=>{
|
||||
added.set(_constants.COMPILER_NAMES.edgeServer, addEntry(_constants.COMPILER_NAMES.edgeServer));
|
||||
const serverEntry = getEntryKey(_constants.COMPILER_NAMES.server, pageBundleType, route.page);
|
||||
if (curEntries[serverEntry] && !(0, _utils.isInstrumentationHookFile)(route.page)) {
|
||||
// Runtime switched from server to edge
|
||||
delete curEntries[serverEntry];
|
||||
}
|
||||
}
|
||||
});
|
||||
const addedValues = [
|
||||
...added.values()
|
||||
];
|
||||
const entriesThatShouldBeInvalidated = [
|
||||
...added.entries()
|
||||
].filter(([, entry])=>entry.shouldInvalidate);
|
||||
const hasNewEntry = addedValues.some((entry)=>entry.newEntry);
|
||||
if (hasNewEntry) {
|
||||
const routePage = isApp ? route.page : (0, _apppaths.normalizeAppPath)(route.page);
|
||||
(0, _output.reportTrigger)(routePage, url);
|
||||
}
|
||||
if (entriesThatShouldBeInvalidated.length > 0) {
|
||||
const invalidatePromise = Promise.all(entriesThatShouldBeInvalidated.map(([compilerKey, { entryKey }])=>{
|
||||
return new Promise((resolve, reject)=>{
|
||||
doneCallbacks.once(entryKey, (err)=>{
|
||||
if (err) {
|
||||
return reject(err);
|
||||
}
|
||||
// If the invalidation also triggers a rebuild, we need to
|
||||
// wait for that additional build to prevent race conditions.
|
||||
const needsRebuild = curInvalidator.willRebuild(compilerKey);
|
||||
if (needsRebuild) {
|
||||
doneCallbacks.once(entryKey, (rebuildErr)=>{
|
||||
if (rebuildErr) {
|
||||
return reject(rebuildErr);
|
||||
}
|
||||
resolve();
|
||||
});
|
||||
} else {
|
||||
resolve();
|
||||
}
|
||||
});
|
||||
});
|
||||
}));
|
||||
curInvalidator.invalidate([
|
||||
...added.keys()
|
||||
]);
|
||||
await invalidatePromise;
|
||||
}
|
||||
} finally{
|
||||
clearTimeout(stalledEnsureTimeout);
|
||||
}
|
||||
}
|
||||
// Make sure that we won't have multiple invalidations ongoing concurrently.
|
||||
const batcher = _batcher.Batcher.create({
|
||||
// The cache key here is composed of the elements that affect the
|
||||
// compilation, namely, the page, whether it's client only, and whether
|
||||
// it's an app page. This ensures that we don't have multiple compilations
|
||||
// for the same page happening concurrently.
|
||||
//
|
||||
// We don't include the whole match because it contains match specific
|
||||
// parameters (like route params) that would just bust this cache. Any
|
||||
// details that would possibly bust the cache should be listed here.
|
||||
cacheKeyFn: (options)=>JSON.stringify(options),
|
||||
// Schedule the invocation of the ensurePageImpl function on the next tick.
|
||||
schedulerFn: _scheduler.scheduleOnNextTick
|
||||
});
|
||||
return {
|
||||
async ensurePage ({ page, appPaths = null, definition, isApp, url }) {
|
||||
// If the route is actually an app page route, then we should have access
|
||||
// to the app route definition, and therefore, the appPaths from it.
|
||||
if (!appPaths && definition && (0, _apppageroutedefinition.isAppPageRouteDefinition)(definition)) {
|
||||
appPaths = definition.appPaths;
|
||||
}
|
||||
// Wrap the invocation of the ensurePageImpl function in the pending
|
||||
// wrapper, which will ensure that we don't have multiple compilations
|
||||
// for the same page happening concurrently.
|
||||
return batcher.batch({
|
||||
page,
|
||||
appPaths,
|
||||
definition,
|
||||
isApp
|
||||
}, async ()=>{
|
||||
await ensurePageImpl({
|
||||
page,
|
||||
appPaths,
|
||||
definition,
|
||||
isApp,
|
||||
url
|
||||
});
|
||||
});
|
||||
},
|
||||
onHMR (client, getHmrServerError) {
|
||||
let bufferedHmrServerError = null;
|
||||
client.addEventListener('close', ()=>{
|
||||
bufferedHmrServerError = null;
|
||||
});
|
||||
client.addEventListener('message', ({ data })=>{
|
||||
try {
|
||||
const error = getHmrServerError();
|
||||
// New error occurred: buffered error is flushed and new error occurred
|
||||
if (!bufferedHmrServerError && error) {
|
||||
hotReloader.send({
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.SERVER_ERROR,
|
||||
errorJSON: (0, _utils1.stringifyError)(error)
|
||||
});
|
||||
bufferedHmrServerError = null;
|
||||
}
|
||||
const parsedData = JSON.parse(typeof data !== 'string' ? data.toString() : data);
|
||||
if (parsedData.event === 'ping') {
|
||||
if (parsedData.appDirRoute) {
|
||||
handleAppDirPing(parsedData.tree);
|
||||
} else {
|
||||
handlePing(parsedData.page);
|
||||
}
|
||||
}
|
||||
} catch {}
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
//# sourceMappingURL=on-demand-entry-handler.js.map
|
||||
1
frontend/webapp/node_modules/next/dist/server/dev/on-demand-entry-handler.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/on-demand-entry-handler.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
10
frontend/webapp/node_modules/next/dist/server/dev/parse-version-info.d.ts
generated
vendored
Normal file
10
frontend/webapp/node_modules/next/dist/server/dev/parse-version-info.d.ts
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
export interface VersionInfo {
|
||||
installed: string;
|
||||
staleness: 'fresh' | 'stale-patch' | 'stale-minor' | 'stale-major' | 'stale-prerelease' | 'newer-than-npm' | 'unknown';
|
||||
expected?: string;
|
||||
}
|
||||
export declare function parseVersionInfo(o: {
|
||||
installed: string;
|
||||
latest: string;
|
||||
canary: string;
|
||||
}): VersionInfo;
|
||||
108
frontend/webapp/node_modules/next/dist/server/dev/parse-version-info.js
generated
vendored
Normal file
108
frontend/webapp/node_modules/next/dist/server/dev/parse-version-info.js
generated
vendored
Normal file
@@ -0,0 +1,108 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "parseVersionInfo", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return parseVersionInfo;
|
||||
}
|
||||
});
|
||||
const _semver = /*#__PURE__*/ _interop_require_wildcard(require("next/dist/compiled/semver"));
|
||||
function _getRequireWildcardCache(nodeInterop) {
|
||||
if (typeof WeakMap !== "function") return null;
|
||||
var cacheBabelInterop = new WeakMap();
|
||||
var cacheNodeInterop = new WeakMap();
|
||||
return (_getRequireWildcardCache = function(nodeInterop) {
|
||||
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
||||
})(nodeInterop);
|
||||
}
|
||||
function _interop_require_wildcard(obj, nodeInterop) {
|
||||
if (!nodeInterop && obj && obj.__esModule) {
|
||||
return obj;
|
||||
}
|
||||
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
||||
return {
|
||||
default: obj
|
||||
};
|
||||
}
|
||||
var cache = _getRequireWildcardCache(nodeInterop);
|
||||
if (cache && cache.has(obj)) {
|
||||
return cache.get(obj);
|
||||
}
|
||||
var newObj = {
|
||||
__proto__: null
|
||||
};
|
||||
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
||||
for(var key in obj){
|
||||
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
||||
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
||||
if (desc && (desc.get || desc.set)) {
|
||||
Object.defineProperty(newObj, key, desc);
|
||||
} else {
|
||||
newObj[key] = obj[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
newObj.default = obj;
|
||||
if (cache) {
|
||||
cache.set(obj, newObj);
|
||||
}
|
||||
return newObj;
|
||||
}
|
||||
function parseVersionInfo(o) {
|
||||
const latest = _semver.parse(o.latest);
|
||||
const canary = _semver.parse(o.canary);
|
||||
const installedParsed = _semver.parse(o.installed);
|
||||
const installed = o.installed;
|
||||
if (installedParsed && latest && canary) {
|
||||
if (installedParsed.major < latest.major) {
|
||||
// Old major version
|
||||
return {
|
||||
staleness: 'stale-major',
|
||||
expected: latest.raw,
|
||||
installed
|
||||
};
|
||||
} else if (installedParsed.prerelease[0] === 'canary' && _semver.lt(installedParsed, canary)) {
|
||||
// Matching major, but old canary
|
||||
return {
|
||||
staleness: 'stale-prerelease',
|
||||
expected: canary.raw,
|
||||
installed
|
||||
};
|
||||
} else if (!installedParsed.prerelease.length && _semver.lt(installedParsed, latest)) {
|
||||
// Stable, but not the latest
|
||||
if (installedParsed.minor === latest.minor) {
|
||||
// Same major and minor, but not the latest patch
|
||||
return {
|
||||
staleness: 'stale-patch',
|
||||
expected: latest.raw,
|
||||
installed
|
||||
};
|
||||
}
|
||||
return {
|
||||
staleness: 'stale-minor',
|
||||
expected: latest.raw,
|
||||
installed
|
||||
};
|
||||
} else if (_semver.gt(installedParsed, latest) && installedParsed.version !== canary.version) {
|
||||
// Newer major version
|
||||
return {
|
||||
staleness: 'newer-than-npm',
|
||||
installed
|
||||
};
|
||||
} else {
|
||||
// Latest and greatest
|
||||
return {
|
||||
staleness: 'fresh',
|
||||
installed
|
||||
};
|
||||
}
|
||||
}
|
||||
return {
|
||||
installed: (installedParsed == null ? void 0 : installedParsed.raw) ?? '0.0.0',
|
||||
staleness: 'unknown'
|
||||
};
|
||||
}
|
||||
|
||||
//# sourceMappingURL=parse-version-info.js.map
|
||||
1
frontend/webapp/node_modules/next/dist/server/dev/parse-version-info.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/parse-version-info.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["../../../src/server/dev/parse-version-info.ts"],"sourcesContent":["import * as semver from 'next/dist/compiled/semver'\n\nexport interface VersionInfo {\n installed: string\n staleness:\n | 'fresh'\n | 'stale-patch'\n | 'stale-minor'\n | 'stale-major'\n | 'stale-prerelease'\n | 'newer-than-npm'\n | 'unknown'\n expected?: string\n}\n\nexport function parseVersionInfo(o: {\n installed: string\n latest: string\n canary: string\n}): VersionInfo {\n const latest = semver.parse(o.latest)\n const canary = semver.parse(o.canary)\n const installedParsed = semver.parse(o.installed)\n const installed = o.installed\n if (installedParsed && latest && canary) {\n if (installedParsed.major < latest.major) {\n // Old major version\n return { staleness: 'stale-major', expected: latest.raw, installed }\n } else if (\n installedParsed.prerelease[0] === 'canary' &&\n semver.lt(installedParsed, canary)\n ) {\n // Matching major, but old canary\n return {\n staleness: 'stale-prerelease',\n expected: canary.raw,\n installed,\n }\n } else if (\n !installedParsed.prerelease.length &&\n semver.lt(installedParsed, latest)\n ) {\n // Stable, but not the latest\n if (installedParsed.minor === latest.minor) {\n // Same major and minor, but not the latest patch\n return {\n staleness: 'stale-patch',\n expected: latest.raw,\n installed,\n }\n }\n return { staleness: 'stale-minor', expected: latest.raw, installed }\n } else if (\n semver.gt(installedParsed, latest) &&\n installedParsed.version !== canary.version\n ) {\n // Newer major version\n return { staleness: 'newer-than-npm', installed }\n } else {\n // Latest and greatest\n return { staleness: 'fresh', installed }\n }\n }\n\n return {\n installed: installedParsed?.raw ?? '0.0.0',\n staleness: 'unknown',\n }\n}\n"],"names":["parseVersionInfo","o","latest","semver","parse","canary","installedParsed","installed","major","staleness","expected","raw","prerelease","lt","length","minor","gt","version"],"mappings":";;;;+BAegBA;;;eAAAA;;;gEAfQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAejB,SAASA,iBAAiBC,CAIhC;IACC,MAAMC,SAASC,QAAOC,KAAK,CAACH,EAAEC,MAAM;IACpC,MAAMG,SAASF,QAAOC,KAAK,CAACH,EAAEI,MAAM;IACpC,MAAMC,kBAAkBH,QAAOC,KAAK,CAACH,EAAEM,SAAS;IAChD,MAAMA,YAAYN,EAAEM,SAAS;IAC7B,IAAID,mBAAmBJ,UAAUG,QAAQ;QACvC,IAAIC,gBAAgBE,KAAK,GAAGN,OAAOM,KAAK,EAAE;YACxC,oBAAoB;YACpB,OAAO;gBAAEC,WAAW;gBAAeC,UAAUR,OAAOS,GAAG;gBAAEJ;YAAU;QACrE,OAAO,IACLD,gBAAgBM,UAAU,CAAC,EAAE,KAAK,YAClCT,QAAOU,EAAE,CAACP,iBAAiBD,SAC3B;YACA,iCAAiC;YACjC,OAAO;gBACLI,WAAW;gBACXC,UAAUL,OAAOM,GAAG;gBACpBJ;YACF;QACF,OAAO,IACL,CAACD,gBAAgBM,UAAU,CAACE,MAAM,IAClCX,QAAOU,EAAE,CAACP,iBAAiBJ,SAC3B;YACA,6BAA6B;YAC7B,IAAII,gBAAgBS,KAAK,KAAKb,OAAOa,KAAK,EAAE;gBAC1C,iDAAiD;gBACjD,OAAO;oBACLN,WAAW;oBACXC,UAAUR,OAAOS,GAAG;oBACpBJ;gBACF;YACF;YACA,OAAO;gBAAEE,WAAW;gBAAeC,UAAUR,OAAOS,GAAG;gBAAEJ;YAAU;QACrE,OAAO,IACLJ,QAAOa,EAAE,CAACV,iBAAiBJ,WAC3BI,gBAAgBW,OAAO,KAAKZ,OAAOY,OAAO,EAC1C;YACA,sBAAsB;YACtB,OAAO;gBAAER,WAAW;gBAAkBF;YAAU;QAClD,OAAO;YACL,sBAAsB;YACtB,OAAO;gBAAEE,WAAW;gBAASF;YAAU;QACzC;IACF;IAEA,OAAO;QACLA,WAAWD,CAAAA,mCAAAA,gBAAiBK,GAAG,KAAI;QACnCF,WAAW;IACb;AACF"}
|
||||
2
frontend/webapp/node_modules/next/dist/server/dev/require-cache.d.ts
generated
vendored
Normal file
2
frontend/webapp/node_modules/next/dist/server/dev/require-cache.d.ts
generated
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
export declare function deleteFromRequireCache(filePath: string): boolean;
|
||||
export declare function deleteCache(filePath: string): void;
|
||||
61
frontend/webapp/node_modules/next/dist/server/dev/require-cache.js
generated
vendored
Normal file
61
frontend/webapp/node_modules/next/dist/server/dev/require-cache.js
generated
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
0 && (module.exports = {
|
||||
deleteCache: null,
|
||||
deleteFromRequireCache: null
|
||||
});
|
||||
function _export(target, all) {
|
||||
for(var name in all)Object.defineProperty(target, name, {
|
||||
enumerable: true,
|
||||
get: all[name]
|
||||
});
|
||||
}
|
||||
_export(exports, {
|
||||
deleteCache: function() {
|
||||
return deleteCache;
|
||||
},
|
||||
deleteFromRequireCache: function() {
|
||||
return deleteFromRequireCache;
|
||||
}
|
||||
});
|
||||
const _iserror = /*#__PURE__*/ _interop_require_default(require("../../lib/is-error"));
|
||||
const _realpath = require("../../lib/realpath");
|
||||
const _loadmanifest = require("../load-manifest");
|
||||
function _interop_require_default(obj) {
|
||||
return obj && obj.__esModule ? obj : {
|
||||
default: obj
|
||||
};
|
||||
}
|
||||
function deleteFromRequireCache(filePath) {
|
||||
try {
|
||||
filePath = (0, _realpath.realpathSync)(filePath);
|
||||
} catch (e) {
|
||||
if ((0, _iserror.default)(e) && e.code !== 'ENOENT') throw e;
|
||||
}
|
||||
const mod = require.cache[filePath];
|
||||
if (mod) {
|
||||
// remove the child reference from all parent modules
|
||||
for (const parent of Object.values(require.cache)){
|
||||
if (parent == null ? void 0 : parent.children) {
|
||||
const idx = parent.children.indexOf(mod);
|
||||
if (idx >= 0) parent.children.splice(idx, 1);
|
||||
}
|
||||
}
|
||||
// remove parent references from external modules
|
||||
for (const child of mod.children){
|
||||
child.parent = null;
|
||||
}
|
||||
delete require.cache[filePath];
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
function deleteCache(filePath) {
|
||||
// try to clear it from the fs cache
|
||||
(0, _loadmanifest.clearManifestCache)(filePath);
|
||||
deleteFromRequireCache(filePath);
|
||||
}
|
||||
|
||||
//# sourceMappingURL=require-cache.js.map
|
||||
1
frontend/webapp/node_modules/next/dist/server/dev/require-cache.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/require-cache.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["../../../src/server/dev/require-cache.ts"],"sourcesContent":["import isError from '../../lib/is-error'\nimport { realpathSync } from '../../lib/realpath'\nimport { clearManifestCache } from '../load-manifest'\n\nexport function deleteFromRequireCache(filePath: string) {\n try {\n filePath = realpathSync(filePath)\n } catch (e) {\n if (isError(e) && e.code !== 'ENOENT') throw e\n }\n const mod = require.cache[filePath]\n if (mod) {\n // remove the child reference from all parent modules\n for (const parent of Object.values(require.cache)) {\n if (parent?.children) {\n const idx = parent.children.indexOf(mod)\n if (idx >= 0) parent.children.splice(idx, 1)\n }\n }\n // remove parent references from external modules\n for (const child of mod.children) {\n child.parent = null\n }\n delete require.cache[filePath]\n return true\n }\n return false\n}\n\nexport function deleteCache(filePath: string) {\n // try to clear it from the fs cache\n clearManifestCache(filePath)\n\n deleteFromRequireCache(filePath)\n}\n"],"names":["deleteCache","deleteFromRequireCache","filePath","realpathSync","e","isError","code","mod","require","cache","parent","Object","values","children","idx","indexOf","splice","child","clearManifestCache"],"mappings":";;;;;;;;;;;;;;;IA6BgBA,WAAW;eAAXA;;IAzBAC,sBAAsB;eAAtBA;;;gEAJI;0BACS;8BACM;;;;;;AAE5B,SAASA,uBAAuBC,QAAgB;IACrD,IAAI;QACFA,WAAWC,IAAAA,sBAAY,EAACD;IAC1B,EAAE,OAAOE,GAAG;QACV,IAAIC,IAAAA,gBAAO,EAACD,MAAMA,EAAEE,IAAI,KAAK,UAAU,MAAMF;IAC/C;IACA,MAAMG,MAAMC,QAAQC,KAAK,CAACP,SAAS;IACnC,IAAIK,KAAK;QACP,qDAAqD;QACrD,KAAK,MAAMG,UAAUC,OAAOC,MAAM,CAACJ,QAAQC,KAAK,EAAG;YACjD,IAAIC,0BAAAA,OAAQG,QAAQ,EAAE;gBACpB,MAAMC,MAAMJ,OAAOG,QAAQ,CAACE,OAAO,CAACR;gBACpC,IAAIO,OAAO,GAAGJ,OAAOG,QAAQ,CAACG,MAAM,CAACF,KAAK;YAC5C;QACF;QACA,iDAAiD;QACjD,KAAK,MAAMG,SAASV,IAAIM,QAAQ,CAAE;YAChCI,MAAMP,MAAM,GAAG;QACjB;QACA,OAAOF,QAAQC,KAAK,CAACP,SAAS;QAC9B,OAAO;IACT;IACA,OAAO;AACT;AAEO,SAASF,YAAYE,QAAgB;IAC1C,oCAAoC;IACpCgB,IAAAA,gCAAkB,EAAChB;IAEnBD,uBAAuBC;AACzB"}
|
||||
42
frontend/webapp/node_modules/next/dist/server/dev/static-paths-worker.d.ts
generated
vendored
Normal file
42
frontend/webapp/node_modules/next/dist/server/dev/static-paths-worker.d.ts
generated
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
import type { NextConfigComplete } from '../config-shared';
|
||||
import '../require-hook';
|
||||
import '../node-environment';
|
||||
import type { StaticPathsResult } from '../../build/static-paths/types';
|
||||
import type { IncrementalCache } from '../lib/incremental-cache';
|
||||
import { type ExperimentalPPRConfig } from '../lib/experimental/ppr';
|
||||
type RuntimeConfig = {
|
||||
pprConfig: ExperimentalPPRConfig | undefined;
|
||||
configFileName: string;
|
||||
publicRuntimeConfig: {
|
||||
[key: string]: any;
|
||||
};
|
||||
serverRuntimeConfig: {
|
||||
[key: string]: any;
|
||||
};
|
||||
dynamicIO: boolean;
|
||||
};
|
||||
export declare function loadStaticPaths({ dir, distDir, pathname, config, httpAgentOptions, locales, defaultLocale, isAppPath, page, isrFlushToDisk, fetchCacheKeyPrefix, maxMemoryCacheSize, requestHeaders, cacheHandler, cacheHandlers, cacheLifeProfiles, nextConfigOutput, buildId, authInterrupts, sriEnabled, }: {
|
||||
dir: string;
|
||||
distDir: string;
|
||||
pathname: string;
|
||||
config: RuntimeConfig;
|
||||
httpAgentOptions: NextConfigComplete['httpAgentOptions'];
|
||||
locales?: readonly string[];
|
||||
defaultLocale?: string;
|
||||
isAppPath: boolean;
|
||||
page: string;
|
||||
isrFlushToDisk?: boolean;
|
||||
fetchCacheKeyPrefix?: string;
|
||||
maxMemoryCacheSize?: number;
|
||||
requestHeaders: IncrementalCache['requestHeaders'];
|
||||
cacheHandler?: string;
|
||||
cacheHandlers?: NextConfigComplete['experimental']['cacheHandlers'];
|
||||
cacheLifeProfiles?: {
|
||||
[profile: string]: import('../../server/use-cache/cache-life').CacheLife;
|
||||
};
|
||||
nextConfigOutput: 'standalone' | 'export' | undefined;
|
||||
buildId: string;
|
||||
authInterrupts: boolean;
|
||||
sriEnabled: boolean;
|
||||
}): Promise<Partial<StaticPathsResult>>;
|
||||
export {};
|
||||
91
frontend/webapp/node_modules/next/dist/server/dev/static-paths-worker.js
generated
vendored
Normal file
91
frontend/webapp/node_modules/next/dist/server/dev/static-paths-worker.js
generated
vendored
Normal file
@@ -0,0 +1,91 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "loadStaticPaths", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return loadStaticPaths;
|
||||
}
|
||||
});
|
||||
require("../require-hook");
|
||||
require("../node-environment");
|
||||
const _utils = require("../../build/utils");
|
||||
const _appsegments = require("../../build/segment-config/app/app-segments");
|
||||
const _loadcomponents = require("../load-components");
|
||||
const _setuphttpagentenv = require("../setup-http-agent-env");
|
||||
const _checks = require("../route-modules/checks");
|
||||
const _ppr = require("../lib/experimental/ppr");
|
||||
const _invarianterror = require("../../shared/lib/invariant-error");
|
||||
const _collectrootparamkeys = require("../../build/segment-config/app/collect-root-param-keys");
|
||||
const _app = require("../../build/static-paths/app");
|
||||
const _pages = require("../../build/static-paths/pages");
|
||||
const _createincrementalcache = require("../../export/helpers/create-incremental-cache");
|
||||
async function loadStaticPaths({ dir, distDir, pathname, config, httpAgentOptions, locales, defaultLocale, isAppPath, page, isrFlushToDisk, fetchCacheKeyPrefix, maxMemoryCacheSize, requestHeaders, cacheHandler, cacheHandlers, cacheLifeProfiles, nextConfigOutput, buildId, authInterrupts, sriEnabled }) {
|
||||
// this needs to be initialized before loadComponents otherwise
|
||||
// "use cache" could be missing it's cache handlers
|
||||
await (0, _createincrementalcache.createIncrementalCache)({
|
||||
dir,
|
||||
distDir,
|
||||
cacheHandler,
|
||||
cacheHandlers,
|
||||
requestHeaders,
|
||||
fetchCacheKeyPrefix,
|
||||
flushToDisk: isrFlushToDisk,
|
||||
cacheMaxMemorySize: maxMemoryCacheSize
|
||||
});
|
||||
// update work memory runtime-config
|
||||
require('../../shared/lib/runtime-config.external').setConfig(config);
|
||||
(0, _setuphttpagentenv.setHttpClientAndAgentOptions)({
|
||||
httpAgentOptions
|
||||
});
|
||||
const components = await (0, _loadcomponents.loadComponents)({
|
||||
distDir,
|
||||
// In `pages/`, the page is the same as the pathname.
|
||||
page: page || pathname,
|
||||
isAppPath,
|
||||
isDev: true,
|
||||
sriEnabled
|
||||
});
|
||||
if (isAppPath) {
|
||||
const segments = await (0, _appsegments.collectSegments)(components);
|
||||
const isRoutePPREnabled = (0, _checks.isAppPageRouteModule)(components.routeModule) && (0, _ppr.checkIsRoutePPREnabled)(config.pprConfig, (0, _utils.reduceAppConfig)(segments));
|
||||
const rootParamKeys = (0, _collectrootparamkeys.collectRootParamKeys)(components);
|
||||
return (0, _app.buildAppStaticPaths)({
|
||||
dir,
|
||||
page: pathname,
|
||||
dynamicIO: config.dynamicIO,
|
||||
segments,
|
||||
distDir,
|
||||
requestHeaders,
|
||||
cacheHandler,
|
||||
cacheLifeProfiles,
|
||||
isrFlushToDisk,
|
||||
fetchCacheKeyPrefix,
|
||||
maxMemoryCacheSize,
|
||||
ComponentMod: components.ComponentMod,
|
||||
nextConfigOutput,
|
||||
isRoutePPREnabled,
|
||||
buildId,
|
||||
authInterrupts,
|
||||
rootParamKeys
|
||||
});
|
||||
} else if (!components.getStaticPaths) {
|
||||
// We shouldn't get to this point since the worker should only be called for
|
||||
// SSG pages with getStaticPaths.
|
||||
throw Object.defineProperty(new _invarianterror.InvariantError(`Failed to load page with getStaticPaths for ${pathname}`), "__NEXT_ERROR_CODE", {
|
||||
value: "E605",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
return (0, _pages.buildPagesStaticPaths)({
|
||||
page: pathname,
|
||||
getStaticPaths: components.getStaticPaths,
|
||||
configFileName: config.configFileName,
|
||||
locales,
|
||||
defaultLocale
|
||||
});
|
||||
}
|
||||
|
||||
//# sourceMappingURL=static-paths-worker.js.map
|
||||
1
frontend/webapp/node_modules/next/dist/server/dev/static-paths-worker.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/static-paths-worker.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
110
frontend/webapp/node_modules/next/dist/server/dev/turbopack-utils.d.ts
generated
vendored
Normal file
110
frontend/webapp/node_modules/next/dist/server/dev/turbopack-utils.d.ts
generated
vendored
Normal file
@@ -0,0 +1,110 @@
|
||||
import type { ServerFields, SetupOpts } from '../lib/router-utils/setup-dev-bundler';
|
||||
import type { Issue, TurbopackResult, Endpoint, RawEntrypoints, Update as TurbopackUpdate, WrittenEndpoint } from '../../build/swc/types';
|
||||
import { type HMR_ACTION_TYPES } from './hot-reloader-types';
|
||||
import type { PropagateToWorkersField } from '../lib/router-utils/types';
|
||||
import type { TurbopackManifestLoader } from '../../shared/lib/turbopack/manifest-loader';
|
||||
import type { AppRoute, Entrypoints, PageRoute } from '../../build/swc/types';
|
||||
import { type EntryKey } from '../../shared/lib/turbopack/entry-key';
|
||||
import type ws from 'next/dist/compiled/ws';
|
||||
import type { CustomRoutes } from '../../lib/load-custom-routes';
|
||||
import { type EntryIssuesMap, type TopLevelIssuesMap } from '../../shared/lib/turbopack/utils';
|
||||
export declare function printNonFatalIssue(issue: Issue): void;
|
||||
export declare function processTopLevelIssues(currentTopLevelIssues: TopLevelIssuesMap, result: TurbopackResult): void;
|
||||
export declare function msToNs(ms: number): bigint;
|
||||
export type ChangeSubscriptions = Map<EntryKey, Promise<AsyncIterableIterator<TurbopackResult>>>;
|
||||
export type HandleWrittenEndpoint = (key: EntryKey, result: TurbopackResult<WrittenEndpoint>, forceDeleteCache: boolean) => boolean;
|
||||
export type StartChangeSubscription = (key: EntryKey, includeIssues: boolean, endpoint: Endpoint, makePayload: (change: TurbopackResult, hash: string) => Promise<HMR_ACTION_TYPES> | HMR_ACTION_TYPES | void, onError?: (e: Error) => Promise<HMR_ACTION_TYPES> | HMR_ACTION_TYPES | void) => Promise<void>;
|
||||
export type StopChangeSubscription = (key: EntryKey) => Promise<void>;
|
||||
export type SendHmr = (id: string, payload: HMR_ACTION_TYPES) => void;
|
||||
export type StartBuilding = (id: string, requestUrl: string | undefined, forceRebuild: boolean) => () => void;
|
||||
export type ReadyIds = Set<string>;
|
||||
export type ClientState = {
|
||||
clientIssues: EntryIssuesMap;
|
||||
hmrPayloads: Map<string, HMR_ACTION_TYPES>;
|
||||
turbopackUpdates: TurbopackUpdate[];
|
||||
subscriptions: Map<string, AsyncIterator<any>>;
|
||||
};
|
||||
export type ClientStateMap = WeakMap<ws, ClientState>;
|
||||
type HandleRouteTypeHooks = {
|
||||
handleWrittenEndpoint: HandleWrittenEndpoint;
|
||||
subscribeToChanges: StartChangeSubscription;
|
||||
};
|
||||
export declare function handleRouteType({ dev, page, pathname, route, currentEntryIssues, entrypoints, manifestLoader, readyIds, devRewrites, productionRewrites, hooks, logErrors, }: {
|
||||
dev: boolean;
|
||||
page: string;
|
||||
pathname: string;
|
||||
route: PageRoute | AppRoute;
|
||||
currentEntryIssues: EntryIssuesMap;
|
||||
entrypoints: Entrypoints;
|
||||
manifestLoader: TurbopackManifestLoader;
|
||||
devRewrites: SetupOpts['fsChecker']['rewrites'] | undefined;
|
||||
productionRewrites: CustomRoutes['rewrites'] | undefined;
|
||||
logErrors: boolean;
|
||||
readyIds?: ReadyIds;
|
||||
hooks?: HandleRouteTypeHooks;
|
||||
}): Promise<void>;
|
||||
/**
|
||||
* Maintains a mapping between entrypoins and the corresponding client asset paths.
|
||||
*/
|
||||
export declare class AssetMapper {
|
||||
private entryMap;
|
||||
private assetMap;
|
||||
/**
|
||||
* Overrides asset paths for a key and updates the mapping from path to key.
|
||||
*
|
||||
* @param key
|
||||
* @param assetPaths asset paths relative to the .next directory
|
||||
*/
|
||||
setPathsForKey(key: EntryKey, assetPaths: string[]): void;
|
||||
/**
|
||||
* Deletes the key and any asset only referenced by this key.
|
||||
*
|
||||
* @param key
|
||||
*/
|
||||
delete(key: EntryKey): void;
|
||||
getAssetPathsByKey(key: EntryKey): string[];
|
||||
getKeysByAsset(path: string): EntryKey[];
|
||||
keys(): IterableIterator<EntryKey>;
|
||||
}
|
||||
export declare function hasEntrypointForKey(entrypoints: Entrypoints, key: EntryKey, assetMapper: AssetMapper | undefined): boolean;
|
||||
type HandleEntrypointsHooks = {
|
||||
handleWrittenEndpoint: HandleWrittenEndpoint;
|
||||
propagateServerField: (field: PropagateToWorkersField, args: any) => Promise<void>;
|
||||
sendHmr: SendHmr;
|
||||
startBuilding: StartBuilding;
|
||||
subscribeToChanges: StartChangeSubscription;
|
||||
unsubscribeFromChanges: StopChangeSubscription;
|
||||
unsubscribeFromHmrEvents: (client: ws, id: string) => void;
|
||||
};
|
||||
type HandleEntrypointsDevOpts = {
|
||||
assetMapper: AssetMapper;
|
||||
changeSubscriptions: ChangeSubscriptions;
|
||||
clients: Set<ws>;
|
||||
clientStates: ClientStateMap;
|
||||
serverFields: ServerFields;
|
||||
hooks: HandleEntrypointsHooks;
|
||||
};
|
||||
export declare function handleEntrypoints({ entrypoints, currentEntrypoints, currentEntryIssues, manifestLoader, devRewrites, logErrors, dev, }: {
|
||||
entrypoints: TurbopackResult<RawEntrypoints>;
|
||||
currentEntrypoints: Entrypoints;
|
||||
currentEntryIssues: EntryIssuesMap;
|
||||
manifestLoader: TurbopackManifestLoader;
|
||||
devRewrites: SetupOpts['fsChecker']['rewrites'] | undefined;
|
||||
productionRewrites: CustomRoutes['rewrites'] | undefined;
|
||||
logErrors: boolean;
|
||||
dev: HandleEntrypointsDevOpts;
|
||||
}): Promise<void>;
|
||||
export declare function handlePagesErrorRoute({ currentEntryIssues, entrypoints, manifestLoader, devRewrites, productionRewrites, logErrors, hooks, }: {
|
||||
currentEntryIssues: EntryIssuesMap;
|
||||
entrypoints: Entrypoints;
|
||||
manifestLoader: TurbopackManifestLoader;
|
||||
devRewrites: SetupOpts['fsChecker']['rewrites'] | undefined;
|
||||
productionRewrites: CustomRoutes['rewrites'] | undefined;
|
||||
logErrors: boolean;
|
||||
hooks: HandleRouteTypeHooks;
|
||||
}): Promise<void>;
|
||||
export declare function removeRouteSuffix(route: string): string;
|
||||
export declare function addRouteSuffix(route: string): string;
|
||||
export declare function addMetadataIdToRoute(route: string): string;
|
||||
export declare function normalizedPageToTurbopackStructureRoute(route: string, ext: string | false): string;
|
||||
export {};
|
||||
692
frontend/webapp/node_modules/next/dist/server/dev/turbopack-utils.js
generated
vendored
Normal file
692
frontend/webapp/node_modules/next/dist/server/dev/turbopack-utils.js
generated
vendored
Normal file
@@ -0,0 +1,692 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
0 && (module.exports = {
|
||||
AssetMapper: null,
|
||||
addMetadataIdToRoute: null,
|
||||
addRouteSuffix: null,
|
||||
handleEntrypoints: null,
|
||||
handlePagesErrorRoute: null,
|
||||
handleRouteType: null,
|
||||
hasEntrypointForKey: null,
|
||||
msToNs: null,
|
||||
normalizedPageToTurbopackStructureRoute: null,
|
||||
printNonFatalIssue: null,
|
||||
processTopLevelIssues: null,
|
||||
removeRouteSuffix: null
|
||||
});
|
||||
function _export(target, all) {
|
||||
for(var name in all)Object.defineProperty(target, name, {
|
||||
enumerable: true,
|
||||
get: all[name]
|
||||
});
|
||||
}
|
||||
_export(exports, {
|
||||
AssetMapper: function() {
|
||||
return AssetMapper;
|
||||
},
|
||||
addMetadataIdToRoute: function() {
|
||||
return addMetadataIdToRoute;
|
||||
},
|
||||
addRouteSuffix: function() {
|
||||
return addRouteSuffix;
|
||||
},
|
||||
handleEntrypoints: function() {
|
||||
return handleEntrypoints;
|
||||
},
|
||||
handlePagesErrorRoute: function() {
|
||||
return handlePagesErrorRoute;
|
||||
},
|
||||
handleRouteType: function() {
|
||||
return handleRouteType;
|
||||
},
|
||||
hasEntrypointForKey: function() {
|
||||
return hasEntrypointForKey;
|
||||
},
|
||||
msToNs: function() {
|
||||
return msToNs;
|
||||
},
|
||||
normalizedPageToTurbopackStructureRoute: function() {
|
||||
return normalizedPageToTurbopackStructureRoute;
|
||||
},
|
||||
printNonFatalIssue: function() {
|
||||
return printNonFatalIssue;
|
||||
},
|
||||
processTopLevelIssues: function() {
|
||||
return processTopLevelIssues;
|
||||
},
|
||||
removeRouteSuffix: function() {
|
||||
return removeRouteSuffix;
|
||||
}
|
||||
});
|
||||
const _hotreloadertypes = require("./hot-reloader-types");
|
||||
const _log = /*#__PURE__*/ _interop_require_wildcard(require("../../build/output/log"));
|
||||
const _entrykey = require("../../shared/lib/turbopack/entry-key");
|
||||
const _ismetadataroute = require("../../lib/metadata/is-metadata-route");
|
||||
const _utils = require("../../shared/lib/turbopack/utils");
|
||||
function _getRequireWildcardCache(nodeInterop) {
|
||||
if (typeof WeakMap !== "function") return null;
|
||||
var cacheBabelInterop = new WeakMap();
|
||||
var cacheNodeInterop = new WeakMap();
|
||||
return (_getRequireWildcardCache = function(nodeInterop) {
|
||||
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
||||
})(nodeInterop);
|
||||
}
|
||||
function _interop_require_wildcard(obj, nodeInterop) {
|
||||
if (!nodeInterop && obj && obj.__esModule) {
|
||||
return obj;
|
||||
}
|
||||
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
||||
return {
|
||||
default: obj
|
||||
};
|
||||
}
|
||||
var cache = _getRequireWildcardCache(nodeInterop);
|
||||
if (cache && cache.has(obj)) {
|
||||
return cache.get(obj);
|
||||
}
|
||||
var newObj = {
|
||||
__proto__: null
|
||||
};
|
||||
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
||||
for(var key in obj){
|
||||
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
||||
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
||||
if (desc && (desc.get || desc.set)) {
|
||||
Object.defineProperty(newObj, key, desc);
|
||||
} else {
|
||||
newObj[key] = obj[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
newObj.default = obj;
|
||||
if (cache) {
|
||||
cache.set(obj, newObj);
|
||||
}
|
||||
return newObj;
|
||||
}
|
||||
const onceErrorSet = new Set();
|
||||
/**
|
||||
* Check if given issue is a warning to be display only once.
|
||||
* This mimics behavior of get-page-static-info's warnOnce.
|
||||
* @param issue
|
||||
* @returns
|
||||
*/ function shouldEmitOnceWarning(issue) {
|
||||
const { severity, title, stage } = issue;
|
||||
if (severity === 'warning' && title.value === 'Invalid page configuration') {
|
||||
if (onceErrorSet.has(issue)) {
|
||||
return false;
|
||||
}
|
||||
onceErrorSet.add(issue);
|
||||
}
|
||||
if (severity === 'warning' && stage === 'config' && (0, _utils.renderStyledStringToErrorAnsi)(issue.title).includes("can't be external")) {
|
||||
if (onceErrorSet.has(issue)) {
|
||||
return false;
|
||||
}
|
||||
onceErrorSet.add(issue);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function printNonFatalIssue(issue) {
|
||||
if ((0, _utils.isRelevantWarning)(issue) && shouldEmitOnceWarning(issue)) {
|
||||
_log.warn((0, _utils.formatIssue)(issue));
|
||||
}
|
||||
}
|
||||
function processTopLevelIssues(currentTopLevelIssues, result) {
|
||||
currentTopLevelIssues.clear();
|
||||
for (const issue of result.issues){
|
||||
const issueKey = (0, _utils.getIssueKey)(issue);
|
||||
currentTopLevelIssues.set(issueKey, issue);
|
||||
}
|
||||
}
|
||||
const MILLISECONDS_IN_NANOSECOND = BigInt(1000000);
|
||||
function msToNs(ms) {
|
||||
return BigInt(Math.floor(ms)) * MILLISECONDS_IN_NANOSECOND;
|
||||
}
|
||||
async function handleRouteType({ dev, page, pathname, route, currentEntryIssues, entrypoints, manifestLoader, readyIds, devRewrites, productionRewrites, hooks, logErrors }) {
|
||||
const shouldCreateWebpackStats = process.env.TURBOPACK_STATS != null;
|
||||
switch(route.type){
|
||||
case 'page':
|
||||
{
|
||||
const clientKey = (0, _entrykey.getEntryKey)('pages', 'client', page);
|
||||
const serverKey = (0, _entrykey.getEntryKey)('pages', 'server', page);
|
||||
try {
|
||||
// In the best case scenario, Turbopack chunks document, app, page separately in that order,
|
||||
// so it can happen that the chunks of document change, but the chunks of app and page
|
||||
// don't. We still need to reload the page chunks in that case though, otherwise the version
|
||||
// of the document or app component export from the pages template is stale.
|
||||
let documentOrAppChanged = false;
|
||||
if (entrypoints.global.app) {
|
||||
const key = (0, _entrykey.getEntryKey)('pages', 'server', '_app');
|
||||
const writtenEndpoint = await entrypoints.global.app.writeToDisk();
|
||||
documentOrAppChanged ||= (hooks == null ? void 0 : hooks.handleWrittenEndpoint(key, writtenEndpoint, false)) ?? false;
|
||||
(0, _utils.processIssues)(currentEntryIssues, key, writtenEndpoint, false, logErrors);
|
||||
}
|
||||
await manifestLoader.loadBuildManifest('_app');
|
||||
await manifestLoader.loadPagesManifest('_app');
|
||||
if (entrypoints.global.document) {
|
||||
const key = (0, _entrykey.getEntryKey)('pages', 'server', '_document');
|
||||
const writtenEndpoint = await entrypoints.global.document.writeToDisk();
|
||||
documentOrAppChanged ||= (hooks == null ? void 0 : hooks.handleWrittenEndpoint(key, writtenEndpoint, false)) ?? false;
|
||||
(0, _utils.processIssues)(currentEntryIssues, key, writtenEndpoint, false, logErrors);
|
||||
}
|
||||
await manifestLoader.loadPagesManifest('_document');
|
||||
const writtenEndpoint = await route.htmlEndpoint.writeToDisk();
|
||||
hooks == null ? void 0 : hooks.handleWrittenEndpoint(serverKey, writtenEndpoint, documentOrAppChanged);
|
||||
const type = writtenEndpoint == null ? void 0 : writtenEndpoint.type;
|
||||
await manifestLoader.loadBuildManifest(page);
|
||||
await manifestLoader.loadPagesManifest(page);
|
||||
if (type === 'edge') {
|
||||
await manifestLoader.loadMiddlewareManifest(page, 'pages');
|
||||
} else {
|
||||
manifestLoader.deleteMiddlewareManifest(serverKey);
|
||||
}
|
||||
await manifestLoader.loadFontManifest('/_app', 'pages');
|
||||
await manifestLoader.loadFontManifest(page, 'pages');
|
||||
if (shouldCreateWebpackStats) {
|
||||
await manifestLoader.loadWebpackStats(page, 'pages');
|
||||
}
|
||||
await manifestLoader.writeManifests({
|
||||
devRewrites,
|
||||
productionRewrites,
|
||||
entrypoints
|
||||
});
|
||||
(0, _utils.processIssues)(currentEntryIssues, serverKey, writtenEndpoint, false, logErrors);
|
||||
} finally{
|
||||
if (dev) {
|
||||
// TODO subscriptions should only be caused by the WebSocket connections
|
||||
// otherwise we don't known when to unsubscribe and this leaking
|
||||
hooks == null ? void 0 : hooks.subscribeToChanges(serverKey, false, route.dataEndpoint, ()=>{
|
||||
// Report the next compilation again
|
||||
readyIds == null ? void 0 : readyIds.delete(pathname);
|
||||
return {
|
||||
event: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.SERVER_ONLY_CHANGES,
|
||||
pages: [
|
||||
page
|
||||
]
|
||||
};
|
||||
}, (e)=>{
|
||||
return {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
|
||||
data: `error in ${page} data subscription: ${e}`
|
||||
};
|
||||
});
|
||||
hooks == null ? void 0 : hooks.subscribeToChanges(clientKey, false, route.htmlEndpoint, ()=>{
|
||||
return {
|
||||
event: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.CLIENT_CHANGES
|
||||
};
|
||||
}, (e)=>{
|
||||
return {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
|
||||
data: `error in ${page} html subscription: ${e}`
|
||||
};
|
||||
});
|
||||
if (entrypoints.global.document) {
|
||||
hooks == null ? void 0 : hooks.subscribeToChanges((0, _entrykey.getEntryKey)('pages', 'server', '_document'), false, entrypoints.global.document, ()=>{
|
||||
return {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
|
||||
data: '_document has changed (page route)'
|
||||
};
|
||||
}, (e)=>{
|
||||
return {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
|
||||
data: `error in _document subscription (page route): ${e}`
|
||||
};
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
case 'page-api':
|
||||
{
|
||||
const key = (0, _entrykey.getEntryKey)('pages', 'server', page);
|
||||
const writtenEndpoint = await route.endpoint.writeToDisk();
|
||||
hooks == null ? void 0 : hooks.handleWrittenEndpoint(key, writtenEndpoint, false);
|
||||
const type = writtenEndpoint.type;
|
||||
await manifestLoader.loadPagesManifest(page);
|
||||
if (type === 'edge') {
|
||||
await manifestLoader.loadMiddlewareManifest(page, 'pages');
|
||||
} else {
|
||||
manifestLoader.deleteMiddlewareManifest(key);
|
||||
}
|
||||
await manifestLoader.writeManifests({
|
||||
devRewrites,
|
||||
productionRewrites,
|
||||
entrypoints
|
||||
});
|
||||
(0, _utils.processIssues)(currentEntryIssues, key, writtenEndpoint, true, logErrors);
|
||||
break;
|
||||
}
|
||||
case 'app-page':
|
||||
{
|
||||
const key = (0, _entrykey.getEntryKey)('app', 'server', page);
|
||||
const writtenEndpoint = await route.htmlEndpoint.writeToDisk();
|
||||
hooks == null ? void 0 : hooks.handleWrittenEndpoint(key, writtenEndpoint, false);
|
||||
if (dev) {
|
||||
// TODO subscriptions should only be caused by the WebSocket connections
|
||||
// otherwise we don't known when to unsubscribe and this leaking
|
||||
hooks == null ? void 0 : hooks.subscribeToChanges(key, true, route.rscEndpoint, (change, hash)=>{
|
||||
if (change.issues.some((issue)=>issue.severity === 'error')) {
|
||||
// Ignore any updates that has errors
|
||||
// There will be another update without errors eventually
|
||||
return;
|
||||
}
|
||||
// Report the next compilation again
|
||||
readyIds == null ? void 0 : readyIds.delete(pathname);
|
||||
return {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.SERVER_COMPONENT_CHANGES,
|
||||
hash
|
||||
};
|
||||
}, (e)=>{
|
||||
return {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
|
||||
data: `error in ${page} app-page subscription: ${e}`
|
||||
};
|
||||
});
|
||||
}
|
||||
const type = writtenEndpoint.type;
|
||||
if (type === 'edge') {
|
||||
await manifestLoader.loadMiddlewareManifest(page, 'app');
|
||||
} else {
|
||||
manifestLoader.deleteMiddlewareManifest(key);
|
||||
}
|
||||
await manifestLoader.loadAppBuildManifest(page);
|
||||
await manifestLoader.loadBuildManifest(page, 'app');
|
||||
await manifestLoader.loadAppPathsManifest(page);
|
||||
await manifestLoader.loadActionManifest(page);
|
||||
await manifestLoader.loadFontManifest(page, 'app');
|
||||
if (shouldCreateWebpackStats) {
|
||||
await manifestLoader.loadWebpackStats(page, 'app');
|
||||
}
|
||||
await manifestLoader.writeManifests({
|
||||
devRewrites,
|
||||
productionRewrites,
|
||||
entrypoints
|
||||
});
|
||||
(0, _utils.processIssues)(currentEntryIssues, key, writtenEndpoint, dev, logErrors);
|
||||
break;
|
||||
}
|
||||
case 'app-route':
|
||||
{
|
||||
const key = (0, _entrykey.getEntryKey)('app', 'server', page);
|
||||
const writtenEndpoint = await route.endpoint.writeToDisk();
|
||||
hooks == null ? void 0 : hooks.handleWrittenEndpoint(key, writtenEndpoint, false);
|
||||
const type = writtenEndpoint.type;
|
||||
await manifestLoader.loadAppPathsManifest(page);
|
||||
if (type === 'edge') {
|
||||
await manifestLoader.loadMiddlewareManifest(page, 'app');
|
||||
} else {
|
||||
manifestLoader.deleteMiddlewareManifest(key);
|
||||
}
|
||||
await manifestLoader.writeManifests({
|
||||
devRewrites,
|
||||
productionRewrites,
|
||||
entrypoints
|
||||
});
|
||||
(0, _utils.processIssues)(currentEntryIssues, key, writtenEndpoint, true, logErrors);
|
||||
break;
|
||||
}
|
||||
default:
|
||||
{
|
||||
throw Object.defineProperty(new Error(`unknown route type ${route.type} for ${page}`), "__NEXT_ERROR_CODE", {
|
||||
value: "E316",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
class AssetMapper {
|
||||
/**
|
||||
* Overrides asset paths for a key and updates the mapping from path to key.
|
||||
*
|
||||
* @param key
|
||||
* @param assetPaths asset paths relative to the .next directory
|
||||
*/ setPathsForKey(key, assetPaths) {
|
||||
this.delete(key);
|
||||
const newAssetPaths = new Set(assetPaths);
|
||||
this.entryMap.set(key, newAssetPaths);
|
||||
for (const assetPath of newAssetPaths){
|
||||
let assetPathKeys = this.assetMap.get(assetPath);
|
||||
if (!assetPathKeys) {
|
||||
assetPathKeys = new Set();
|
||||
this.assetMap.set(assetPath, assetPathKeys);
|
||||
}
|
||||
assetPathKeys.add(key);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Deletes the key and any asset only referenced by this key.
|
||||
*
|
||||
* @param key
|
||||
*/ delete(key) {
|
||||
for (const assetPath of this.getAssetPathsByKey(key)){
|
||||
const assetPathKeys = this.assetMap.get(assetPath);
|
||||
assetPathKeys == null ? void 0 : assetPathKeys.delete(key);
|
||||
if (!(assetPathKeys == null ? void 0 : assetPathKeys.size)) {
|
||||
this.assetMap.delete(assetPath);
|
||||
}
|
||||
}
|
||||
this.entryMap.delete(key);
|
||||
}
|
||||
getAssetPathsByKey(key) {
|
||||
return Array.from(this.entryMap.get(key) ?? []);
|
||||
}
|
||||
getKeysByAsset(path) {
|
||||
return Array.from(this.assetMap.get(path) ?? []);
|
||||
}
|
||||
keys() {
|
||||
return this.entryMap.keys();
|
||||
}
|
||||
constructor(){
|
||||
this.entryMap = new Map();
|
||||
this.assetMap = new Map();
|
||||
}
|
||||
}
|
||||
function hasEntrypointForKey(entrypoints, key, assetMapper) {
|
||||
const { type, page } = (0, _entrykey.splitEntryKey)(key);
|
||||
switch(type){
|
||||
case 'app':
|
||||
return entrypoints.app.has(page);
|
||||
case 'pages':
|
||||
switch(page){
|
||||
case '_app':
|
||||
return entrypoints.global.app != null;
|
||||
case '_document':
|
||||
return entrypoints.global.document != null;
|
||||
case '_error':
|
||||
return entrypoints.global.error != null;
|
||||
default:
|
||||
return entrypoints.page.has(page);
|
||||
}
|
||||
case 'root':
|
||||
switch(page){
|
||||
case 'middleware':
|
||||
return entrypoints.global.middleware != null;
|
||||
case 'instrumentation':
|
||||
return entrypoints.global.instrumentation != null;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
case 'assets':
|
||||
if (!assetMapper) {
|
||||
return false;
|
||||
}
|
||||
return assetMapper.getKeysByAsset(page).some((pageKey)=>hasEntrypointForKey(entrypoints, pageKey, assetMapper));
|
||||
default:
|
||||
{
|
||||
// validation that we covered all cases, this should never run.
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
const _ = type;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
async function handleEntrypoints({ entrypoints, currentEntrypoints, currentEntryIssues, manifestLoader, devRewrites, logErrors, dev }) {
|
||||
currentEntrypoints.global.app = entrypoints.pagesAppEndpoint;
|
||||
currentEntrypoints.global.document = entrypoints.pagesDocumentEndpoint;
|
||||
currentEntrypoints.global.error = entrypoints.pagesErrorEndpoint;
|
||||
currentEntrypoints.global.instrumentation = entrypoints.instrumentation;
|
||||
currentEntrypoints.page.clear();
|
||||
currentEntrypoints.app.clear();
|
||||
for (const [pathname, route] of entrypoints.routes){
|
||||
switch(route.type){
|
||||
case 'page':
|
||||
case 'page-api':
|
||||
currentEntrypoints.page.set(pathname, route);
|
||||
break;
|
||||
case 'app-page':
|
||||
{
|
||||
route.pages.forEach((page)=>{
|
||||
currentEntrypoints.app.set(page.originalName, {
|
||||
type: 'app-page',
|
||||
...page
|
||||
});
|
||||
});
|
||||
break;
|
||||
}
|
||||
case 'app-route':
|
||||
{
|
||||
currentEntrypoints.app.set(route.originalName, route);
|
||||
break;
|
||||
}
|
||||
default:
|
||||
_log.info(`skipping ${pathname} (${route.type})`);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (dev) {
|
||||
await handleEntrypointsDevCleanup({
|
||||
currentEntryIssues,
|
||||
currentEntrypoints,
|
||||
...dev
|
||||
});
|
||||
}
|
||||
const { middleware, instrumentation } = entrypoints;
|
||||
// We check for explicit true/false, since it's initialized to
|
||||
// undefined during the first loop (middlewareChanges event is
|
||||
// unnecessary during the first serve)
|
||||
if (currentEntrypoints.global.middleware && !middleware) {
|
||||
const key = (0, _entrykey.getEntryKey)('root', 'server', 'middleware');
|
||||
// Went from middleware to no middleware
|
||||
await (dev == null ? void 0 : dev.hooks.unsubscribeFromChanges(key));
|
||||
currentEntryIssues.delete(key);
|
||||
dev.hooks.sendHmr('middleware', {
|
||||
event: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.MIDDLEWARE_CHANGES
|
||||
});
|
||||
} else if (!currentEntrypoints.global.middleware && middleware) {
|
||||
// Went from no middleware to middleware
|
||||
dev.hooks.sendHmr('middleware', {
|
||||
event: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.MIDDLEWARE_CHANGES
|
||||
});
|
||||
}
|
||||
currentEntrypoints.global.middleware = middleware;
|
||||
if (instrumentation) {
|
||||
const processInstrumentation = async (name, prop)=>{
|
||||
const prettyName = {
|
||||
nodeJs: 'Node.js',
|
||||
edge: 'Edge'
|
||||
};
|
||||
const finishBuilding = dev.hooks.startBuilding(`instrumentation ${prettyName[prop]}`, undefined, true);
|
||||
const key = (0, _entrykey.getEntryKey)('root', 'server', name);
|
||||
const writtenEndpoint = await instrumentation[prop].writeToDisk();
|
||||
dev.hooks.handleWrittenEndpoint(key, writtenEndpoint, false);
|
||||
(0, _utils.processIssues)(currentEntryIssues, key, writtenEndpoint, false, logErrors);
|
||||
finishBuilding();
|
||||
};
|
||||
await processInstrumentation('instrumentation.nodeJs', 'nodeJs');
|
||||
await processInstrumentation('instrumentation.edge', 'edge');
|
||||
await manifestLoader.loadMiddlewareManifest('instrumentation', 'instrumentation');
|
||||
await manifestLoader.writeManifests({
|
||||
devRewrites,
|
||||
productionRewrites: undefined,
|
||||
entrypoints: currentEntrypoints
|
||||
});
|
||||
dev.serverFields.actualInstrumentationHookFile = '/instrumentation';
|
||||
await dev.hooks.propagateServerField('actualInstrumentationHookFile', dev.serverFields.actualInstrumentationHookFile);
|
||||
} else {
|
||||
dev.serverFields.actualInstrumentationHookFile = undefined;
|
||||
await dev.hooks.propagateServerField('actualInstrumentationHookFile', dev.serverFields.actualInstrumentationHookFile);
|
||||
}
|
||||
if (middleware) {
|
||||
const key = (0, _entrykey.getEntryKey)('root', 'server', 'middleware');
|
||||
const endpoint = middleware.endpoint;
|
||||
async function processMiddleware() {
|
||||
var _manifestLoader_getMiddlewareManifest;
|
||||
const finishBuilding = dev.hooks.startBuilding('middleware', undefined, true);
|
||||
const writtenEndpoint = await endpoint.writeToDisk();
|
||||
dev.hooks.handleWrittenEndpoint(key, writtenEndpoint, false);
|
||||
(0, _utils.processIssues)(currentEntryIssues, key, writtenEndpoint, false, logErrors);
|
||||
await manifestLoader.loadMiddlewareManifest('middleware', 'middleware');
|
||||
const middlewareConfig = (_manifestLoader_getMiddlewareManifest = manifestLoader.getMiddlewareManifest(key)) == null ? void 0 : _manifestLoader_getMiddlewareManifest.middleware['/'];
|
||||
if (dev && middlewareConfig) {
|
||||
dev.serverFields.middleware = {
|
||||
match: null,
|
||||
page: '/',
|
||||
matchers: middlewareConfig.matchers
|
||||
};
|
||||
}
|
||||
finishBuilding();
|
||||
}
|
||||
await processMiddleware();
|
||||
if (dev) {
|
||||
dev == null ? void 0 : dev.hooks.subscribeToChanges(key, false, endpoint, async ()=>{
|
||||
const finishBuilding = dev.hooks.startBuilding('middleware', undefined, true);
|
||||
await processMiddleware();
|
||||
await dev.hooks.propagateServerField('actualMiddlewareFile', dev.serverFields.actualMiddlewareFile);
|
||||
await dev.hooks.propagateServerField('middleware', dev.serverFields.middleware);
|
||||
await manifestLoader.writeManifests({
|
||||
devRewrites,
|
||||
productionRewrites: undefined,
|
||||
entrypoints: currentEntrypoints
|
||||
});
|
||||
finishBuilding == null ? void 0 : finishBuilding();
|
||||
return {
|
||||
event: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.MIDDLEWARE_CHANGES
|
||||
};
|
||||
}, ()=>{
|
||||
return {
|
||||
event: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.MIDDLEWARE_CHANGES
|
||||
};
|
||||
});
|
||||
}
|
||||
} else {
|
||||
manifestLoader.deleteMiddlewareManifest((0, _entrykey.getEntryKey)('root', 'server', 'middleware'));
|
||||
dev.serverFields.actualMiddlewareFile = undefined;
|
||||
dev.serverFields.middleware = undefined;
|
||||
}
|
||||
await dev.hooks.propagateServerField('actualMiddlewareFile', dev.serverFields.actualMiddlewareFile);
|
||||
await dev.hooks.propagateServerField('middleware', dev.serverFields.middleware);
|
||||
}
|
||||
async function handleEntrypointsDevCleanup({ currentEntryIssues, currentEntrypoints, assetMapper, changeSubscriptions, clients, clientStates, hooks }) {
|
||||
// this needs to be first as `hasEntrypointForKey` uses the `assetMapper`
|
||||
for (const key of assetMapper.keys()){
|
||||
if (!hasEntrypointForKey(currentEntrypoints, key, assetMapper)) {
|
||||
assetMapper.delete(key);
|
||||
}
|
||||
}
|
||||
for (const key of changeSubscriptions.keys()){
|
||||
// middleware is handled separately
|
||||
if (!hasEntrypointForKey(currentEntrypoints, key, assetMapper)) {
|
||||
await hooks.unsubscribeFromChanges(key);
|
||||
}
|
||||
}
|
||||
for (const [key] of currentEntryIssues){
|
||||
if (!hasEntrypointForKey(currentEntrypoints, key, assetMapper)) {
|
||||
currentEntryIssues.delete(key);
|
||||
}
|
||||
}
|
||||
for (const client of clients){
|
||||
const state = clientStates.get(client);
|
||||
if (!state) {
|
||||
continue;
|
||||
}
|
||||
for (const key of state.clientIssues.keys()){
|
||||
if (!hasEntrypointForKey(currentEntrypoints, key, assetMapper)) {
|
||||
state.clientIssues.delete(key);
|
||||
}
|
||||
}
|
||||
for (const id of state.subscriptions.keys()){
|
||||
if (!hasEntrypointForKey(currentEntrypoints, (0, _entrykey.getEntryKey)('assets', 'client', id), assetMapper)) {
|
||||
hooks.unsubscribeFromHmrEvents(client, id);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
async function handlePagesErrorRoute({ currentEntryIssues, entrypoints, manifestLoader, devRewrites, productionRewrites, logErrors, hooks }) {
|
||||
if (entrypoints.global.app) {
|
||||
const key = (0, _entrykey.getEntryKey)('pages', 'server', '_app');
|
||||
const writtenEndpoint = await entrypoints.global.app.writeToDisk();
|
||||
hooks.handleWrittenEndpoint(key, writtenEndpoint, false);
|
||||
hooks.subscribeToChanges(key, false, entrypoints.global.app, ()=>{
|
||||
// There's a special case for this in `../client/page-bootstrap.ts`.
|
||||
// https://github.com/vercel/next.js/blob/08d7a7e5189a835f5dcb82af026174e587575c0e/packages/next/src/client/page-bootstrap.ts#L69-L71
|
||||
return {
|
||||
event: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.CLIENT_CHANGES
|
||||
};
|
||||
}, ()=>{
|
||||
return {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
|
||||
data: '_app has changed (error route)'
|
||||
};
|
||||
});
|
||||
(0, _utils.processIssues)(currentEntryIssues, key, writtenEndpoint, false, logErrors);
|
||||
}
|
||||
await manifestLoader.loadBuildManifest('_app');
|
||||
await manifestLoader.loadPagesManifest('_app');
|
||||
await manifestLoader.loadFontManifest('_app');
|
||||
if (entrypoints.global.document) {
|
||||
const key = (0, _entrykey.getEntryKey)('pages', 'server', '_document');
|
||||
const writtenEndpoint = await entrypoints.global.document.writeToDisk();
|
||||
hooks.handleWrittenEndpoint(key, writtenEndpoint, false);
|
||||
hooks.subscribeToChanges(key, false, entrypoints.global.document, ()=>{
|
||||
return {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
|
||||
data: '_document has changed (error route)'
|
||||
};
|
||||
}, (e)=>{
|
||||
return {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
|
||||
data: `error in _document subscription (error route): ${e}`
|
||||
};
|
||||
});
|
||||
(0, _utils.processIssues)(currentEntryIssues, key, writtenEndpoint, false, logErrors);
|
||||
}
|
||||
await manifestLoader.loadPagesManifest('_document');
|
||||
if (entrypoints.global.error) {
|
||||
const key = (0, _entrykey.getEntryKey)('pages', 'server', '_error');
|
||||
const writtenEndpoint = await entrypoints.global.error.writeToDisk();
|
||||
hooks.handleWrittenEndpoint(key, writtenEndpoint, false);
|
||||
hooks.subscribeToChanges(key, false, entrypoints.global.error, ()=>{
|
||||
// There's a special case for this in `../client/page-bootstrap.ts`.
|
||||
// https://github.com/vercel/next.js/blob/08d7a7e5189a835f5dcb82af026174e587575c0e/packages/next/src/client/page-bootstrap.ts#L69-L71
|
||||
return {
|
||||
event: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.CLIENT_CHANGES
|
||||
};
|
||||
}, (e)=>{
|
||||
return {
|
||||
action: _hotreloadertypes.HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
|
||||
data: `error in _error subscription: ${e}`
|
||||
};
|
||||
});
|
||||
(0, _utils.processIssues)(currentEntryIssues, key, writtenEndpoint, false, logErrors);
|
||||
}
|
||||
await manifestLoader.loadBuildManifest('_error');
|
||||
await manifestLoader.loadPagesManifest('_error');
|
||||
await manifestLoader.loadFontManifest('_error');
|
||||
await manifestLoader.writeManifests({
|
||||
devRewrites,
|
||||
productionRewrites,
|
||||
entrypoints
|
||||
});
|
||||
}
|
||||
function removeRouteSuffix(route) {
|
||||
return route.replace(/\/route$/, '');
|
||||
}
|
||||
function addRouteSuffix(route) {
|
||||
return route + '/route';
|
||||
}
|
||||
function addMetadataIdToRoute(route) {
|
||||
return route + '/[__metadata_id__]';
|
||||
}
|
||||
function normalizedPageToTurbopackStructureRoute(route, ext) {
|
||||
let entrypointKey = route;
|
||||
if ((0, _ismetadataroute.isMetadataRoute)(entrypointKey)) {
|
||||
entrypointKey = entrypointKey.endsWith('/route') ? entrypointKey.slice(0, -'/route'.length) : entrypointKey;
|
||||
if (ext) {
|
||||
if (entrypointKey.endsWith('/[__metadata_id__]')) {
|
||||
entrypointKey = entrypointKey.slice(0, -'/[__metadata_id__]'.length);
|
||||
}
|
||||
if (entrypointKey.endsWith('/sitemap.xml') && ext !== '.xml') {
|
||||
// For dynamic sitemap route, remove the extension
|
||||
entrypointKey = entrypointKey.slice(0, -'.xml'.length);
|
||||
}
|
||||
}
|
||||
entrypointKey = entrypointKey + '/route';
|
||||
}
|
||||
return entrypointKey;
|
||||
}
|
||||
|
||||
//# sourceMappingURL=turbopack-utils.js.map
|
||||
1
frontend/webapp/node_modules/next/dist/server/dev/turbopack-utils.js.map
generated
vendored
Normal file
1
frontend/webapp/node_modules/next/dist/server/dev/turbopack-utils.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user