This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
gatsby-node.js
444 lines (370 loc) · 12.3 KB
/
gatsby-node.js
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
// Use in this file CommonJS syntax see https://www.gatsbyjs.org/docs/migrating-from-v1-to-v2/#convert-to-either-pure-commonjs-or-pure-es6
const fs = require('fs');
const path = require('path');
const yaml = require('yaml');
const readingTime = require('reading-time');
const asyncMethods = require('async');
const safeJSON = require('./util-node/safeJSON');
const createSlug = require('./util-node/createSlug');
const getNodeReleasesData = require('./util-node/getNodeReleasesData');
const getBannersData = require('./util-node/getBannersData');
const getNvmData = require('./util-node/getNvmData');
const createBlogQuery = require('./util-node/queries/createBlogQuery');
const createLearnQuery = require('./util-node/queries/createLearnQuery');
const createApiQuery = require('./util-node/queries/createApiQuery');
const createBlogPages = require('./util-node/createBlogPages');
const createLearnPages = require('./util-node/createLearnPages');
const createApiPages = require('./util-node/createApiPages');
const generateRedirects = require('./util-node/generateRedirects');
const getPaginationPath = require('./util-node/getPaginationPath');
const redirects = require('./redirects');
const nodeLocales = require('./locales');
const { learnPath, apiPath, blogPath } = require('./pathPrefixes');
const BLOG_POST_FILENAME_REGEX = /([0-9]+)-([0-9]+)-([0-9]+)-(.+)\.md$/;
const learnYamlNavigationData = yaml.parse(
fs.readFileSync('./src/data/learn.yaml', 'utf8')
);
const apiTypesNavigationData = yaml.parse(
fs.readFileSync('./src/data/apiTypes.yaml', 'utf8')
);
// This creates a map of all the locale JSONs that are enabled in the config.json file
const intlMessages = nodeLocales.locales.reduce(
(acc, locale) => ({
...acc,
// eslint-disable-next-line import/no-dynamic-require, global-require
[locale.code]: require(`./src/i18n/locales/${locale.code}.json`),
}),
{}
);
const getMessagesForLocale = locale =>
locale && locale in intlMessages
? intlMessages[locale]
: intlMessages[nodeLocales.defaultLanguage];
const getRedirectForLocale = (locale, url) =>
/^\/\/|https?:\/\//.test(url) ? url : `/${locale}${url}`;
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions;
const typeDefs = `
type BannersIndex implements Node {
endDate: String
link: String
text: String
html: String
startDate: String
}
`;
createTypes(typeDefs);
};
exports.createPages = async ({ graphql, actions }) => {
const { createPage, createRedirect } = actions;
const pageRedirects = { ...redirects };
const templates = path.resolve(__dirname, './src/templates/');
const apiTemplate = `${templates}/api.tsx`;
const learnTemplate = `${templates}/learn.tsx`;
const postTemplate = `${templates}/post.tsx`;
const blogTemplate = `${templates}/blog.tsx`;
const [learnResult, blogResult, apiResult] = await Promise.all([
graphql(createLearnQuery),
graphql(createBlogQuery),
graphql(createApiQuery),
]);
const {
pages: { edges: blogEdges },
categories: { edges: categoryEdges },
} = blogResult.data;
const {
allMdx: { edges: learnEdges },
} = learnResult.data;
const {
pages: { edges: apiEdges },
nodeReleases: { nodeReleasesData, apiAvailableVersions },
} = apiResult.data;
const { blogPages, blogPosts, getPaginatedPosts } =
createBlogPages(blogEdges);
const { learnPages, navigationData: learnNavigationData } = createLearnPages(
learnEdges,
learnYamlNavigationData
);
createPage({
path: learnPath,
component: learnTemplate,
context: { ...learnPages[0], navigationData: learnNavigationData },
});
learnPages.forEach(page => {
createPage({
path: page.slug,
component: learnTemplate,
context: { ...page, navigationData: learnNavigationData },
});
});
blogPages.forEach(page => {
createPage({
path: page.slug,
component: postTemplate,
// Get the latest 10 blog posts for the Recent Posts section
context: { ...page, recent: blogPosts.slice(0, 10) },
});
});
// This default category acts as a "hack" for creating the default
// `/blog` page (aka the "Everything" category)
const defaultCategory = { node: { name: null } };
[defaultCategory, ...categoryEdges].forEach(({ node }) => {
const paginatedPosts = getPaginatedPosts(node.name);
const getPaginationData = current => ({
current: current + 1,
total: paginatedPosts.length,
});
const getBlogPagePath = getPaginationPath(blogPath, node.name);
paginatedPosts.forEach((currentPagePosts, index) => {
createPage({
path: getBlogPagePath(index + 1),
component: blogTemplate,
context: {
category: node.name ? node : null,
categories: categoryEdges,
posts: currentPagePosts,
pagination: getPaginationData(index),
},
});
});
});
const {
apiPages,
latestVersion,
navigationData: apiNavigationData,
defaultNavigationRedirects: apiRedirects,
} = createApiPages(apiEdges, apiTypesNavigationData, nodeReleasesData);
apiPages.forEach(page => {
createPage({
path: page.slug,
component: apiTemplate,
context: {
...page,
navigationData: apiNavigationData[page.version],
nodeReleases: { nodeReleasesData, apiAvailableVersions },
},
});
});
const latestApiPath = `${apiPath}${latestVersion}/`;
const apiPathWithLatest = `${apiPath}latest/`;
pageRedirects[apiPath] = `${latestApiPath}documentation/`;
pageRedirects[latestApiPath] = `${latestApiPath}documentation/`;
pageRedirects[apiPathWithLatest] = `${latestApiPath}documentation/`;
apiRedirects.forEach(({ from, to }) => {
pageRedirects[`${apiPath}${from}`] = `${apiPath}${to}`;
// Redirects from the old API URL schema (Nodejs.org)
// To the new URL schema
pageRedirects[`${apiPath}${from.slice(0, -1)}.html`] = `${apiPath}${to}`;
});
const fireBaseRedirects = {};
// Create Redirects for Pages
Object.keys(pageRedirects).forEach(from => {
const metadata = {
fromPath: from,
toPath: pageRedirects[from],
isPermanent: true,
redirectInBrowser: true,
statusCode: 302,
};
fireBaseRedirects[from] = getRedirectForLocale('en', metadata.toPath);
createRedirect({ ...metadata, toPath: fireBaseRedirects[from] });
// Creates Redirects for Locales
nodeLocales.locales.forEach(({ code }) =>
createRedirect({
...metadata,
fromPath: getRedirectForLocale(code, metadata.fromPath),
toPath: getRedirectForLocale(code, metadata.toPath),
})
);
});
// Updates `firebase.json` with new redirects
// This is used for our static hosting redirects (npm run build)
// When using `npm run serve` or `npm run start` this will not be needed
generateRedirects(fireBaseRedirects);
};
exports.onCreatePage = ({ page, actions }) => {
const { createPage, deletePage } = actions;
// Deletes the same page that is created by the createPage action
deletePage(page);
// Recreates the page with the messages that ReactIntl needs
// This will be passed to the ReactIntlProvider Component
// Used within gatsby-browser.js and gatsby-ssr.js
const context = { ...page.context };
const locale = context.locale || nodeLocales.defaultLanguage;
const isLearnPage = context.categoryName === 'learn';
if (isLearnPage) {
const navigationLocale = context.navigationData[locale]
? locale
: nodeLocales.defaultLanguage;
context.navigationData = context.navigationData[navigationLocale];
}
createPage({
...page,
context: {
...context,
intlMessages: getMessagesForLocale(context.locale),
locale,
},
});
};
exports.onCreateNode = ({ node, actions, getNode }) => {
if (node.internal.type === 'Mdx') {
const { createNodeField } = actions;
const { fileAbsolutePath, parent, frontmatter } = node;
const relativePath =
parent && getNode(parent) ? getNode(parent).relativePath : '';
let slug;
if (fileAbsolutePath) {
// Special Handling for Blog Posts
if (fileAbsolutePath.includes(blogPath)) {
const [, year, month, day, filename] =
BLOG_POST_FILENAME_REGEX.exec(relativePath);
slug = blogPath;
if (frontmatter.category) {
slug += `${frontmatter.category}/`;
}
slug += filename;
const date = new Date(year, month - 1, day);
createNodeField({
node,
name: 'date',
value: date.toJSON(),
});
createNodeField({
node,
name: `readingTime`,
value: readingTime(node.internal.content),
});
}
if (frontmatter.category === 'learn') {
// Different type of slug for /learn/ pages
slug = `${learnPath}${createSlug(frontmatter.title)}/`;
}
if (frontmatter.category === 'api') {
// Different type of slug for /api/ pages
slug = `${apiPath}${frontmatter.version}/${frontmatter.title}/`;
}
}
createNodeField({
node,
name: 'slug',
value: slug || createSlug(frontmatter.title),
});
if (frontmatter.authors) {
createNodeField({
node,
name: 'authors',
value: frontmatter.authors.split(','),
});
}
if (frontmatter.category) {
createNodeField({
node,
name: 'categoryName',
value: frontmatter.category,
});
}
}
};
exports.sourceNodes = async ({
reporter: { activityTimer },
actions: { createNode },
createContentDigest,
createNodeId,
}) => {
const [releaseTimer, bannersTimer, nvmTimer] = [
activityTimer('Fetching Node release data'),
activityTimer('Fetching Banners data'),
activityTimer('Fetching latest NVM version data'),
];
await asyncMethods.parallel([
callback => {
bannersTimer.start();
getBannersData().then(bannersData => {
const bannersMeta = {
id: createNodeId('banners'),
parent: null,
children: [],
internal: {
type: 'Banners',
mediaType: 'application/json',
content: safeJSON.toString(bannersData),
contentDigest: createContentDigest(bannersData),
},
};
createNode({ ...bannersData, ...bannersMeta }).then(() => {
bannersTimer.end();
callback();
});
});
},
callback => {
nvmTimer.start();
getNvmData().then(nvmData => {
const nvmMeta = {
id: createNodeId('nvm'),
parent: null,
children: [],
internal: {
type: 'Nvm',
mediaType: 'application/json',
content: safeJSON.toString(nvmData),
contentDigest: createContentDigest(nvmData),
},
};
createNode({ ...nvmData, ...nvmMeta }).then(() => {
nvmTimer.end();
callback();
});
});
},
callback => {
releaseTimer.start();
getNodeReleasesData(nodeReleasesData => {
const nodeReleasesMeta = {
id: createNodeId('node-releases'),
parent: null,
children: [],
internal: {
type: 'NodeReleases',
mediaType: 'application/json',
content: safeJSON.toString(nodeReleasesData),
contentDigest: createContentDigest(nodeReleasesData),
},
};
createNode({ ...nodeReleasesData, ...nodeReleasesMeta }).then(() => {
releaseTimer.end();
callback();
});
});
},
]);
};
exports.onCreateBabelConfig = ({ actions }) => {
actions.setBabelOptions({
options: {
generatorOpts: {
compact: true,
comments: false,
},
},
});
};
exports.onCreateWebpackConfig = ({ plugins, actions, stage, getConfig }) => {
actions.setWebpackConfig({
plugins: [
plugins.ignore({ resourceRegExp: /canvas/, contextRegExp: /jsdom$/ }),
],
});
if (stage === 'develop' || stage === 'build-javascript') {
const config = getConfig();
const miniCssExtractPlugin = config.plugins.find(
plugin => plugin.constructor.name === 'MiniCssExtractPlugin'
);
if (miniCssExtractPlugin) {
// We don't care about the order of CSS imports as we use CSS Modules
miniCssExtractPlugin.options.ignoreOrder = true;
}
actions.replaceWebpackConfig(config);
}
};