File size: 13,058 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 |
import {
getDraftModeProviderForCacheScope,
throwForMissingRequestStore,
} from '../app-render/work-unit-async-storage.external'
import type { DraftModeProvider } from '../async-storage/draft-mode-provider'
import {
workAsyncStorage,
type WorkStore,
} from '../app-render/work-async-storage.external'
import { workUnitAsyncStorage } from '../app-render/work-unit-async-storage.external'
import {
abortAndThrowOnSynchronousRequestDataAccess,
postponeWithTracking,
trackDynamicDataInDynamicRender,
trackSynchronousRequestDataAccessInDev,
} from '../app-render/dynamic-rendering'
import { createDedupedByCallsiteServerErrorLoggerDev } from '../create-deduped-by-callsite-server-error-logger'
import { StaticGenBailoutError } from '../../client/components/static-generation-bailout'
import { DynamicServerError } from '../../client/components/hooks-server-context'
import { InvariantError } from '../../shared/lib/invariant-error'
import { ReflectAdapter } from '../web/spec-extension/adapters/reflect'
/**
* In this version of Next.js `draftMode()` returns a Promise however you can still reference the properties of the underlying draftMode object
* synchronously to facilitate migration. The `UnsafeUnwrappedDraftMode` type is added to your code by a codemod that attempts to automatically
* updates callsites to reflect the new Promise return type. There are some cases where `draftMode()` cannot be automatically converted, namely
* when it is used inside a synchronous function and we can't be sure the function can be made async automatically. In these cases we add an
* explicit type case to `UnsafeUnwrappedDraftMode` to enable typescript to allow for the synchronous usage only where it is actually necessary.
*
* You should should update these callsites to either be async functions where the `draftMode()` value can be awaited or you should call `draftMode()`
* from outside and await the return value before passing it into this function.
*
* You can find instances that require manual migration by searching for `UnsafeUnwrappedDraftMode` in your codebase or by search for a comment that
* starts with `@next-codemod-error`.
*
* In a future version of Next.js `draftMode()` will only return a Promise and you will not be able to access the underlying draftMode object directly
* without awaiting the return value first. When this change happens the type `UnsafeUnwrappedDraftMode` will be updated to reflect that is it no longer
* usable.
*
* This type is marked deprecated to help identify it as target for refactoring away.
*
* @deprecated
*/
export type UnsafeUnwrappedDraftMode = DraftMode
export function draftMode(): Promise<DraftMode> {
const callingExpression = 'draftMode'
const workStore = workAsyncStorage.getStore()
const workUnitStore = workUnitAsyncStorage.getStore()
if (!workStore || !workUnitStore) {
throwForMissingRequestStore(callingExpression)
}
switch (workUnitStore.type) {
case 'request':
return createOrGetCachedDraftMode(workUnitStore.draftMode, workStore)
case 'cache':
case 'private-cache':
case 'unstable-cache':
// Inside of `"use cache"` or `unstable_cache`, draft mode is available if
// the outmost work unit store is a request store, and if draft mode is
// enabled.
const draftModeProvider = getDraftModeProviderForCacheScope(
workStore,
workUnitStore
)
if (draftModeProvider) {
return createOrGetCachedDraftMode(draftModeProvider, workStore)
}
// Otherwise, we fall through to providing an empty draft mode.
// eslint-disable-next-line no-fallthrough
case 'prerender':
case 'prerender-client':
case 'prerender-ppr':
case 'prerender-legacy':
// Return empty draft mode
return createOrGetCachedDraftMode(null, workStore)
default:
return workUnitStore satisfies never
}
}
function createOrGetCachedDraftMode(
draftModeProvider: DraftModeProvider | null,
workStore: WorkStore | undefined
): Promise<DraftMode> {
const cacheKey = draftModeProvider ?? NullDraftMode
const cachedDraftMode = CachedDraftModes.get(cacheKey)
if (cachedDraftMode) {
return cachedDraftMode
}
let promise: Promise<DraftMode>
if (process.env.NODE_ENV === 'development' && !workStore?.isPrefetchRequest) {
const route = workStore?.route
if (process.env.__NEXT_CACHE_COMPONENTS) {
return createDraftModeWithDevWarnings(draftModeProvider, route)
}
promise = createExoticDraftModeWithDevWarnings(draftModeProvider, route)
} else {
if (process.env.__NEXT_CACHE_COMPONENTS) {
return Promise.resolve(new DraftMode(draftModeProvider))
}
promise = createExoticDraftMode(draftModeProvider)
}
CachedDraftModes.set(cacheKey, promise)
return promise
}
interface CacheLifetime {}
const NullDraftMode = {}
const CachedDraftModes = new WeakMap<CacheLifetime, Promise<DraftMode>>()
function createExoticDraftMode(
underlyingProvider: null | DraftModeProvider
): Promise<DraftMode> {
const instance = new DraftMode(underlyingProvider)
const promise = Promise.resolve(instance)
Object.defineProperty(promise, 'isEnabled', {
get() {
return instance.isEnabled
},
enumerable: true,
configurable: true,
})
;(promise as any).enable = instance.enable.bind(instance)
;(promise as any).disable = instance.disable.bind(instance)
return promise
}
function createExoticDraftModeWithDevWarnings(
underlyingProvider: null | DraftModeProvider,
route: undefined | string
): Promise<DraftMode> {
const instance = new DraftMode(underlyingProvider)
const promise = Promise.resolve(instance)
Object.defineProperty(promise, 'isEnabled', {
get() {
const expression = '`draftMode().isEnabled`'
syncIODev(route, expression)
return instance.isEnabled
},
enumerable: true,
configurable: true,
})
Object.defineProperty(promise, 'enable', {
value: function get() {
const expression = '`draftMode().enable()`'
syncIODev(route, expression)
return instance.enable.apply(instance, arguments as any)
},
})
Object.defineProperty(promise, 'disable', {
value: function get() {
const expression = '`draftMode().disable()`'
syncIODev(route, expression)
return instance.disable.apply(instance, arguments as any)
},
})
return promise
}
// Similar to `createExoticDraftModeWithDevWarnings`, but just logging the sync
// access without actually defining the draftMode properties on the promise.
function createDraftModeWithDevWarnings(
underlyingProvider: null | DraftModeProvider,
route: undefined | string
): Promise<DraftMode> {
const instance = new DraftMode(underlyingProvider)
const promise = Promise.resolve(instance)
const proxiedPromise = new Proxy(promise, {
get(target, prop, receiver) {
switch (prop) {
case 'isEnabled':
warnForSyncAccess(route, `\`draftMode().${prop}\``)
break
case 'enable':
case 'disable': {
warnForSyncAccess(route, `\`draftMode().${prop}()\``)
break
}
default: {
// We only warn for well-defined properties of the draftMode object.
}
}
return ReflectAdapter.get(target, prop, receiver)
},
})
return proxiedPromise
}
class DraftMode {
/**
* @internal - this declaration is stripped via `tsc --stripInternal`
*/
private readonly _provider: null | DraftModeProvider
constructor(provider: null | DraftModeProvider) {
this._provider = provider
}
get isEnabled() {
if (this._provider !== null) {
return this._provider.isEnabled
}
return false
}
public enable() {
// We have a store we want to track dynamic data access to ensure we
// don't statically generate routes that manipulate draft mode.
trackDynamicDraftMode('draftMode().enable()', this.enable)
if (this._provider !== null) {
this._provider.enable()
}
}
public disable() {
trackDynamicDraftMode('draftMode().disable()', this.disable)
if (this._provider !== null) {
this._provider.disable()
}
}
}
function syncIODev(route: string | undefined, expression: string) {
const workUnitStore = workUnitAsyncStorage.getStore()
if (workUnitStore) {
switch (workUnitStore.type) {
case 'request':
if (workUnitStore.prerenderPhase === true) {
// When we're rendering dynamically in dev, we need to advance out of
// the Prerender environment when we read Request data synchronously.
trackSynchronousRequestDataAccessInDev(workUnitStore)
}
break
case 'prerender':
case 'prerender-client':
case 'prerender-ppr':
case 'prerender-legacy':
case 'cache':
case 'private-cache':
case 'unstable-cache':
break
default:
workUnitStore satisfies never
}
}
// In all cases we warn normally
warnForSyncAccess(route, expression)
}
const warnForSyncAccess = createDedupedByCallsiteServerErrorLoggerDev(
createDraftModeAccessError
)
function createDraftModeAccessError(
route: string | undefined,
expression: string
) {
const prefix = route ? `Route "${route}" ` : 'This route '
return new Error(
`${prefix}used ${expression}. ` +
`\`draftMode()\` should be awaited before using its value. ` +
`Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`
)
}
function trackDynamicDraftMode(expression: string, constructorOpt: Function) {
const workStore = workAsyncStorage.getStore()
const workUnitStore = workUnitAsyncStorage.getStore()
if (workStore) {
// We have a store we want to track dynamic data access to ensure we
// don't statically generate routes that manipulate draft mode.
if (workUnitStore?.phase === 'after') {
throw new Error(
`Route ${workStore.route} used "${expression}" inside \`after\`. The enabled status of draftMode can be read inside \`after\` but you cannot enable or disable draftMode. See more info here: https://nextjs.org/docs/app/api-reference/functions/after`
)
}
if (workStore.dynamicShouldError) {
throw new StaticGenBailoutError(
`Route ${workStore.route} with \`dynamic = "error"\` couldn't be rendered statically because it used \`${expression}\`. See more info here: https://nextjs.org/docs/app/building-your-application/rendering/static-and-dynamic#dynamic-rendering`
)
}
if (workUnitStore) {
switch (workUnitStore.type) {
case 'cache':
case 'private-cache': {
const error = new Error(
`Route ${workStore.route} used "${expression}" inside "use cache". The enabled status of draftMode can be read in caches but you must not enable or disable draftMode inside a cache. See more info here: https://nextjs.org/docs/messages/next-request-in-use-cache`
)
Error.captureStackTrace(error, constructorOpt)
workStore.invalidDynamicUsageError ??= error
throw error
}
case 'unstable-cache':
throw new Error(
`Route ${workStore.route} used "${expression}" inside a function cached with "unstable_cache(...)". The enabled status of draftMode can be read in caches but you must not enable or disable draftMode inside a cache. See more info here: https://nextjs.org/docs/app/api-reference/functions/unstable_cache`
)
case 'prerender': {
const error = new Error(
`Route ${workStore.route} used ${expression} without first calling \`await connection()\`. See more info here: https://nextjs.org/docs/messages/next-prerender-sync-headers`
)
return abortAndThrowOnSynchronousRequestDataAccess(
workStore.route,
expression,
error,
workUnitStore
)
}
case 'prerender-client':
const exportName = '`draftMode`'
throw new InvariantError(
`${exportName} must not be used within a client component. Next.js should be preventing ${exportName} from being included in client components statically, but did not in this case.`
)
case 'prerender-ppr':
return postponeWithTracking(
workStore.route,
expression,
workUnitStore.dynamicTracking
)
case 'prerender-legacy':
workUnitStore.revalidate = 0
const err = new DynamicServerError(
`Route ${workStore.route} couldn't be rendered statically because it used \`${expression}\`. See more info here: https://nextjs.org/docs/messages/dynamic-server-error`
)
workStore.dynamicUsageDescription = expression
workStore.dynamicUsageStack = err.stack
throw err
case 'request':
trackDynamicDataInDynamicRender(workUnitStore)
break
default:
workUnitStore satisfies never
}
}
}
}
|