-
Notifications
You must be signed in to change notification settings - Fork 95
/
gatsby-node.js
executable file
·417 lines (370 loc) · 9.92 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
const path = require(`path`);
const fs = require('fs');
const { createFilePath } = require(`gatsby-source-filesystem`);
const { examplePath, referencePath } = require('./src/utils/paths');
exports.onCreateWebpackConfig = ({ stage, loaders, actions }) => {
if (stage === 'build-html' || stage === 'develop-html') {
actions.setWebpackConfig({
module: {
rules: [
{
test: /p5\.min\.js/,
use: loaders.null()
}
]
}
});
}
};
exports.onCreateNode = ({ node, actions, getNode, loadNodeContent }) => {
const { createNodeField } = actions;
// Handle locale naming convention in .json and .pde files
if (
node.internal.type === 'File' &&
(node.internal.mediaType === `application/json` ||
node.internal.mediaType === `text/x-processing`)
) {
const nameSplit = node.name.split('.');
const name = nameSplit[0];
const lang = nameSplit[1] ? nameSplit[1] : 'en';
createNodeField({
name: `name`,
value: name,
node
});
createNodeField({
name: `lang`,
value: lang,
node
});
}
// Assign library to reference nodes
if (node.sourceInstanceName === 'reference') {
createNodeField({
name: `lib`,
value: node.relativeDirectory.split('/')[1],
node
});
}
};
exports.createPages = async ({ actions, graphql, reporter }) => {
await Promise.all([
createReference(actions, graphql),
createExamples(actions, graphql),
createTutorials(actions, graphql),
createDownloadAndReleases(actions, graphql)
]);
};
async function createReference(actions, graphql) {
const functionTemplate = path.resolve(
`./src/templates/reference/function.js`
);
const classRefTemplate = path.resolve(`./src/templates/reference/class.js`);
const fieldRefTemplate = path.resolve(`./src/templates/reference/field.js`);
const indexLibTemplate = path.resolve(
`./src/templates/reference/libraries/library.js`
);
const refTemplates = {
function: functionTemplate,
method: functionTemplate,
class: classRefTemplate,
field: fieldRefTemplate,
other: fieldRefTemplate
};
const { createPage } = actions;
// Load reference .json files
// Since the gatsby-theme-i18n automatically creates pages for each locale,
// we only load the english pages here. The template takes care of the rest.
const result = await graphql(
`
{
json: allFile(
filter: {
sourceInstanceName: { eq: "reference" }
extension: { eq: "json" }
fields: { lang: { eq: "en" } }
}
) {
nodes {
name
relativeDirectory
childJson {
type
classanchor
}
}
}
}
`
);
const inUse = await graphql(
`
{
allFile(
filter: {
sourceInstanceName: { eq: "examples" }
fields: { lang: { eq: "en" } }
}
) {
edges {
node {
name
childJson {
featured
}
}
}
}
}
`
);
if (result.errors) {
throw result.errors;
}
if (inUse.errors) {
throw inUse.errors;
}
// Create reference pages.
const refPages = result.data.json.nodes;
refPages.forEach((refPage, index) => {
const [name] = refPage.name.split('.');
const [lang, libraryName] = refPage.relativeDirectory.split('/');
const refPath = referencePath(name, libraryName);
const relDir = libraryName + '/' + name;
const { type, classanchor } = refPage.childJson;
const inUseExamples = inUse.data.allFile.edges
.filter((n) => {
if (
n.childJson !== undefined &&
n.childJson !== null &&
n.childJson.featured !== null &&
n.childJson.featured.includes(refPage.name)
)
return n.name;
})
.map((e) => e.name);
const context = {
name,
relDir,
libraryName,
inUseExamples: inUseExamples,
hasClassanchor: false
};
// Used to load category and subcategory from class parent for breadcrumbs
if (type === 'method' || type === 'field') {
context.hasClassanchor = true;
context.classanchor = classanchor;
}
if (refTemplates[type]) {
createPage({
path: refPath,
component: refTemplates[type],
context
});
} else {
console.error('No template for reference type', type);
}
});
const dirResult = await graphql(
`
{
allMdx(filter: { frontmatter: { library: { eq: "true" } } }) {
nodes {
frontmatter {
name
}
}
}
}
`
);
if (dirResult.errors) {
throw dirResult.errors;
}
// Create library index pages
const dirPages = dirResult.data.allMdx.nodes;
dirPages.forEach((dirPage, index) => {
createPage({
path: '/reference/libraries/' + dirPage.frontmatter.name + '/index.html',
component: indexLibTemplate,
context: {
libraryName: dirPage.frontmatter.name
}
});
});
createPage({
path: '/reference/libraries/',
component: path.resolve(`./src/templates/reference/libraries/index.js`)
});
createPage({
path: '/reference/tools/',
component: path.resolve(`./src/templates/reference/tools.js`)
});
}
async function createTutorials(actions, graphql) {
const tutorialTemplate = path.resolve(
`./src/templates/tutorials/tutorial.js`
);
const { createPage } = actions;
const tutorialResult = await graphql(
`
{
allFile(filter: { sourceInstanceName: { eq: "tutorials" } }) {
nodes {
relativeDirectory
childMdx {
frontmatter {
slug
}
}
}
}
}
`
);
if (tutorialResult.errors) {
throw tutorialResult.errors;
}
const tutorials = tutorialResult.data.allFile.nodes;
tutorials.forEach((tutorial, index) => {
const [tutorialType] = tutorial.relativeDirectory.split('/');
if (tutorial.childMdx && tutorialType === 'text') {
createPage({
path: tutorial.childMdx.frontmatter.slug,
component: tutorialTemplate,
context: {
slug: tutorial.childMdx.frontmatter.slug
}
});
}
});
}
/**
Generate /examples pages
**/
async function createExamples(actions, graphql) {
const exampleTemplate = path.resolve(`./src/templates/examples/example.js`);
const { createPage } = actions;
// Load example .json files
// Since the gatsby-theme-i18n automatically creates pages for each locale,
// we only load the english pages here. The template takes care of the rest.
const result = await graphql(
`
{
json: allFile(
filter: {
sourceInstanceName: { eq: "examples" }
fields: { lang: { eq: "en" } }
extension: { eq: "json" }
relativeDirectory: { regex: "/^((?!data).)*$/" }
}
) {
nodes {
name
relativeDirectory
childJson {
type
}
}
}
}
`
);
if (result.errors) {
throw result.errors;
}
const examples = result.data.json.nodes;
// Extract the data needed to create the page
const parsedExamples = examples.map((node) => {
const splitDir = node.relativeDirectory.split('/');
return {
name: node.name,
slug: examplePath(node.name),
relDir: node.relativeDirectory,
category: splitDir[0],
subcategory: splitDir[1]
};
});
parsedExamples.forEach((example, index) => {
// Find related examples in the same sub category
// We pass the names of these to the template, so we don't need
// to load and filter all images on the frontend.
const related = parsedExamples
.filter((info) => {
return (
info.subcategory === example.subcategory && info.name !== example.name
);
})
.map((info) => info.name);
// Create the page. Again, this is only for the english pages, since
// the i18n theme will take care of generating the others.
createPage({
path: example.slug,
component: exampleTemplate,
context: {
slug: example.slug,
name: example.name,
subcategory: example.subcategory,
relDir: example.relDir,
related
}
});
});
}
/**
Create the download page programmatically since we need access to the selected
releases in the pageQuery, thus we need to pass through pageContext.
**/
async function createDownloadAndReleases(actions, graphql) {
const downloadTemplate = path.resolve(`./src/templates/download.js`);
const releasesTemplate = path.resolve(`./src/templates/releases.js`);
const { createPage } = actions;
const result = await graphql(
`
{
json: file(
sourceInstanceName: { eq: "download" }
relativePath: { eq: "selected.json" }
) {
childJson {
selectedReleases
selectedPreReleases
}
}
}
`
);
if (result.errors) {
throw result.errors;
}
const { selectedReleases, selectedPreReleases } = result.data.json.childJson;
createPage({
path: '/download',
component: downloadTemplate,
context: {
selectedReleases,
selectedPreReleases
}
});
createPage({
path: '/releases',
component: releasesTemplate,
context: {
selectedReleases,
selectedPreReleases
}
});
}
/**
Create the latest.txt file when the site builds.
This only happens on build, not on dev.
**/
exports.onPostBuild = () => {
const releases = require('./content/download/selected.json');
const latest = releases.selectedReleases[0];
const [name, number, version] = latest.split('-');
fs.writeFileSync(
path.join(__dirname, 'public', 'download', 'latest.txt'),
number
);
};