forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.ts
More file actions
95 lines (89 loc) · 2.98 KB
/
utils.ts
File metadata and controls
95 lines (89 loc) · 2.98 KB
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
import {
CachedRouteKind,
IncrementalCacheKind,
type CachedAppPageValue,
type CachedPageValue,
type IncrementalCacheItem,
type ResponseCacheEntry,
} from './types'
import RenderResult from '../render-result'
import { RouteKind } from '../route-kind'
export async function fromResponseCacheEntry(
cacheEntry: ResponseCacheEntry
): Promise<IncrementalCacheItem> {
return {
...cacheEntry,
value:
cacheEntry.value?.kind === CachedRouteKind.PAGES
? {
kind: CachedRouteKind.PAGES,
html: await cacheEntry.value.html.toUnchunkedString(true),
pageData: cacheEntry.value.pageData,
headers: cacheEntry.value.headers,
status: cacheEntry.value.status,
}
: cacheEntry.value?.kind === CachedRouteKind.APP_PAGE
? {
kind: CachedRouteKind.APP_PAGE,
html: await cacheEntry.value.html.toUnchunkedString(true),
postponed: cacheEntry.value.postponed,
rscData: cacheEntry.value.rscData,
headers: cacheEntry.value.headers,
status: cacheEntry.value.status,
segmentData: cacheEntry.value.segmentData,
}
: cacheEntry.value,
}
}
export async function toResponseCacheEntry(
response: IncrementalCacheItem
): Promise<ResponseCacheEntry | null> {
if (!response) return null
if (response.value?.kind === CachedRouteKind.FETCH) {
throw new Error(
'Invariant: unexpected cachedResponse of kind fetch in response cache'
)
}
return {
isMiss: response.isMiss,
isStale: response.isStale,
revalidate: response.revalidate,
isFallback: response.isFallback,
value:
response.value?.kind === CachedRouteKind.PAGES
? ({
kind: CachedRouteKind.PAGES,
html: RenderResult.fromStatic(response.value.html),
pageData: response.value.pageData,
headers: response.value.headers,
status: response.value.status,
} satisfies CachedPageValue)
: response.value?.kind === CachedRouteKind.APP_PAGE
? ({
kind: CachedRouteKind.APP_PAGE,
html: RenderResult.fromStatic(response.value.html),
rscData: response.value.rscData,
headers: response.value.headers,
status: response.value.status,
postponed: response.value.postponed,
segmentData: response.value.segmentData,
} satisfies CachedAppPageValue)
: response.value,
}
}
export function routeKindToIncrementalCacheKind(
routeKind: RouteKind
): IncrementalCacheKind {
switch (routeKind) {
case RouteKind.PAGES:
return IncrementalCacheKind.PAGES
case RouteKind.APP_PAGE:
return IncrementalCacheKind.APP_PAGE
case RouteKind.IMAGE:
return IncrementalCacheKind.IMAGE
case RouteKind.APP_ROUTE:
return IncrementalCacheKind.APP_ROUTE
default:
throw new Error(`Unexpected route kind ${routeKind}`)
}
}