forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp-router-instance.ts
383 lines (347 loc) · 11.8 KB
/
app-router-instance.ts
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
import {
type AppRouterState,
type ReducerActions,
type ReducerState,
ACTION_REFRESH,
ACTION_SERVER_ACTION,
ACTION_NAVIGATE,
ACTION_RESTORE,
type NavigateAction,
ACTION_HMR_REFRESH,
PrefetchKind,
ACTION_PREFETCH,
} from './router-reducer/router-reducer-types'
import { reducer } from './router-reducer/router-reducer'
import { startTransition } from 'react'
import { isThenable } from '../../shared/lib/is-thenable'
import { prefetch as prefetchWithSegmentCache } from './segment-cache'
import { dispatchAppRouterAction } from './use-action-queue'
import { addBasePath } from '../add-base-path'
import { createPrefetchURL, isExternalURL } from './app-router'
import { prefetchReducer } from './router-reducer/reducers/prefetch-reducer'
import type {
AppRouterInstance,
NavigateOptions,
PrefetchOptions,
} from '../../shared/lib/app-router-context.shared-runtime'
import { setLinkForCurrentNavigation, type LinkInstance } from './links'
import type { FlightRouterState } from '../../server/app-render/types'
import type { ClientInstrumentationHooks } from '../app-index'
export type DispatchStatePromise = React.Dispatch<ReducerState>
export type AppRouterActionQueue = {
state: AppRouterState
dispatch: (payload: ReducerActions, setState: DispatchStatePromise) => void
action: (state: AppRouterState, action: ReducerActions) => ReducerState
onRouterTransitionStart:
| ((url: string, type: 'push' | 'replace' | 'traverse') => void)
| null
pending: ActionQueueNode | null
needsRefresh?: boolean
last: ActionQueueNode | null
}
export type ActionQueueNode = {
payload: ReducerActions
next: ActionQueueNode | null
resolve: (value: ReducerState) => void
reject: (err: Error) => void
discarded?: boolean
}
function runRemainingActions(
actionQueue: AppRouterActionQueue,
setState: DispatchStatePromise
) {
if (actionQueue.pending !== null) {
actionQueue.pending = actionQueue.pending.next
if (actionQueue.pending !== null) {
// eslint-disable-next-line @typescript-eslint/no-use-before-define
runAction({
actionQueue,
action: actionQueue.pending,
setState,
})
} else {
// No more actions are pending, check if a refresh is needed
if (actionQueue.needsRefresh) {
actionQueue.needsRefresh = false
actionQueue.dispatch(
{
type: ACTION_REFRESH,
origin: window.location.origin,
},
setState
)
}
}
}
}
async function runAction({
actionQueue,
action,
setState,
}: {
actionQueue: AppRouterActionQueue
action: ActionQueueNode
setState: DispatchStatePromise
}) {
const prevState = actionQueue.state
actionQueue.pending = action
const payload = action.payload
const actionResult = actionQueue.action(prevState, payload)
function handleResult(nextState: AppRouterState) {
// if we discarded this action, the state should also be discarded
if (action.discarded) {
return
}
actionQueue.state = nextState
runRemainingActions(actionQueue, setState)
action.resolve(nextState)
}
// if the action is a promise, set up a callback to resolve it
if (isThenable(actionResult)) {
actionResult.then(handleResult, (err) => {
runRemainingActions(actionQueue, setState)
action.reject(err)
})
} else {
handleResult(actionResult)
}
}
function dispatchAction(
actionQueue: AppRouterActionQueue,
payload: ReducerActions,
setState: DispatchStatePromise
) {
let resolvers: {
resolve: (value: ReducerState) => void
reject: (reason: any) => void
} = { resolve: setState, reject: () => {} }
// most of the action types are async with the exception of restore
// it's important that restore is handled quickly since it's fired on the popstate event
// and we don't want to add any delay on a back/forward nav
// this only creates a promise for the async actions
if (payload.type !== ACTION_RESTORE) {
// Create the promise and assign the resolvers to the object.
const deferredPromise = new Promise<AppRouterState>((resolve, reject) => {
resolvers = { resolve, reject }
})
startTransition(() => {
// we immediately notify React of the pending promise -- the resolver is attached to the action node
// and will be called when the associated action promise resolves
setState(deferredPromise)
})
}
const newAction: ActionQueueNode = {
payload,
next: null,
resolve: resolvers.resolve,
reject: resolvers.reject,
}
// Check if the queue is empty
if (actionQueue.pending === null) {
// The queue is empty, so add the action and start it immediately
// Mark this action as the last in the queue
actionQueue.last = newAction
runAction({
actionQueue,
action: newAction,
setState,
})
} else if (
payload.type === ACTION_NAVIGATE ||
payload.type === ACTION_RESTORE
) {
// Navigations (including back/forward) take priority over any pending actions.
// Mark the pending action as discarded (so the state is never applied) and start the navigation action immediately.
actionQueue.pending.discarded = true
// The rest of the current queue should still execute after this navigation.
// (Note that it can't contain any earlier navigations, because we always put those into `actionQueue.pending` by calling `runAction`)
newAction.next = actionQueue.pending.next
// if the pending action was a server action, mark the queue as needing a refresh once events are processed
if (actionQueue.pending.payload.type === ACTION_SERVER_ACTION) {
actionQueue.needsRefresh = true
}
runAction({
actionQueue,
action: newAction,
setState,
})
} else {
// The queue is not empty, so add the action to the end of the queue
// It will be started by runRemainingActions after the previous action finishes
if (actionQueue.last !== null) {
actionQueue.last.next = newAction
}
actionQueue.last = newAction
}
}
let globalActionQueue: AppRouterActionQueue | null = null
export function createMutableActionQueue(
initialState: AppRouterState,
instrumentationHooks: ClientInstrumentationHooks | null
): AppRouterActionQueue {
const actionQueue: AppRouterActionQueue = {
state: initialState,
dispatch: (payload: ReducerActions, setState: DispatchStatePromise) =>
dispatchAction(actionQueue, payload, setState),
action: async (state: AppRouterState, action: ReducerActions) => {
const result = reducer(state, action)
return result
},
pending: null,
last: null,
onRouterTransitionStart:
instrumentationHooks !== null &&
typeof instrumentationHooks.onRouterTransitionStart === 'function'
? // This profiling hook will be called at the start of every navigation.
instrumentationHooks.onRouterTransitionStart
: null,
}
if (typeof window !== 'undefined') {
// The action queue is lazily created on hydration, but after that point
// it doesn't change. So we can store it in a global rather than pass
// it around everywhere via props/context.
if (globalActionQueue !== null) {
throw new Error(
'Internal Next.js Error: createMutableActionQueue was called more ' +
'than once'
)
}
globalActionQueue = actionQueue
}
return actionQueue
}
export function getCurrentAppRouterState(): AppRouterState | null {
return globalActionQueue !== null ? globalActionQueue.state : null
}
function getAppRouterActionQueue(): AppRouterActionQueue {
if (globalActionQueue === null) {
throw new Error(
'Internal Next.js error: Router action dispatched before initialization.'
)
}
return globalActionQueue
}
function getProfilingHookForOnNavigationStart() {
if (globalActionQueue !== null) {
return globalActionQueue.onRouterTransitionStart
}
return null
}
export function dispatchNavigateAction(
href: string,
navigateType: NavigateAction['navigateType'],
shouldScroll: boolean,
linkInstanceRef: LinkInstance | null
): void {
// TODO: This stuff could just go into the reducer. Leaving as-is for now
// since we're about to rewrite all the router reducer stuff anyway.
const url = new URL(addBasePath(href), location.href)
if (process.env.__NEXT_APP_NAV_FAIL_HANDLING) {
window.next.__pendingUrl = url
}
setLinkForCurrentNavigation(linkInstanceRef)
const onRouterTransitionStart = getProfilingHookForOnNavigationStart()
if (onRouterTransitionStart !== null) {
onRouterTransitionStart(href, navigateType)
}
dispatchAppRouterAction({
type: ACTION_NAVIGATE,
url,
isExternalUrl: isExternalURL(url),
locationSearch: location.search,
shouldScroll,
navigateType,
allowAliasing: true,
})
}
export function dispatchTraverseAction(
href: string,
tree: FlightRouterState | undefined
) {
const onRouterTransitionStart = getProfilingHookForOnNavigationStart()
if (onRouterTransitionStart !== null) {
onRouterTransitionStart(href, 'traverse')
}
dispatchAppRouterAction({
type: ACTION_RESTORE,
url: new URL(href),
tree,
})
}
/**
* The app router that is exposed through `useRouter`. These are public API
* methods. Internal Next.js code should call the lower level methods directly
* (although there's lots of existing code that doesn't do that).
*/
export const publicAppRouterInstance: AppRouterInstance = {
back: () => window.history.back(),
forward: () => window.history.forward(),
prefetch: process.env.__NEXT_CLIENT_SEGMENT_CACHE
? // Unlike the old implementation, the Segment Cache doesn't store its
// data in the router reducer state; it writes into a global mutable
// cache. So we don't need to dispatch an action.
(href: string, options?: PrefetchOptions) => {
const actionQueue = getAppRouterActionQueue()
prefetchWithSegmentCache(
href,
actionQueue.state.nextUrl,
actionQueue.state.tree,
options?.kind === PrefetchKind.FULL,
options?.onInvalidate ?? null
)
}
: (href: string, options?: PrefetchOptions) => {
// Use the old prefetch implementation.
const actionQueue = getAppRouterActionQueue()
const url = createPrefetchURL(href)
if (url !== null) {
// The prefetch reducer doesn't actually update any state or
// trigger a rerender. It just writes to a mutable cache. So we
// shouldn't bother calling setState/dispatch; we can just re-run
// the reducer directly using the current state.
// TODO: Refactor this away from a "reducer" so it's
// less confusing.
prefetchReducer(actionQueue.state, {
type: ACTION_PREFETCH,
url,
kind: options?.kind ?? PrefetchKind.FULL,
})
}
},
replace: (href: string, options?: NavigateOptions) => {
startTransition(() => {
dispatchNavigateAction(href, 'replace', options?.scroll ?? true, null)
})
},
push: (href: string, options?: NavigateOptions) => {
startTransition(() => {
dispatchNavigateAction(href, 'push', options?.scroll ?? true, null)
})
},
refresh: () => {
startTransition(() => {
dispatchAppRouterAction({
type: ACTION_REFRESH,
origin: window.location.origin,
})
})
},
hmrRefresh: () => {
if (process.env.NODE_ENV !== 'development') {
throw new Error(
'hmrRefresh can only be used in development mode. Please use refresh instead.'
)
} else {
startTransition(() => {
dispatchAppRouterAction({
type: ACTION_HMR_REFRESH,
origin: window.location.origin,
})
})
}
},
}
// Exists for debugging purposes. Don't use in application code.
if (typeof window !== 'undefined' && window.next) {
window.next.router = publicAppRouterInstance
}