File size: 28,849 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 |
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,
HMR_ACTIONS_SENT_TO_BROWSER,
} from './hot-reloader-types'
import * as Log from '../../build/output/log'
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,
getEntryKey,
splitEntryKey,
} from '../../shared/lib/turbopack/entry-key'
import type ws from 'next/dist/compiled/ws'
import { isMetadataRoute } from '../../lib/metadata/is-metadata-route'
import type { CustomRoutes } from '../../lib/load-custom-routes'
import {
formatIssue,
getIssueKey,
isRelevantWarning,
processIssues,
renderStyledStringToErrorAnsi,
type EntryIssuesMap,
type TopLevelIssuesMap,
} from '../../shared/lib/turbopack/utils'
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: Issue): boolean {
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' &&
renderStyledStringToErrorAnsi(issue.title).includes("can't be external")
) {
if (onceErrorSet.has(issue)) {
return false
}
onceErrorSet.add(issue)
}
return true
}
/// Print out an issue to the console which should not block
/// the build by throwing out or blocking error overlay.
export function printNonFatalIssue(issue: Issue) {
if (isRelevantWarning(issue) && shouldEmitOnceWarning(issue)) {
Log.warn(formatIssue(issue))
}
}
export function processTopLevelIssues(
currentTopLevelIssues: TopLevelIssuesMap,
result: TurbopackResult
) {
currentTopLevelIssues.clear()
for (const issue of result.issues) {
const issueKey = getIssueKey(issue)
currentTopLevelIssues.set(issueKey, issue)
}
}
const MILLISECONDS_IN_NANOSECOND = BigInt(1_000_000)
export function msToNs(ms: number): bigint {
return BigInt(Math.floor(ms)) * MILLISECONDS_IN_NANOSECOND
}
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>
// hooks only used by the dev server.
type HandleRouteTypeHooks = {
handleWrittenEndpoint: HandleWrittenEndpoint
subscribeToChanges: StartChangeSubscription
}
export async 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 // dev
hooks?: HandleRouteTypeHooks // dev
}) {
const shouldCreateWebpackStats = process.env.TURBOPACK_STATS != null
switch (route.type) {
case 'page': {
const clientKey = getEntryKey('pages', 'client', page)
const serverKey = 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 = getEntryKey('pages', 'server', '_app')
const writtenEndpoint = await entrypoints.global.app.writeToDisk()
documentOrAppChanged ||=
hooks?.handleWrittenEndpoint(key, writtenEndpoint, false) ?? false
processIssues(
currentEntryIssues,
key,
writtenEndpoint,
false,
logErrors
)
}
await manifestLoader.loadBuildManifest('_app')
await manifestLoader.loadPagesManifest('_app')
if (entrypoints.global.document) {
const key = getEntryKey('pages', 'server', '_document')
const writtenEndpoint =
await entrypoints.global.document.writeToDisk()
documentOrAppChanged ||=
hooks?.handleWrittenEndpoint(key, writtenEndpoint, false) ?? false
processIssues(
currentEntryIssues,
key,
writtenEndpoint,
false,
logErrors
)
}
await manifestLoader.loadPagesManifest('_document')
const writtenEndpoint = await route.htmlEndpoint.writeToDisk()
hooks?.handleWrittenEndpoint(
serverKey,
writtenEndpoint,
documentOrAppChanged
)
const type = writtenEndpoint?.type
await manifestLoader.loadClientBuildManifest(page)
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,
})
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?.subscribeToChanges(
serverKey,
false,
route.dataEndpoint,
() => {
// Report the next compilation again
readyIds?.delete(pathname)
return {
event: HMR_ACTIONS_SENT_TO_BROWSER.SERVER_ONLY_CHANGES,
pages: [page],
}
},
(e) => {
return {
action: HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
data: `error in ${page} data subscription: ${e}`,
}
}
)
hooks?.subscribeToChanges(
clientKey,
false,
route.htmlEndpoint,
() => {
return {
event: HMR_ACTIONS_SENT_TO_BROWSER.CLIENT_CHANGES,
}
},
(e) => {
return {
action: HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
data: `error in ${page} html subscription: ${e}`,
}
}
)
if (entrypoints.global.document) {
hooks?.subscribeToChanges(
getEntryKey('pages', 'server', '_document'),
false,
entrypoints.global.document,
() => {
return {
action: HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
data: '_document has changed (page route)',
}
},
(e) => {
return {
action: HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
data: `error in _document subscription (page route): ${e}`,
}
}
)
}
}
}
break
}
case 'page-api': {
const key = getEntryKey('pages', 'server', page)
const writtenEndpoint = await route.endpoint.writeToDisk()
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,
})
processIssues(currentEntryIssues, key, writtenEndpoint, true, logErrors)
break
}
case 'app-page': {
const key = getEntryKey('app', 'server', page)
const writtenEndpoint = await route.htmlEndpoint.writeToDisk()
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?.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?.delete(pathname)
return {
action: HMR_ACTIONS_SENT_TO_BROWSER.SERVER_COMPONENT_CHANGES,
hash,
}
},
(e) => {
return {
action: 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,
})
processIssues(currentEntryIssues, key, writtenEndpoint, dev, logErrors)
break
}
case 'app-route': {
const key = getEntryKey('app', 'server', page)
const writtenEndpoint = await route.endpoint.writeToDisk()
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,
})
processIssues(currentEntryIssues, key, writtenEndpoint, true, logErrors)
break
}
default: {
throw new Error(`unknown route type ${(route as any).type} for ${page}`)
}
}
}
/**
* Maintains a mapping between entrypoins and the corresponding client asset paths.
*/
export class AssetMapper {
private entryMap: Map<EntryKey, Set<string>> = new Map()
private assetMap: Map<string, Set<EntryKey>> = new Map()
/**
* 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 {
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: EntryKey) {
for (const assetPath of this.getAssetPathsByKey(key)) {
const assetPathKeys = this.assetMap.get(assetPath)
assetPathKeys?.delete(key)
if (!assetPathKeys?.size) {
this.assetMap.delete(assetPath)
}
}
this.entryMap.delete(key)
}
getAssetPathsByKey(key: EntryKey): string[] {
return Array.from(this.entryMap.get(key) ?? [])
}
getKeysByAsset(path: string): EntryKey[] {
return Array.from(this.assetMap.get(path) ?? [])
}
keys(): IterableIterator<EntryKey> {
return this.entryMap.keys()
}
}
export function hasEntrypointForKey(
entrypoints: Entrypoints,
key: EntryKey,
assetMapper: AssetMapper | undefined
): boolean {
const { type, page } = 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 _: never = type
return false
}
}
}
// hooks only used by the dev server.
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 async 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
}) {
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
}
case 'conflict':
Log.info(`skipping ${pathname} (${route.type})`)
break
default:
route satisfies never
}
}
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 = getEntryKey('root', 'server', 'middleware')
// Went from middleware to no middleware
await dev?.hooks.unsubscribeFromChanges(key)
currentEntryIssues.delete(key)
dev.hooks.sendHmr('middleware', {
event: HMR_ACTIONS_SENT_TO_BROWSER.MIDDLEWARE_CHANGES,
})
} else if (!currentEntrypoints.global.middleware && middleware) {
// Went from no middleware to middleware
dev.hooks.sendHmr('middleware', {
event: HMR_ACTIONS_SENT_TO_BROWSER.MIDDLEWARE_CHANGES,
})
}
currentEntrypoints.global.middleware = middleware
if (instrumentation) {
const processInstrumentation = async (
name: string,
prop: 'nodeJs' | 'edge'
) => {
const prettyName = {
nodeJs: 'Node.js',
edge: 'Edge',
}
const finishBuilding = dev.hooks.startBuilding(
`instrumentation ${prettyName[prop]}`,
undefined,
true
)
const key = getEntryKey('root', 'server', name)
const writtenEndpoint = await instrumentation[prop].writeToDisk()
dev.hooks.handleWrittenEndpoint(key, writtenEndpoint, false)
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 = getEntryKey('root', 'server', 'middleware')
const endpoint = middleware.endpoint
async function processMiddleware() {
const finishBuilding = dev.hooks.startBuilding(
'middleware',
undefined,
true
)
const writtenEndpoint = await endpoint.writeToDisk()
dev.hooks.handleWrittenEndpoint(key, writtenEndpoint, false)
processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)
await manifestLoader.loadMiddlewareManifest('middleware', 'middleware')
const middlewareConfig =
manifestLoader.getMiddlewareManifest(key)?.middleware['/']
if (dev && middlewareConfig) {
dev.serverFields.middleware = {
match: null as any,
page: '/',
matchers: middlewareConfig.matchers,
}
}
finishBuilding()
}
await processMiddleware()
if (dev) {
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?.()
return { event: HMR_ACTIONS_SENT_TO_BROWSER.MIDDLEWARE_CHANGES }
},
() => {
return {
event: HMR_ACTIONS_SENT_TO_BROWSER.MIDDLEWARE_CHANGES,
}
}
)
}
} else {
manifestLoader.deleteMiddlewareManifest(
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,
}: {
currentEntrypoints: Entrypoints
currentEntryIssues: EntryIssuesMap
} & HandleEntrypointsDevOpts) {
// 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,
getEntryKey('assets', 'client', id),
assetMapper
)
) {
hooks.unsubscribeFromHmrEvents(client, id)
}
}
}
}
export async 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
}) {
if (entrypoints.global.app) {
const key = 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: HMR_ACTIONS_SENT_TO_BROWSER.CLIENT_CHANGES }
},
() => {
return {
action: HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
data: '_app has changed (error route)',
}
}
)
processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)
}
await manifestLoader.loadBuildManifest('_app')
await manifestLoader.loadPagesManifest('_app')
await manifestLoader.loadFontManifest('_app')
if (entrypoints.global.document) {
const key = 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: HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
data: '_document has changed (error route)',
}
},
(e) => {
return {
action: HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
data: `error in _document subscription (error route): ${e}`,
}
}
)
processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)
}
await manifestLoader.loadPagesManifest('_document')
if (entrypoints.global.error) {
const key = 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: HMR_ACTIONS_SENT_TO_BROWSER.CLIENT_CHANGES }
},
(e) => {
return {
action: HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE,
data: `error in _error subscription: ${e}`,
}
}
)
processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)
}
await manifestLoader.loadClientBuildManifest('_error')
await manifestLoader.loadBuildManifest('_error')
await manifestLoader.loadPagesManifest('_error')
await manifestLoader.loadFontManifest('_error')
await manifestLoader.writeManifests({
devRewrites,
productionRewrites,
entrypoints,
})
}
export function removeRouteSuffix(route: string): string {
return route.replace(/\/route$/, '')
}
export function addRouteSuffix(route: string): string {
return route + '/route'
}
export function addMetadataIdToRoute(route: string): string {
return route + '/[__metadata_id__]'
}
// Since turbopack will create app pages/route entries based on the structure,
// which means the entry keys are based on file names.
// But for special metadata conventions we'll change the page/pathname to a different path.
// So we need this helper to map the new path back to original turbopack entry key.
export function normalizedPageToTurbopackStructureRoute(
route: string,
ext: string | false
): string {
let entrypointKey = route
if (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
}
|