| | import { createAsyncLocalStorage } from '../app-render/async-local-storage' |
| |
|
| | export function getBuiltinRequestContext(): |
| | | BuiltinRequestContextValue |
| | | undefined { |
| | const _globalThis = globalThis as GlobalThisWithRequestContext |
| | const ctx = _globalThis[NEXT_REQUEST_CONTEXT_SYMBOL] |
| | return ctx?.get() |
| | } |
| |
|
| | const NEXT_REQUEST_CONTEXT_SYMBOL = Symbol.for('@next/request-context') |
| |
|
| | type GlobalThisWithRequestContext = typeof globalThis & { |
| | [NEXT_REQUEST_CONTEXT_SYMBOL]?: BuiltinRequestContext |
| | } |
| |
|
| | |
| | export type BuiltinRequestContext = { |
| | get(): BuiltinRequestContextValue | undefined |
| | } |
| |
|
| | export type RunnableBuiltinRequestContext = BuiltinRequestContext & { |
| | run<T>(value: BuiltinRequestContextValue, callback: () => T): T |
| | } |
| |
|
| | export type BuiltinRequestContextValue = { |
| | waitUntil?: WaitUntil |
| | } |
| | export type WaitUntil = (promise: Promise<any>) => void |
| |
|
| | |
| | |
| | |
| | |
| | export function createLocalRequestContext(): RunnableBuiltinRequestContext { |
| | const storage = createAsyncLocalStorage<BuiltinRequestContextValue>() |
| | return { |
| | get: () => storage.getStore(), |
| | run: (value, callback) => storage.run(value, callback), |
| | } |
| | } |
| |
|