-
Notifications
You must be signed in to change notification settings - Fork 5
/
gatsby-node.js
377 lines (322 loc) · 9.55 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
/*eslint-env node */
/*eslint-env es6 */
const path = require('path')
const nubookBibliography = require('./build-plugins/gatsby-transformer-nubook-bibliography/transformer.js')
const nubookContributionsPlugin = require('./build-plugins/gatsby-transformer-nubook-contributions')
const menu = []
const createdPages = new Set()
/**
* Entry point for NUbook-specific GraphQL data extension and customisation.
*/
exports.onCreateNode = async (
{ node, ...otherFirstParams },
...otherParams
) => {
// Use the custom gatsby-transformer-nubook-contributions plugin to add
// NUbook contribution data (authors and last commit) to MDX page nodes
if (node.internal.type === `Mdx`) {
await nubookContributionsPlugin.onCreateNode(
{ node, ...otherFirstParams },
...otherParams
)
}
// Create a bibliography node for each .bib file
else if (node.ext === `.bib`) {
await nubookBibliography.createBibNode(
{ node, ...otherFirstParams },
...otherParams
)
}
}
/**
* Create the site pages from MDX files in /src/book
*/
exports.createPages = async ({ graphql, actions, reporter }) => {
// Get the MDX pages sorted by file path (this is why we have the numeric prefixes)
const mdxResults = await graphql(`
query {
allMdx(sort: { fields: fileAbsolutePath }) {
edges {
node {
id
fileAbsolutePath
frontmatter {
section
chapter
title
slug
references
hidden
}
}
next {
frontmatter {
chapter
title
description
slug
hidden
}
}
previous {
frontmatter {
chapter
title
description
slug
hidden
}
}
}
}
}
`)
// Panic and abort on query error
if (mdxResults.errors) {
reporter.panicOnBuild(
'🚨 ERROR: Loading "createPages" query for all MDX files'
)
}
// Get the Bibtex bibliographies, a map where the keys are MDX file paths
// (relative to src/book), and the values are the bibliography content
const allBibliographies = await getAllBibliographies(graphql, reporter)
// Get all MDX files
const posts = mdxResults.data.allMdx.edges
// Populate the menu
posts
.filter(({ node }) => {
return !createdPages.has(node.fileAbsolutePath)
})
.forEach(({ node }) => {
const section = findOrCreateSection(menu, node)
const chapter = findOrCreateChapter(section, node)
chapter.pages.push({
title: node.frontmatter.title,
slug: node.frontmatter.slug,
hidden: node.frontmatter.hidden,
})
})
// Hide sections and chapters in the menu if all their content is hidden
menu.forEach((section) => {
section.chapters.forEach((chapter) => {
chapter.hidden = chapter.pages.every((page) => page.hidden)
})
section.hidden = section.chapters.every((chapter) => chapter.hidden)
})
const templatePath = path.resolve('./src/components/page-template.jsx')
// Create a page for each MDX file
posts.forEach(({ node, next, previous }, index) => {
const nextPage = getNext(next, posts, index)
const previousPage = getPrevious(previous, posts, index)
const bibliography = getBibliographyForPage(allBibliographies, node)
actions.createPage({
path: node.frontmatter.slug,
component: templatePath,
context: {
mdxPath: path
.relative(__dirname, node.fileAbsolutePath)
.split(path.sep)
.join(path.posix.sep),
id: node.id,
next: nextPage ? nextPage.frontmatter : null,
previous: previousPage ? previousPage.frontmatter : null,
menu,
references: bibliography,
hidden: node.frontmatter.hidden,
},
})
createdPages.add(node.fileAbsolutePath)
})
}
/**
* Pass the menu through context to the landing page.
*/
exports.onCreatePage = ({ page, actions }) => {
if (page.path === '/') {
const { createPage, deletePage } = actions
// Delete the Gatsby-generated landing page
deletePage(page)
// Create a replacement page with the menu
createPage({
...page,
context: {
...page.context,
menu,
},
})
}
}
/**
*
* Get the Bibtex bibliography for all pages in NUbook. Returns a map where the
* keys are MDX file paths (relative to src/book), and the values are the
* bibliographies for the file, created in the custom plugin
* `gatsby-transformer-nubook-bibliography`.
*/
async function getAllBibliographies(graphql, reporter) {
// Get all the NUbookBibliography nodes via GraphQL: these are created in
// `gatsby-transformer-nubook-bibliography` and registered with Gatsby
// in `gatsby-node.js`
const bibResults = await graphql(`
query {
allNUbookBibliography {
nodes {
bibFileRelativePath
bibliography {
id
title
citation
reference
}
}
}
}
`)
// Panic and abort on query error
if (bibResults.errors) {
reporter.panicOnBuild(
'🚨 ERROR: Loading query for all NUbookBibliography nodes'
)
return {}
}
// Create the map of bibliography files in Nubook: each key is the path
// to the bib file, and each value is the parsed bibliography content
const allBibliographies = {}
for (const bibNode of bibResults.data.allNUbookBibliography.nodes) {
// Convert the list of bibliography entries into a map where the keys are
// the reference ids, and the values are the bibliography content
const bibliographyMap = {}
for (const bibliography of bibNode.bibliography) {
bibliographyMap[bibliography.id] = bibliography
}
allBibliographies[bibNode.bibFileRelativePath] = bibliographyMap
}
return allBibliographies
}
/**
* Get the bibliography data for the given MDX page node from the
* given map containing the bibliographies of all pages in NUbook.
*/
function getBibliographyForPage(allBibliographies, pageNode) {
// Compute the path to this page's bibliography.bib file
// (relative to the `src/book` directory)
const basename = path
.basename(pageNode.fileAbsolutePath)
.replace(path.extname(pageNode.fileAbsolutePath), '')
const bibFilePath = path.posix.join(
path.dirname(pageNode.fileAbsolutePath),
pageNode.frontmatter.references ?? `${basename}.bib`
)
const [, bibFileRelative] = bibFilePath.split('src/book/')
return allBibliographies[bibFileRelative] ?? null
}
/**
* Get the section in the given menu that the given node belongs to,
* or create a new section if not found.
*/
function findOrCreateSection(menu, node) {
const section = menu.find(
(section) => section.title === node.frontmatter.section
)
if (section) {
return section
}
const newSection = {
title: node.frontmatter.section,
slug: node.frontmatter.slug,
chapters: [],
}
menu.push(newSection)
return newSection
}
/**
* Get the chapter in the given section that the given node belongs to,
* or create a new chapter if not found.
*/
function findOrCreateChapter(section, node) {
const chapter = section.chapters.find(
(chapter) => chapter.title === node.frontmatter.chapter
)
if (chapter) {
return chapter
}
const newChapter = {
title: node.frontmatter.chapter,
slug: node.frontmatter.slug,
pages: [],
}
section.chapters.push(newChapter)
return newChapter
}
/**
* Get the next node, skipping any nodes in the chain that are hidden
*/
function getNext(nextNode, posts, index) {
if (!nextNode) {
return null
}
if (!nextNode.frontmatter.hidden) {
return nextNode
}
const next = posts[index + 1]
if (!next) {
return null
}
return getNext(next.node, posts, index + 1)
}
/**
* Get the previous node, skipping any nodes in the chain that are hidden
*/
function getPrevious(previousNode, posts, index) {
if (!previousNode) {
return null
}
if (!previousNode.frontmatter.hidden) {
return previousNode
}
const previous = posts[index - 1]
if (!previous) {
return null
}
return getPrevious(previous.node, posts, index - 1)
}
/**
* Customise the webpack config.
*/
exports.onCreateWebpackConfig = ({ stage, actions, getConfig, plugins }) => {
disableMiniCssExtractPluginOrder({ stage, actions, getConfig, plugins })
}
/**
* Replace MiniCssExtractPlugin with a new instance that has the `ignoreOrder`
* option set. With Tailwind and CSS modules, we have non-colliding and
* namespaced class names across files respectively. That means we can
* safely ignore the order warnings from MiniCssExtractPlugin.
* See https://webpack.js.org/plugins/mini-css-extract-plugin/#remove-order-warnings
*/
function disableMiniCssExtractPluginOrder({
stage,
actions,
getConfig,
plugins,
}) {
const config = getConfig()
const miniCssExtractPluginIndex = config.plugins.findIndex(
(plugin) => plugin.constructor.name === 'MiniCssExtractPlugin'
)
if (miniCssExtractPluginIndex > -1) {
if (stage === 'build-javascript') {
config.plugins[miniCssExtractPluginIndex] = plugins.extractText({
filename: `[name].[contenthash].css`,
chunkFilename: `[name].[contenthash].css`,
ignoreOrder: true,
})
} else {
config.plugins[miniCssExtractPluginIndex] = plugins.extractText({
filename: `[name].css`,
chunkFilename: `[id].css`,
ignoreOrder: true,
})
}
}
actions.replaceWebpackConfig(config)
}