-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Expand file tree
/
Copy path[errorCode].tsx
More file actions
170 lines (155 loc) · 4.66 KB
/
[errorCode].tsx
File metadata and controls
170 lines (155 loc) · 4.66 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
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
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import {Fragment, useMemo} from 'react';
import {Page} from 'components/Layout/Page';
import {MDXComponents} from 'components/MDX/MDXComponents';
import sidebarLearn from 'sidebarLearn.json';
import type {RouteItem} from 'components/Layout/getRouteMeta';
import {GetStaticPaths, GetStaticProps, InferGetStaticPropsType} from 'next';
import {ErrorDecoderContext} from 'components/ErrorDecoderContext';
import compileMDX from 'utils/compileMDX';
interface ErrorDecoderProps {
errorCode: string | null;
errorMessage: string | null;
content: string;
toc: string;
meta: any;
isCustom: boolean;
}
export default function ErrorDecoderPage({
errorMessage,
errorCode,
content,
toc,
isCustom,
}: InferGetStaticPropsType<typeof getStaticProps>) {
const parsedContent = useMemo<React.ReactNode>(
() => JSON.parse(content, reviveNodeOnClient),
[content]
);
const parsedToc = useMemo(
() => (isCustom ? JSON.parse(toc, reviveNodeOnClient) : []),
[toc, isCustom]
);
return (
<ErrorDecoderContext value={{errorMessage, errorCode}}>
<Page
toc={parsedToc}
meta={{
title: errorCode
? `React error #${errorCode}`
: 'React Error Decoder',
}}
routeTree={sidebarLearn as RouteItem}
section="unknown">
<div>{parsedContent}</div>
{/* <MaxWidth>
<P>
We highly recommend using the development build locally when debugging
your app since it tracks additional debug info and provides helpful
warnings about potential problems in your apps, but if you encounter
an exception while using the production build, this page will
reassemble the original error message.
</P>
<ErrorDecoder />
</MaxWidth> */}
</Page>
</ErrorDecoderContext>
);
}
// Deserialize a client React tree from JSON.
function reviveNodeOnClient(parentPropertyName: unknown, val: any) {
if (Array.isArray(val) && val[0] == '$r') {
// Assume it's a React element.
let Type = val[1];
let key = val[2];
if (key == null) {
key = parentPropertyName; // Index within a parent.
}
let props = val[3];
if (Type === 'wrapper') {
Type = Fragment;
props = {children: props.children};
}
if (Type in MDXComponents) {
Type = MDXComponents[Type as keyof typeof MDXComponents];
}
if (!Type) {
console.error('Unknown type: ' + Type);
Type = Fragment;
}
return <Type key={key} {...props} />;
} else {
return val;
}
}
/**
* Next.js Page Router doesn't have a way to cache specific data fetching request.
* But since Next.js uses limited number of workers, keep "cachedErrorCodes" as a
* module level memory cache can reduce the number of requests down to once per worker.
*
* TODO: use `next/unstable_cache` when migrating to Next.js App Router
*/
let cachedErrorCodes: Record<string, string> | null = null;
export const getStaticProps: GetStaticProps<ErrorDecoderProps> = async ({
params,
}) => {
const errorCodes: {[key: string]: string} = (cachedErrorCodes ||= await (
await fetch(
'https://raw.githubusercontent.com/facebook/react/main/scripts/error-codes/codes.json'
)
).json());
const code = typeof params?.errorCode === 'string' ? params?.errorCode : null;
if (code && !errorCodes[code]) {
return {
notFound: true,
};
}
const fs = require('fs');
const rootDir = process.cwd() + '/src/content/errors';
// Read MDX from the file.
let path = params?.errorCode || 'index';
let mdx;
let isCustom = true;
try {
mdx = fs.readFileSync(rootDir + '/' + path + '.md', 'utf8');
} catch {
// if [errorCode].md is not found, fallback to generic.md
mdx = fs.readFileSync(rootDir + '/generic.md', 'utf8');
isCustom = false;
}
const {content, toc, meta} = await compileMDX(mdx, path, {code, errorCodes});
return {
props: {
content,
toc,
meta,
isCustom,
errorCode: code,
errorMessage: code ? errorCodes[code] : null,
},
};
};
export const getStaticPaths: GetStaticPaths = async () => {
/**
* Fetch error codes from GitHub
*/
const errorCodes = (cachedErrorCodes ||= await (
await fetch(
'https://raw.githubusercontent.com/facebook/react/main/scripts/error-codes/codes.json'
)
).json());
const paths = Object.keys(errorCodes).map((code) => ({
params: {
errorCode: code,
},
}));
return {
paths,
fallback: 'blocking',
};
};