-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgatsby-node.js
589 lines (568 loc) · 14.2 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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
const path = require('path')
const { createFilePath } = require('gatsby-source-filesystem')
const {
fetchOEmbedData
} = require('gatsby-remark-embedder/dist/transformers/utils')
const isProd = process.env.NODE_ENV === 'production'
const rdocs = /\/docs\//
const rspaces = /\s+/g
const rspokestackWebsite = /.*?spokestack.io\//
const postsPerPage = 5
function toUrl(url) {
return url.toLowerCase().replace(rspaces, '-')
}
function getTwitterHTML(url) {
/**
* For moments, Twitter oembed doesn't work with urls using 'events', they should
* use 'moments', even though they redirect from 'moments' to 'events' on the browser.
*/
const twitterUrl =
'https://publish.twitter.com/oembed' +
`?url=${url.replace('events', 'moments')}` +
'&dnt=true' +
'&omit_script=true' +
'&hide_thread=true'
return fetchOEmbedData(twitterUrl).then(({ html }) =>
[html]
.map((s) => s.replace(/\?ref_src=twsrc.*?fw/g, ''))
.map((s) => s.replace(/<br>/g, '<br />'))
.join('')
.trim()
)
}
async function getRelated({ graphql, slug, tags }) {
if (!tags) {
return
}
const result = await graphql(`
{
docsExact: allMdx(
sort: { fields: [frontmatter___date], order: DESC }
filter: {
fileAbsolutePath: { regex: "/docs/" }
fields: {
slug: { ne: "${slug}" }
}
frontmatter: {
tags: { eq: "${tags.join(', ')}" }
${isProd ? 'draft: { ne: true }' : ''}
}
}
limit: 3
) {
nodes {
frontmatter {
title
}
fields {
slug
}
}
}
docsWithin: allMdx(
sort: { fields: [frontmatter___tags], order: ASC }
filter: {
fileAbsolutePath: { regex: "/docs/" }
fields: {
slug: { ne: "${slug}" }
tags: { in: ${JSON.stringify(tags)} }
}
frontmatter: {
tags: { ne: "${tags.join(', ')}" }
${isProd ? 'draft: { ne: true },' : ''}
}
}
limit: 3
) {
nodes {
frontmatter {
title
}
fields {
slug
}
}
}
blogExact: allMdx(
sort: { fields: [frontmatter___date], order: DESC }
filter: {
fileAbsolutePath: { regex: "/blog/" }
fields: {
slug: { ne: "${slug}" }
}
frontmatter: {
tags: { eq: "${tags.join(', ')}" }
${isProd ? 'draft: { ne: true }' : ''}
}
}
limit: 3
) {
nodes {
frontmatter {
title
tags
}
fields {
slug
}
}
}
blogWithin: allMdx(
sort: { fields: [frontmatter___tags], order: ASC }
filter: {
fileAbsolutePath: { regex: "/blog/" }
fields: {
slug: { ne: "${slug}" }
tags: { in: ${JSON.stringify(tags)} }
}
frontmatter: {
tags: { ne: "${tags.join(', ')}" }
${isProd ? 'draft: { ne: true },' : ''}
}
}
limit: 3
) {
nodes {
frontmatter {
title
tags
}
fields {
slug
}
}
}
}
`)
if (result.error) {
throw result.error
}
const relatedDocs = result.data.docsExact.nodes
.concat(result.data.docsWithin.nodes)
.slice(0, 3)
.map((node) => ({
title: node.frontmatter.title,
href: node.fields.slug
}))
const blogMatches = result.data.blogExact.nodes.concat(
result.data.blogWithin.nodes
)
const relatedBlog = blogMatches
.filter((node) => node.frontmatter.tags.indexOf('Tutorial') === -1)
.slice(0, 3)
.map((node) => ({
title: node.frontmatter.title,
href: node.fields.slug
}))
const relatedTutorials = blogMatches
.filter((node) => node.frontmatter.tags.indexOf('Tutorial') > -1)
.slice(0, 3)
.map((node) => ({
title: node.frontmatter.title,
href: node.fields.slug
}))
return {
docs: relatedDocs,
blog: relatedBlog,
tutorials: relatedTutorials
}
}
async function createAuthorPages({ author, tags, actions, graphql, reporter }) {
const { createPage } = actions
const result = await graphql(`
{
allMdx(
sort: { fields: [frontmatter___date], order: DESC },
filter: {
fileAbsolutePath: { regex: "/blog/" },
frontmatter: {
author: { eq: "${author}" }
${isProd ? ',draft: { ne: true }' : ''}
}
},
limit: 1000
) {
edges {
node {
fields {
slug
}
}
}
}
}
`)
if (result.errors) {
console.error(result.errors)
reporter.panicOnBuild('Error while running GraphQL query')
return
}
const posts = result.data.allMdx.edges
const numPages = Math.ceil(posts.length / postsPerPage)
const url = `/blog/author/${author}`
return Promise.all(
Array.from({ length: numPages }).map((_, i) =>
createPage({
path: i === 0 ? url : `${url}/${i + 1}`,
component: path.resolve('./src/templates/blog-list-author.tsx'),
context: {
author,
currentPage: i + 1,
dev: !isProd,
limit: postsPerPage,
numPages,
skip: i * postsPerPage,
slug: url,
tags,
total: posts.length
}
})
)
)
}
async function createTagPages({ tag, tags, actions, graphql, reporter }) {
const { createPage } = actions
const result = await graphql(`
{
allMdx(
sort: { fields: [frontmatter___date], order: DESC },
filter: {
fileAbsolutePath: { regex: "/blog/" },
fields: { tags: { in: ["${tag}"] } }
${isProd ? ',frontmatter: { draft: { ne: true } }' : ''}
},
limit: 1000
) {
edges {
node {
fields {
slug
}
}
}
}
}
`)
if (result.errors) {
console.error(result.errors)
reporter.panicOnBuild('Error while running GraphQL query')
return
}
const posts = result.data.allMdx.edges
const numPages = Math.ceil(posts.length / postsPerPage)
const url = tag === 'Tutorial' ? '/tutorials' : `/blog/tag/${toUrl(tag)}`
return Promise.all(
Array.from({ length: numPages }).map((_, i) =>
createPage({
path: i === 0 ? url : `${url}/${i + 1}`,
component: path.resolve('./src/templates/blog-list-tag.tsx'),
context: {
currentPage: i + 1,
dev: !isProd,
limit: postsPerPage,
numPages,
skip: i * postsPerPage,
slug: url,
tag,
tags: tag === 'Tutorial' ? [] : tags,
total: posts.length
}
})
)
)
}
async function createPages({ actions, graphql, posts, reporter, template }) {
const { createPage } = actions
for (let index = 0; index < posts.length; index++) {
const post = posts[index]
const previous = index === posts.length - 1 ? null : posts[index + 1].node
const next = index === 0 ? null : posts[index - 1].node
const fields = post.node.fields
const slug = fields.slug
const context = {
next,
previous,
slug
}
// Add related tags
const related = await getRelated({
graphql,
slug,
tags: fields.tags
})
if (related) {
context.related = related
}
reporter.info(`Creating page at slug "${slug}"`)
await createPage({
path: slug,
component: template,
context
})
}
}
async function verifyHeros(graphql, reporter) {
const result = await graphql(`
{
heros: allMdx(
filter: {
fileAbsolutePath: { regex: "/blog/" }
frontmatter: { hero: { publicURL: { eq: null } } }
}
) {
edges {
node {
fileAbsolutePath
frontmatter {
title
}
}
}
}
seos: allMdx(
filter: {
fileAbsolutePath: { regex: "/docs/" }
frontmatter: { seoImage: { publicURL: { eq: null } } }
}
) {
edges {
node {
fileAbsolutePath
frontmatter {
title
}
}
}
}
}
`)
if (result.errors) {
console.error(result.errors)
reporter.panicOnBuild('Error while running GraphQL query')
return
}
if (result.data.heros.edges.length) {
result.data.heros.edges.forEach((edge) => {
console.warn(
`Blog post with title "${edge.node.frontmatter.title}" at path ${edge.node.fileAbsolutePath} does not have a hero image set in frontmatter`
)
})
}
if (result.data.seos.edges.length) {
result.data.seos.edges.forEach((edge) => {
console.warn(
`Docs page with title "${edge.node.frontmatter.title}" at path ${edge.node.fileAbsolutePath} does not have an seoImage set in frontmatter`
)
})
}
}
exports.createPages = async ({ graphql, actions, reporter }) => {
await verifyHeros(graphql, reporter)
const result = await graphql(`
{
site {
siteMetadata {
team {
key
}
redirects {
from
to
}
}
}
blog: allMdx(
sort: { fields: [frontmatter___date], order: DESC },
filter: {
fileAbsolutePath: { regex: "/blog/" }
${isProd ? ',frontmatter: { draft: { ne: true } }' : ''}
},
limit: 1000
) {
edges {
node {
fields {
slug
oldSlug
tags
}
}
}
}
docs: allMdx(
filter: {
fileAbsolutePath: { regex: "/docs/" }
${isProd ? ',frontmatter: { draft: { ne: true } }' : ''}
},
limit: 1000
) {
edges {
node {
fields {
slug
oldSlug
tags
}
}
}
}
tags: allMdx(
filter: {
fileAbsolutePath: { regex: "/blog/" }
fields: { tags: { ne: null } }
${isProd ? ',frontmatter: { draft: { ne: true } }' : ''}
}
) {
edges {
node {
fields {
tags
}
}
}
}
}
`)
if (result.errors) {
console.error(result.errors)
reporter.panicOnBuild('Error while running GraphQL query')
return
}
// Add tag filter pages
const tags = result.data.tags.edges.reduce((acc, current) => {
current.node.fields.tags.forEach((tag) => {
if (tag && acc.indexOf(tag) === -1) {
acc.push(tag)
}
})
return acc
}, [])
await Promise.all(
tags.map((tag) =>
createTagPages({
tag,
tags,
actions,
graphql,
reporter
})
)
)
// Add author pages
const authors = result.data.site.siteMetadata.team.map((member) => member.key)
await Promise.all(
authors.map((author) =>
createAuthorPages({
author,
tags,
actions,
graphql,
reporter
})
)
)
// Add blog list pages
const { createPage } = actions
const posts = result.data.blog.edges
const numPages = Math.ceil(posts.length / postsPerPage)
const url = '/blog'
await Promise.all(
Array.from({ length: numPages }).map((_, i) =>
createPage({
path: i === 0 ? url : `${url}/${i + 1}`,
component: path.resolve('./src/templates/blog-list.tsx'),
context: {
currentPage: i + 1,
dev: !isProd,
limit: postsPerPage,
numPages,
skip: i * postsPerPage,
slug: url,
tags,
total: posts.length
}
})
)
)
// Add blog post pages
await createPages({
actions,
graphql,
posts: result.data.blog.edges,
reporter,
template: path.resolve('./src/templates/blog-post.tsx')
})
// Add docs pages
await createPages({
actions,
graphql,
posts: result.data.docs.edges,
reporter,
template: path.resolve('./src/templates/docs-page.tsx')
})
// Add redirects from siteMetadata.redirects
const redirects = result.data.site.siteMetadata.redirects
return Promise.all(
redirects.map((redirect) =>
createPage({
path: redirect.from,
component: path.resolve('./src/templates/redirect-only.tsx'),
context: {
slug: redirect.to
}
})
)
)
}
exports.onCreateNode = async ({ node, actions, getNode }) => {
const { createNodeField } = actions
// Retrieve embeddable HTML for tweets from the Spokestack timeline
if (node.internal.type === 'twitterStatusesUserTimelineSpokestack') {
const url = `https://www.twitter.com/spokestack/status/${node.id_str}`
const html = await getTwitterHTML(url)
createNodeField({
name: 'html',
node,
value: html
})
}
// Add custom fields for docs and blog contexts
if (node.internal.type === 'Mdx') {
const isDocsPage = rdocs.test(node.fileAbsolutePath)
const folder = path.basename(path.dirname(node.fileAbsolutePath))
const filepath = createFilePath({ node, getNode, trailingSlash: false })
const oldSlug = `/${isDocsPage ? 'docs' : 'blog'}${filepath}`
const slug = `/${isDocsPage ? 'docs' : 'blog'}${toUrl(filepath)}`
createNodeField({
name: 'slug',
node,
value: slug
})
createNodeField({
name: 'oldSlug',
node,
value: oldSlug
})
createNodeField({
name: 'folder',
node,
value: folder !== 'docs' && folder !== 'blog' ? folder : null
})
if (node.frontmatter.tags) {
const tags = node.frontmatter.tags.split(/,\s*/)
createNodeField({
name: 'tags',
node,
value: tags
})
}
if (isDocsPage) {
const path = node.fileAbsolutePath.replace(rspokestackWebsite, '')
createNodeField({
name: 'githubLink',
node,
value: `https://github.com/spokestack/spokestack.io/tree/develop/${path}`
})
}
}
}