.
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
import type { ReactNode } from 'react';
|
||||
import type { HmrMessageSentToBrowser, TurbopackMessageSentToBrowser } from '../../../../server/dev/hot-reloader-types';
|
||||
import { type GlobalErrorState } from '../../../components/app-router-instance';
|
||||
export interface StaticIndicatorState {
|
||||
pathname: string | null;
|
||||
appIsrManifest: Record<string, boolean> | null;
|
||||
}
|
||||
export declare function waitForWebpackRuntimeHotUpdate(): Promise<void>;
|
||||
export declare function performFullReload(err: any, sendMessage: (data: string) => void): void;
|
||||
/** Handles messages from the server for the App Router. */
|
||||
export declare function processMessage(message: HmrMessageSentToBrowser, sendMessage: (message: string) => void, processTurbopackMessage: (msg: TurbopackMessageSentToBrowser) => void, staticIndicatorState: StaticIndicatorState): void;
|
||||
export default function HotReload({ children, globalError, webSocket, staticIndicatorState, }: {
|
||||
children: ReactNode;
|
||||
globalError: GlobalErrorState;
|
||||
webSocket: WebSocket | undefined;
|
||||
staticIndicatorState: StaticIndicatorState | undefined;
|
||||
}): import("react/jsx-runtime").JSX.Element;
|
||||
+517
@@ -0,0 +1,517 @@
|
||||
/// <reference types="webpack/module.d.ts" />
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
0 && (module.exports = {
|
||||
default: null,
|
||||
performFullReload: null,
|
||||
processMessage: null,
|
||||
waitForWebpackRuntimeHotUpdate: null
|
||||
});
|
||||
function _export(target, all) {
|
||||
for(var name in all)Object.defineProperty(target, name, {
|
||||
enumerable: true,
|
||||
get: all[name]
|
||||
});
|
||||
}
|
||||
_export(exports, {
|
||||
default: function() {
|
||||
return HotReload;
|
||||
},
|
||||
performFullReload: function() {
|
||||
return performFullReload;
|
||||
},
|
||||
processMessage: function() {
|
||||
return processMessage;
|
||||
},
|
||||
waitForWebpackRuntimeHotUpdate: function() {
|
||||
return waitForWebpackRuntimeHotUpdate;
|
||||
}
|
||||
});
|
||||
const _interop_require_default = require("@swc/helpers/_/_interop_require_default");
|
||||
const _jsxruntime = require("react/jsx-runtime");
|
||||
const _react = require("react");
|
||||
const _stripansi = /*#__PURE__*/ _interop_require_default._(require("next/dist/compiled/strip-ansi"));
|
||||
const _formatwebpackmessages = /*#__PURE__*/ _interop_require_default._(require("../../../../shared/lib/format-webpack-messages"));
|
||||
const _shared = require("../shared");
|
||||
const _nextdevtools = require("next/dist/compiled/next-devtools");
|
||||
const _replayssronlyerrors = require("../../../../next-devtools/userspace/app/errors/replay-ssr-only-errors");
|
||||
const _appdevoverlayerrorboundary = require("../../../../next-devtools/userspace/app/app-dev-overlay-error-boundary");
|
||||
const _useerrorhandler = require("../../../../next-devtools/userspace/app/errors/use-error-handler");
|
||||
const _runtimeerrorhandler = require("../../runtime-error-handler");
|
||||
const _websocket = require("./web-socket");
|
||||
const _hotreloadertypes = require("../../../../server/dev/hot-reloader-types");
|
||||
const _navigationuntracked = require("../../../components/navigation-untracked");
|
||||
const _reporthmrlatency = /*#__PURE__*/ _interop_require_default._(require("../../report-hmr-latency"));
|
||||
const _turbopackhotreloadercommon = require("../turbopack-hot-reloader-common");
|
||||
const _approuterheaders = require("../../../components/app-router-headers");
|
||||
const _approuterinstance = require("../../../components/app-router-instance");
|
||||
const _invarianterror = require("../../../../shared/lib/invariant-error");
|
||||
const _debugchannel = require("../../debug-channel");
|
||||
const _client = require("react-server-dom-webpack/client");
|
||||
const _appfindsourcemapurl = require("../../../app-find-source-map-url");
|
||||
const createFromReadableStream = _client.createFromReadableStream;
|
||||
let mostRecentCompilationHash = null;
|
||||
let __nextDevClientId = Math.round(Math.random() * 100 + Date.now());
|
||||
let reloading = false;
|
||||
let webpackStartMsSinceEpoch = null;
|
||||
const turbopackHmr = process.env.TURBOPACK ? new _turbopackhotreloadercommon.TurbopackHmr() : null;
|
||||
let pendingHotUpdateWebpack = Promise.resolve();
|
||||
let resolvePendingHotUpdateWebpack = ()=>{};
|
||||
function setPendingHotUpdateWebpack() {
|
||||
pendingHotUpdateWebpack = new Promise((resolve)=>{
|
||||
resolvePendingHotUpdateWebpack = ()=>{
|
||||
resolve();
|
||||
};
|
||||
});
|
||||
}
|
||||
function waitForWebpackRuntimeHotUpdate() {
|
||||
return pendingHotUpdateWebpack;
|
||||
}
|
||||
// There is a newer version of the code available.
|
||||
function handleAvailableHash(hash) {
|
||||
// Update last known compilation hash.
|
||||
mostRecentCompilationHash = hash;
|
||||
}
|
||||
/**
|
||||
* Is there a newer version of this code available?
|
||||
* For webpack: Check if the hash changed compared to __webpack_hash__
|
||||
* For Turbopack: Always true because it doesn't have __webpack_hash__
|
||||
*/ function isUpdateAvailable() {
|
||||
if (process.env.TURBOPACK) {
|
||||
return true;
|
||||
}
|
||||
/* globals __webpack_hash__ */ // __webpack_hash__ is the hash of the current compilation.
|
||||
// It's a global variable injected by Webpack.
|
||||
return mostRecentCompilationHash !== __webpack_hash__;
|
||||
}
|
||||
// Webpack disallows updates in other states.
|
||||
function canApplyUpdates() {
|
||||
return module.hot.status() === 'idle';
|
||||
}
|
||||
function afterApplyUpdates(fn) {
|
||||
if (canApplyUpdates()) {
|
||||
fn();
|
||||
} else {
|
||||
function handler(status) {
|
||||
if (status === 'idle') {
|
||||
module.hot.removeStatusHandler(handler);
|
||||
fn();
|
||||
}
|
||||
}
|
||||
module.hot.addStatusHandler(handler);
|
||||
}
|
||||
}
|
||||
function performFullReload(err, sendMessage) {
|
||||
const stackTrace = err && (err.stack && err.stack.split('\n').slice(0, 5).join('\n') || err.message || err + '');
|
||||
sendMessage(JSON.stringify({
|
||||
event: 'client-full-reload',
|
||||
stackTrace,
|
||||
hadRuntimeError: !!_runtimeerrorhandler.RuntimeErrorHandler.hadRuntimeError,
|
||||
dependencyChain: err ? err.dependencyChain : undefined
|
||||
}));
|
||||
if (reloading) return;
|
||||
reloading = true;
|
||||
window.location.reload();
|
||||
}
|
||||
// Attempt to update code on the fly, fall back to a hard reload.
|
||||
function tryApplyUpdatesWebpack(sendMessage) {
|
||||
if (!isUpdateAvailable() || !canApplyUpdates()) {
|
||||
resolvePendingHotUpdateWebpack();
|
||||
_nextdevtools.dispatcher.onBuildOk();
|
||||
(0, _reporthmrlatency.default)(sendMessage, [], webpackStartMsSinceEpoch, Date.now());
|
||||
return;
|
||||
}
|
||||
function handleApplyUpdates(err, updatedModules) {
|
||||
if (err || _runtimeerrorhandler.RuntimeErrorHandler.hadRuntimeError || updatedModules == null) {
|
||||
if (err) {
|
||||
console.warn(_shared.REACT_REFRESH_FULL_RELOAD);
|
||||
} else if (_runtimeerrorhandler.RuntimeErrorHandler.hadRuntimeError) {
|
||||
console.warn(_shared.REACT_REFRESH_FULL_RELOAD_FROM_ERROR);
|
||||
}
|
||||
performFullReload(err, sendMessage);
|
||||
return;
|
||||
}
|
||||
_nextdevtools.dispatcher.onBuildOk();
|
||||
if (isUpdateAvailable()) {
|
||||
// While we were updating, there was a new update! Do it again.
|
||||
tryApplyUpdatesWebpack(sendMessage);
|
||||
return;
|
||||
}
|
||||
_nextdevtools.dispatcher.onRefresh();
|
||||
resolvePendingHotUpdateWebpack();
|
||||
(0, _reporthmrlatency.default)(sendMessage, updatedModules, webpackStartMsSinceEpoch, Date.now());
|
||||
if (process.env.__NEXT_TEST_MODE) {
|
||||
afterApplyUpdates(()=>{
|
||||
if (self.__NEXT_HMR_CB) {
|
||||
self.__NEXT_HMR_CB();
|
||||
self.__NEXT_HMR_CB = null;
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
// https://webpack.js.org/api/hot-module-replacement/#check
|
||||
module.hot.check(/* autoApply */ false).then((updatedModules)=>{
|
||||
if (updatedModules == null) {
|
||||
return null;
|
||||
}
|
||||
// We should always handle an update, even if updatedModules is empty (but
|
||||
// non-null) for any reason. That's what webpack would normally do:
|
||||
// https://github.com/webpack/webpack/blob/3aa6b6bc3a64/lib/hmr/HotModuleReplacement.runtime.js#L296-L298
|
||||
_nextdevtools.dispatcher.onBeforeRefresh();
|
||||
// https://webpack.js.org/api/hot-module-replacement/#apply
|
||||
return module.hot.apply();
|
||||
}).then((updatedModules)=>{
|
||||
handleApplyUpdates(null, updatedModules);
|
||||
}, (err)=>{
|
||||
handleApplyUpdates(err, null);
|
||||
});
|
||||
}
|
||||
function processMessage(message, sendMessage, processTurbopackMessage, staticIndicatorState) {
|
||||
function handleErrors(errors) {
|
||||
// "Massage" webpack messages.
|
||||
const formatted = (0, _formatwebpackmessages.default)({
|
||||
errors: errors,
|
||||
warnings: []
|
||||
});
|
||||
// Only show the first error.
|
||||
_nextdevtools.dispatcher.onBuildError(formatted.errors[0]);
|
||||
// Also log them to the console.
|
||||
for(let i = 0; i < formatted.errors.length; i++){
|
||||
console.error((0, _stripansi.default)(formatted.errors[i]));
|
||||
}
|
||||
// Do not attempt to reload now.
|
||||
// We will reload on next success instead.
|
||||
if (process.env.__NEXT_TEST_MODE) {
|
||||
if (self.__NEXT_HMR_CB) {
|
||||
self.__NEXT_HMR_CB(formatted.errors[0]);
|
||||
self.__NEXT_HMR_CB = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
function handleHotUpdate() {
|
||||
if (process.env.TURBOPACK) {
|
||||
const hmrUpdate = turbopackHmr.onBuilt();
|
||||
if (hmrUpdate != null) {
|
||||
(0, _reporthmrlatency.default)(sendMessage, [
|
||||
...hmrUpdate.updatedModules
|
||||
], hmrUpdate.startMsSinceEpoch, hmrUpdate.endMsSinceEpoch, // suppress the `client-hmr-latency` event if the update was a no-op:
|
||||
hmrUpdate.hasUpdates);
|
||||
}
|
||||
_nextdevtools.dispatcher.onBuildOk();
|
||||
} else {
|
||||
tryApplyUpdatesWebpack(sendMessage);
|
||||
}
|
||||
}
|
||||
switch(message.type){
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.ISR_MANIFEST:
|
||||
{
|
||||
if (process.env.__NEXT_DEV_INDICATOR) {
|
||||
staticIndicatorState.appIsrManifest = message.data;
|
||||
// Handle the initial static indicator status on receiving the ISR
|
||||
// manifest. Navigation is handled in an effect inside HotReload for
|
||||
// pathname changes as we'll receive the updated manifest before
|
||||
// usePathname triggers for a new value.
|
||||
const isStatic = staticIndicatorState.pathname ? message.data[staticIndicatorState.pathname] : undefined;
|
||||
_nextdevtools.dispatcher.onStaticIndicator(isStatic === undefined ? 'pending' : isStatic ? 'static' : 'dynamic');
|
||||
}
|
||||
break;
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.BUILDING:
|
||||
{
|
||||
_nextdevtools.dispatcher.buildingIndicatorShow();
|
||||
if (process.env.TURBOPACK) {
|
||||
turbopackHmr.onBuilding();
|
||||
} else {
|
||||
webpackStartMsSinceEpoch = Date.now();
|
||||
setPendingHotUpdateWebpack();
|
||||
console.log('[Fast Refresh] rebuilding');
|
||||
}
|
||||
break;
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.BUILT:
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.SYNC:
|
||||
{
|
||||
_nextdevtools.dispatcher.buildingIndicatorHide();
|
||||
if (message.hash) {
|
||||
handleAvailableHash(message.hash);
|
||||
}
|
||||
const { errors, warnings } = message;
|
||||
// Is undefined when it's a 'built' event
|
||||
if ('versionInfo' in message) _nextdevtools.dispatcher.onVersionInfo(message.versionInfo);
|
||||
if ('debug' in message && message.debug) _nextdevtools.dispatcher.onDebugInfo(message.debug);
|
||||
if ('devIndicator' in message) _nextdevtools.dispatcher.onDevIndicator(message.devIndicator);
|
||||
if ('devToolsConfig' in message) _nextdevtools.dispatcher.onDevToolsConfig(message.devToolsConfig);
|
||||
const hasErrors = Boolean(errors && errors.length);
|
||||
// Compilation with errors (e.g. syntax error or missing modules).
|
||||
if (hasErrors) {
|
||||
sendMessage(JSON.stringify({
|
||||
event: 'client-error',
|
||||
errorCount: errors.length,
|
||||
clientId: __nextDevClientId
|
||||
}));
|
||||
handleErrors(errors);
|
||||
return;
|
||||
}
|
||||
const hasWarnings = Boolean(warnings && warnings.length);
|
||||
if (hasWarnings) {
|
||||
sendMessage(JSON.stringify({
|
||||
event: 'client-warning',
|
||||
warningCount: warnings.length,
|
||||
clientId: __nextDevClientId
|
||||
}));
|
||||
// Print warnings to the console.
|
||||
const formattedMessages = (0, _formatwebpackmessages.default)({
|
||||
warnings: warnings,
|
||||
errors: []
|
||||
});
|
||||
for(let i = 0; i < formattedMessages.warnings.length; i++){
|
||||
if (i === 5) {
|
||||
console.warn('There were more warnings in other files.\n' + 'You can find a complete log in the terminal.');
|
||||
break;
|
||||
}
|
||||
console.warn((0, _stripansi.default)(formattedMessages.warnings[i]));
|
||||
}
|
||||
// No early return here as we need to apply modules in the same way between warnings only and compiles without warnings
|
||||
}
|
||||
sendMessage(JSON.stringify({
|
||||
event: 'client-success',
|
||||
clientId: __nextDevClientId
|
||||
}));
|
||||
if (message.type === _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.BUILT) {
|
||||
handleHotUpdate();
|
||||
}
|
||||
return;
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_CONNECTED:
|
||||
{
|
||||
processTurbopackMessage({
|
||||
type: _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_CONNECTED,
|
||||
data: {
|
||||
sessionId: message.data.sessionId
|
||||
}
|
||||
});
|
||||
break;
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_MESSAGE:
|
||||
{
|
||||
turbopackHmr.onTurbopackMessage(message);
|
||||
_nextdevtools.dispatcher.onBeforeRefresh();
|
||||
processTurbopackMessage({
|
||||
type: _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_MESSAGE,
|
||||
data: message.data
|
||||
});
|
||||
if (_runtimeerrorhandler.RuntimeErrorHandler.hadRuntimeError) {
|
||||
console.warn(_shared.REACT_REFRESH_FULL_RELOAD_FROM_ERROR);
|
||||
performFullReload(null, sendMessage);
|
||||
}
|
||||
_nextdevtools.dispatcher.onRefresh();
|
||||
break;
|
||||
}
|
||||
// TODO-APP: make server component change more granular
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.SERVER_COMPONENT_CHANGES:
|
||||
{
|
||||
turbopackHmr?.onServerComponentChanges();
|
||||
sendMessage(JSON.stringify({
|
||||
event: 'server-component-reload-page',
|
||||
clientId: __nextDevClientId,
|
||||
hash: message.hash
|
||||
}));
|
||||
// Store the latest hash in a session cookie so that it's sent back to the
|
||||
// server with any subsequent requests.
|
||||
document.cookie = `${_approuterheaders.NEXT_HMR_REFRESH_HASH_COOKIE}=${message.hash};path=/`;
|
||||
if (_runtimeerrorhandler.RuntimeErrorHandler.hadRuntimeError || document.documentElement.id === '__next_error__') {
|
||||
if (reloading) return;
|
||||
reloading = true;
|
||||
return window.location.reload();
|
||||
}
|
||||
(0, _react.startTransition)(()=>{
|
||||
_approuterinstance.publicAppRouterInstance.hmrRefresh();
|
||||
_nextdevtools.dispatcher.onRefresh();
|
||||
});
|
||||
if (process.env.__NEXT_TEST_MODE) {
|
||||
if (self.__NEXT_HMR_CB) {
|
||||
self.__NEXT_HMR_CB();
|
||||
self.__NEXT_HMR_CB = null;
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE:
|
||||
{
|
||||
turbopackHmr?.onReloadPage();
|
||||
sendMessage(JSON.stringify({
|
||||
event: 'client-reload-page',
|
||||
clientId: __nextDevClientId
|
||||
}));
|
||||
if (reloading) return;
|
||||
reloading = true;
|
||||
return window.location.reload();
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.ADDED_PAGE:
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.REMOVED_PAGE:
|
||||
{
|
||||
turbopackHmr?.onPageAddRemove();
|
||||
// TODO-APP: potentially only refresh if the currently viewed page was added/removed.
|
||||
return _approuterinstance.publicAppRouterInstance.hmrRefresh();
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.SERVER_ERROR:
|
||||
{
|
||||
const { errorJSON } = message;
|
||||
if (errorJSON) {
|
||||
const errorObject = JSON.parse(errorJSON);
|
||||
const error = Object.defineProperty(new Error(errorObject.message), "__NEXT_ERROR_CODE", {
|
||||
value: "E394",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
error.stack = errorObject.stack;
|
||||
handleErrors([
|
||||
error
|
||||
]);
|
||||
}
|
||||
return;
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.DEV_PAGES_MANIFEST_UPDATE:
|
||||
{
|
||||
return;
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.DEVTOOLS_CONFIG:
|
||||
{
|
||||
_nextdevtools.dispatcher.onDevToolsConfig(message.data);
|
||||
return;
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.REACT_DEBUG_CHUNK:
|
||||
{
|
||||
const { requestId, chunk } = message;
|
||||
const { writer } = (0, _debugchannel.getOrCreateDebugChannelReadableWriterPair)(requestId);
|
||||
if (chunk) {
|
||||
writer.ready.then(()=>writer.write(chunk)).catch(console.error);
|
||||
} else {
|
||||
// A null chunk signals that no more chunks will be sent, which allows
|
||||
// us to close the writer.
|
||||
// TODO: Revisit this cleanup logic when we integrate the return channel
|
||||
// that keeps the connection open to be able to lazily retrieve debug
|
||||
// objects.
|
||||
writer.ready.then(()=>writer.close()).catch(console.error);
|
||||
}
|
||||
return;
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.REQUEST_CURRENT_ERROR_STATE:
|
||||
{
|
||||
const errorState = (0, _nextdevtools.getSerializedOverlayState)();
|
||||
const response = {
|
||||
event: _hotreloadertypes.HMR_MESSAGE_SENT_TO_SERVER.MCP_ERROR_STATE_RESPONSE,
|
||||
requestId: message.requestId,
|
||||
errorState,
|
||||
url: window.location.href
|
||||
};
|
||||
sendMessage(JSON.stringify(response));
|
||||
return;
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.REQUEST_PAGE_METADATA:
|
||||
{
|
||||
const segmentTrieData = (0, _nextdevtools.getSegmentTrieData)();
|
||||
const response = {
|
||||
event: _hotreloadertypes.HMR_MESSAGE_SENT_TO_SERVER.MCP_PAGE_METADATA_RESPONSE,
|
||||
requestId: message.requestId,
|
||||
segmentTrieData,
|
||||
url: window.location.href
|
||||
};
|
||||
sendMessage(JSON.stringify(response));
|
||||
return;
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.CACHE_INDICATOR:
|
||||
{
|
||||
_nextdevtools.dispatcher.onCacheIndicator(message.state);
|
||||
return;
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.ERRORS_TO_SHOW_IN_BROWSER:
|
||||
{
|
||||
createFromReadableStream(new ReadableStream({
|
||||
start (controller) {
|
||||
controller.enqueue(message.serializedErrors);
|
||||
controller.close();
|
||||
}
|
||||
}), {
|
||||
findSourceMapURL: _appfindsourcemapurl.findSourceMapURL
|
||||
}).then(({ errors, errorCodes })=>{
|
||||
for (const error of errors){
|
||||
const code = errorCodes.get(error);
|
||||
if (code !== undefined) {
|
||||
Object.defineProperty(error, '__NEXT_ERROR_CODE', {
|
||||
value: code,
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
console.error(error);
|
||||
}
|
||||
}, (err)=>{
|
||||
console.error(Object.defineProperty(new Error('Failed to deserialize errors.', {
|
||||
cause: err
|
||||
}), "__NEXT_ERROR_CODE", {
|
||||
value: "E946",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
}));
|
||||
});
|
||||
return;
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.MIDDLEWARE_CHANGES:
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.CLIENT_CHANGES:
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.SERVER_ONLY_CHANGES:
|
||||
break;
|
||||
default:
|
||||
{
|
||||
message;
|
||||
}
|
||||
}
|
||||
}
|
||||
function HotReload({ children, globalError, webSocket, staticIndicatorState }) {
|
||||
(0, _useerrorhandler.useErrorHandler)(_nextdevtools.dispatcher.onUnhandledError, _nextdevtools.dispatcher.onUnhandledRejection);
|
||||
(0, _websocket.useWebSocketPing)(webSocket);
|
||||
// We don't want access of the pathname for the dev tools to trigger a dynamic
|
||||
// access (as the dev overlay will never be present in production).
|
||||
const pathname = (0, _navigationuntracked.useUntrackedPathname)();
|
||||
if (process.env.__NEXT_DEV_INDICATOR) {
|
||||
// this conditional is only for dead-code elimination which
|
||||
// isn't a runtime conditional only build-time so ignore hooks rule
|
||||
// eslint-disable-next-line react-hooks/rules-of-hooks
|
||||
(0, _react.useEffect)(()=>{
|
||||
if (!staticIndicatorState) {
|
||||
throw Object.defineProperty(new _invarianterror.InvariantError('Expected staticIndicatorState to be defined in dev mode.'), "__NEXT_ERROR_CODE", {
|
||||
value: "E786",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
staticIndicatorState.pathname = pathname;
|
||||
if (staticIndicatorState.appIsrManifest) {
|
||||
const isStatic = pathname ? staticIndicatorState.appIsrManifest[pathname] : undefined;
|
||||
_nextdevtools.dispatcher.onStaticIndicator(isStatic === undefined ? 'pending' : isStatic ? 'static' : 'dynamic');
|
||||
}
|
||||
}, [
|
||||
pathname,
|
||||
staticIndicatorState
|
||||
]);
|
||||
}
|
||||
return /*#__PURE__*/ (0, _jsxruntime.jsxs)(_appdevoverlayerrorboundary.AppDevOverlayErrorBoundary, {
|
||||
globalError: globalError,
|
||||
children: [
|
||||
/*#__PURE__*/ (0, _jsxruntime.jsx)(_replayssronlyerrors.ReplaySsrOnlyErrors, {
|
||||
onBlockingError: _nextdevtools.dispatcher.openErrorOverlay
|
||||
}),
|
||||
children
|
||||
]
|
||||
});
|
||||
}
|
||||
|
||||
if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') {
|
||||
Object.defineProperty(exports.default, '__esModule', { value: true });
|
||||
Object.assign(exports.default, exports);
|
||||
module.exports = exports.default;
|
||||
}
|
||||
|
||||
//# sourceMappingURL=hot-reloader-app.js.map
|
||||
+1
File diff suppressed because one or more lines are too long
+5
@@ -0,0 +1,5 @@
|
||||
import { type TurbopackMessageSentToBrowser } from '../../../../server/dev/hot-reloader-types';
|
||||
import { type StaticIndicatorState } from './hot-reloader-app';
|
||||
export declare function createWebSocket(assetPrefix: string, staticIndicatorState: StaticIndicatorState): WebSocket;
|
||||
export declare function createProcessTurbopackMessage(sendMessage: (data: string) => void): (msg: TurbopackMessageSentToBrowser) => void;
|
||||
export declare function useWebSocketPing(webSocket: WebSocket | undefined): void;
|
||||
+238
@@ -0,0 +1,238 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
0 && (module.exports = {
|
||||
createProcessTurbopackMessage: null,
|
||||
createWebSocket: null,
|
||||
useWebSocketPing: null
|
||||
});
|
||||
function _export(target, all) {
|
||||
for(var name in all)Object.defineProperty(target, name, {
|
||||
enumerable: true,
|
||||
get: all[name]
|
||||
});
|
||||
}
|
||||
_export(exports, {
|
||||
createProcessTurbopackMessage: function() {
|
||||
return createProcessTurbopackMessage;
|
||||
},
|
||||
createWebSocket: function() {
|
||||
return createWebSocket;
|
||||
},
|
||||
useWebSocketPing: function() {
|
||||
return useWebSocketPing;
|
||||
}
|
||||
});
|
||||
const _react = require("react");
|
||||
const _approutercontextsharedruntime = require("../../../../shared/lib/app-router-context.shared-runtime");
|
||||
const _getsocketurl = require("../get-socket-url");
|
||||
const _hotreloadertypes = require("../../../../server/dev/hot-reloader-types");
|
||||
const _shared = require("../shared");
|
||||
const _hotreloaderapp = require("./hot-reloader-app");
|
||||
const _forwardlogs = require("../../../../next-devtools/userspace/app/forward-logs");
|
||||
const _invarianterror = require("../../../../shared/lib/invariant-error");
|
||||
const _constants = require("../../../../lib/constants");
|
||||
let reconnections = 0;
|
||||
let reloading = false;
|
||||
let serverSessionId = null;
|
||||
let mostRecentCompilationHash = null;
|
||||
function createWebSocket(assetPrefix, staticIndicatorState) {
|
||||
if (!self.__next_r) {
|
||||
throw Object.defineProperty(new _invarianterror.InvariantError(`Expected a request ID to be defined for the document via self.__next_r.`), "__NEXT_ERROR_CODE", {
|
||||
value: "E806",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
let webSocket;
|
||||
let timer;
|
||||
const sendMessage = (data)=>{
|
||||
if (webSocket && webSocket.readyState === webSocket.OPEN) {
|
||||
webSocket.send(data);
|
||||
}
|
||||
};
|
||||
const processTurbopackMessage = createProcessTurbopackMessage(sendMessage);
|
||||
function init() {
|
||||
if (webSocket) {
|
||||
webSocket.close();
|
||||
}
|
||||
const newWebSocket = new window.WebSocket(`${(0, _getsocketurl.getSocketUrl)(assetPrefix)}/_next/webpack-hmr?id=${self.__next_r}`);
|
||||
newWebSocket.binaryType = 'arraybuffer';
|
||||
function handleOnline() {
|
||||
_forwardlogs.logQueue.onSocketReady(newWebSocket);
|
||||
reconnections = 0;
|
||||
window.console.log('[HMR] connected');
|
||||
}
|
||||
function handleMessage(event) {
|
||||
// While the page is reloading, don't respond to any more messages.
|
||||
if (reloading) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
const message = event.data instanceof ArrayBuffer ? parseBinaryMessage(event.data) : JSON.parse(event.data);
|
||||
// Check for server restart in Turbopack mode
|
||||
if (message.type === _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.TURBOPACK_CONNECTED) {
|
||||
if (serverSessionId !== null && serverSessionId !== message.data.sessionId) {
|
||||
// Either the server's session id has changed and it's a new server, or
|
||||
// it's been too long since we disconnected and we should reload the page.
|
||||
window.location.reload();
|
||||
reloading = true;
|
||||
return;
|
||||
}
|
||||
serverSessionId = message.data.sessionId;
|
||||
}
|
||||
// Track webpack compilation hash for server restart detection
|
||||
if (message.type === _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.SYNC && 'hash' in message) {
|
||||
// If we had previously reconnected and the hash changed, the server may have restarted
|
||||
if (mostRecentCompilationHash !== null && mostRecentCompilationHash !== message.hash) {
|
||||
window.location.reload();
|
||||
reloading = true;
|
||||
return;
|
||||
}
|
||||
mostRecentCompilationHash = message.hash;
|
||||
}
|
||||
(0, _hotreloaderapp.processMessage)(message, sendMessage, processTurbopackMessage, staticIndicatorState);
|
||||
} catch (err) {
|
||||
(0, _shared.reportInvalidHmrMessage)(event, err);
|
||||
}
|
||||
}
|
||||
function handleDisconnect() {
|
||||
newWebSocket.onerror = null;
|
||||
newWebSocket.onclose = null;
|
||||
newWebSocket.close();
|
||||
reconnections++;
|
||||
// After 25 reconnects we'll want to reload the page as it indicates the dev server is no longer running.
|
||||
if (reconnections > _constants.WEB_SOCKET_MAX_RECONNECTIONS) {
|
||||
reloading = true;
|
||||
window.location.reload();
|
||||
return;
|
||||
}
|
||||
clearTimeout(timer);
|
||||
// Try again after 5 seconds
|
||||
timer = setTimeout(init, reconnections > 5 ? 5000 : 1000);
|
||||
}
|
||||
newWebSocket.onopen = handleOnline;
|
||||
newWebSocket.onerror = handleDisconnect;
|
||||
newWebSocket.onclose = handleDisconnect;
|
||||
newWebSocket.onmessage = handleMessage;
|
||||
webSocket = newWebSocket;
|
||||
return newWebSocket;
|
||||
}
|
||||
return init();
|
||||
}
|
||||
function createProcessTurbopackMessage(sendMessage) {
|
||||
if (!process.env.TURBOPACK) {
|
||||
return ()=>{};
|
||||
}
|
||||
let queue = [];
|
||||
let callback;
|
||||
const processTurbopackMessage = (msg)=>{
|
||||
if (callback) {
|
||||
callback(msg);
|
||||
} else {
|
||||
queue.push(msg);
|
||||
}
|
||||
};
|
||||
import(// @ts-expect-error requires "moduleResolution": "node16" in tsconfig.json and not .ts extension
|
||||
'@vercel/turbopack-ecmascript-runtime/browser/dev/hmr-client/hmr-client.ts').then(({ connect })=>{
|
||||
connect({
|
||||
addMessageListener (cb) {
|
||||
callback = cb;
|
||||
// Replay all Turbopack messages before we were able to establish the HMR client.
|
||||
for (const msg of queue){
|
||||
cb(msg);
|
||||
}
|
||||
queue.length = 0;
|
||||
},
|
||||
sendMessage,
|
||||
onUpdateError: (err)=>(0, _hotreloaderapp.performFullReload)(err, sendMessage)
|
||||
});
|
||||
});
|
||||
return processTurbopackMessage;
|
||||
}
|
||||
function useWebSocketPing(webSocket) {
|
||||
const { tree } = (0, _react.useContext)(_approutercontextsharedruntime.GlobalLayoutRouterContext);
|
||||
(0, _react.useEffect)(()=>{
|
||||
if (!webSocket) {
|
||||
throw Object.defineProperty(new _invarianterror.InvariantError('Expected webSocket to be defined in dev mode.'), "__NEXT_ERROR_CODE", {
|
||||
value: "E785",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
// Never send pings when using Turbopack as it's not used.
|
||||
// Pings were originally used to keep track of active routes in on-demand-entries with webpack.
|
||||
if (process.env.TURBOPACK) {
|
||||
return;
|
||||
}
|
||||
// Taken from on-demand-entries-client.js
|
||||
const interval = setInterval(()=>{
|
||||
if (webSocket.readyState === webSocket.OPEN) {
|
||||
webSocket.send(JSON.stringify({
|
||||
event: 'ping',
|
||||
tree,
|
||||
appDirRoute: true
|
||||
}));
|
||||
}
|
||||
}, 2500);
|
||||
return ()=>clearInterval(interval);
|
||||
}, [
|
||||
tree,
|
||||
webSocket
|
||||
]);
|
||||
}
|
||||
const textDecoder = new TextDecoder();
|
||||
function parseBinaryMessage(data) {
|
||||
assertByteLength(data, 1);
|
||||
const view = new DataView(data);
|
||||
const messageType = view.getUint8(0);
|
||||
switch(messageType){
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.ERRORS_TO_SHOW_IN_BROWSER:
|
||||
{
|
||||
const serializedErrors = new Uint8Array(data, 1);
|
||||
return {
|
||||
type: _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.ERRORS_TO_SHOW_IN_BROWSER,
|
||||
serializedErrors
|
||||
};
|
||||
}
|
||||
case _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.REACT_DEBUG_CHUNK:
|
||||
{
|
||||
assertByteLength(data, 2);
|
||||
const requestIdLength = view.getUint8(1);
|
||||
assertByteLength(data, 2 + requestIdLength);
|
||||
const requestId = textDecoder.decode(new Uint8Array(data, 2, requestIdLength));
|
||||
const chunk = data.byteLength > 2 + requestIdLength ? new Uint8Array(data, 2 + requestIdLength) : null;
|
||||
return {
|
||||
type: _hotreloadertypes.HMR_MESSAGE_SENT_TO_BROWSER.REACT_DEBUG_CHUNK,
|
||||
requestId,
|
||||
chunk
|
||||
};
|
||||
}
|
||||
default:
|
||||
{
|
||||
throw Object.defineProperty(new _invarianterror.InvariantError(`Invalid binary HMR message of type ${messageType}`), "__NEXT_ERROR_CODE", {
|
||||
value: "E809",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
function assertByteLength(data, expectedLength) {
|
||||
if (data.byteLength < expectedLength) {
|
||||
throw Object.defineProperty(new _invarianterror.InvariantError(`Invalid binary HMR message: insufficient data (expected ${expectedLength} bytes, got ${data.byteLength})`), "__NEXT_ERROR_CODE", {
|
||||
value: "E808",
|
||||
enumerable: false,
|
||||
configurable: true
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') {
|
||||
Object.defineProperty(exports.default, '__esModule', { value: true });
|
||||
Object.assign(exports.default, exports);
|
||||
module.exports = exports.default;
|
||||
}
|
||||
|
||||
//# sourceMappingURL=web-socket.js.map
|
||||
+1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user