-
Notifications
You must be signed in to change notification settings - Fork 28.1k
/
Copy pathattach-hydration-error-state.ts
88 lines (83 loc) · 3.55 KB
/
attach-hydration-error-state.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
import {
getDefaultHydrationErrorMessage,
isHydrationError,
testReactHydrationWarning,
} from '../is-hydration-error'
import {
hydrationErrorState,
getReactHydrationDiffSegments,
type HydrationErrorState,
} from './hydration-error-info'
export function attachHydrationErrorState(error: Error) {
let parsedHydrationErrorState: typeof hydrationErrorState = {}
const isHydrationWarning = testReactHydrationWarning(error.message)
const isHydrationRuntimeError = isHydrationError(error)
// If it's not hydration warnings or errors, skip
if (!(isHydrationRuntimeError || isHydrationWarning)) {
return
}
const reactHydrationDiffSegments = getReactHydrationDiffSegments(
error.message
)
// If the reactHydrationDiffSegments exists
// and the diff (reactHydrationDiffSegments[1]) exists
// e.g. the hydration diff log error.
if (reactHydrationDiffSegments) {
const diff = reactHydrationDiffSegments[1]
parsedHydrationErrorState = {
...((error as any).details as HydrationErrorState),
...hydrationErrorState,
// If diff is present in error, we don't need to pick up the console logged warning.
// - if hydration error has diff, and is not hydration diff log, then it's a normal hydration error.
// - if hydration error no diff, then leverage the one from the hydration diff log.
warning: (diff && !isHydrationWarning
? null
: hydrationErrorState.warning) || [
getDefaultHydrationErrorMessage(),
'',
'',
],
// When it's hydration diff log, do not show notes section.
// This condition is only for the 1st squashed error.
notes: isHydrationWarning ? '' : reactHydrationDiffSegments[0],
reactOutputComponentDiff: diff,
}
// Cache the `reactOutputComponentDiff` into hydrationErrorState.
// This is only required for now when we still squashed the hydration diff log into hydration error.
// Once the all error is logged to dev overlay in order, this will go away.
if (!hydrationErrorState.reactOutputComponentDiff && diff) {
hydrationErrorState.reactOutputComponentDiff = diff
}
// If it's hydration runtime error that doesn't contain the diff, combine the diff from the cached hydration diff.
if (
!diff &&
isHydrationRuntimeError &&
hydrationErrorState.reactOutputComponentDiff
) {
parsedHydrationErrorState.reactOutputComponentDiff =
hydrationErrorState.reactOutputComponentDiff
}
} else {
// Normal runtime error, where it doesn't contain the hydration diff.
// If there's any extra information in the error message to display,
// append it to the error message details property
if (hydrationErrorState.warning) {
// The patched console.error found hydration errors logged by React
// Append the logged warning to the error message
parsedHydrationErrorState = {
...(error as any).details,
// It contains the warning, component stack, server and client tag names
...hydrationErrorState,
}
}
// Consume the cached hydration diff.
// This is only required for now when we still squashed the hydration diff log into hydration error.
// Once the all error is logged to dev overlay in order, this will go away.
if (hydrationErrorState.reactOutputComponentDiff) {
parsedHydrationErrorState.reactOutputComponentDiff =
hydrationErrorState.reactOutputComponentDiff
}
}
// If it's a hydration error, store the hydration error state into the error object
;(error as any).details = parsedHydrationErrorState
}