-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgatsby-node.js
358 lines (336 loc) · 9.59 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
const fs = require(`fs`)
const path = require("path")
const { createFilePath } = require(`gatsby-source-filesystem`)
// Quick-and-dirty helper to convert strings into URL-friendly slugs.
const slugify = str => {
const slug = str
.toLowerCase()
.replace(/[^a-z0-9]+/g, "-")
.replace(/(^-|-\$)+/g, "")
return slug
}
// helper that grabs the mdx resolver when given a string fieldname
const mdxResolverPassthrough = fieldName => async (
source,
args,
context,
info
) => {
const type = info.schema.getType(`Mdx`)
const mdxNode = context.nodeModel.getNodeById({
id: source.parent,
})
const resolver = type.getFields()[fieldName].resolve
const result = await resolver(mdxNode, args, context, {
fieldName,
})
return result
}
// Make sure the content directory exists
exports.onPreBootstrap = ({ reporter }, options) => {
const contentPath = options.contentPath || "content"
if (!fs.existsSync(contentPath)) {
reporter.info(`creating the ${contentPath} directory`)
fs.mkdirSync(contentPath)
}
}
exports.createSchemaCustomization = ({ actions, schema }) => {
const { createTypes } = actions
const { buildObjectType } = schema
const typeDefs = `
interface Author @nodeInterface {
id: ID!
name: String!
twitter: String!
}
type AuthorsJson implements Node & Author {
id: ID!
name: String!
twitter: String!
}
type AuthorsYaml implements Node & Author {
id: ID!
name: String!
twitter: String!
}
type Tag implements Node {
id: ID!
name: String!
slug: String!
}
interface BlogPost @nodeInterface {
id: ID!
date: Date! @dateformat
slug: String!
tags: [Tag]
author: Author
title: String!
body: String!
}
`
const MdxBlogPost = buildObjectType({
// the source in resolvers is the MdxBlogPost node
name: "MdxBlogPost",
interfaces: ["Node", "BlogPost"],
fields: {
id: "ID!",
slug: {
type: "String!",
resolve: (source, args, context, info) => {
// any other way to accomplish this?
// This feels like running around the block to arrive nextdoor
const mdxNode = context.nodeModel.getNodeById({
id: source.parent,
})
const fileNode = context.nodeModel.getNodeById({ id: mdxNode.parent })
return fileNode.relativeDirectory
},
},
title: {
type: "String!",
resolve: (source, args, context, info) => {
const parent = context.nodeModel.getNodeById({ id: source.parent })
return parent.frontmatter.title
},
},
date: {
type: "Date!",
extensions: {
dateformat: {},
},
resolve: (source, args, context, info) => {
const parent = context.nodeModel.getNodeById({ id: source.parent })
return parent.frontmatter.date
},
},
canonicalUrl: {
type: "String",
resolve: (source, args, context, info) => {
const parent = context.nodeModel.getNodeById({ id: source.parent })
return parent.frontmatter.canonicalUrl
},
},
tags: {
type: "[Tag]",
extensions: {
link: { by: "name" },
},
resolve: (source, args, context, info) => {
const parent = context.nodeModel.getNodeById({ id: source.parent })
// return flat array of tags, works because of the link(by:"name") extension
return parent.frontmatter.tags
},
},
author: {
type: "Author",
extensions: {
link: { by: "name" },
},
resolve: (source, args, context, info) => {
const parent = context.nodeModel.getNodeById({ id: source.parent })
// return plain author string, works because of the link(by:"name") extension
return parent.frontmatter.author
},
},
keywords: {
type: "[String]",
resolve: (source, args, context, info) => {
const parent = context.nodeModel.getNodeById({ id: source.parent })
return parent.frontmatter.keywords || []
},
},
excerpt: {
type: "String!",
args: {
pruneLength: {
type: "Int",
defaultValue: 140,
},
},
resolve: mdxResolverPassthrough(`excerpt`),
},
body: {
type: "String!",
resolve: mdxResolverPassthrough(`body`),
},
cover: {
type: "File",
extensions: {
fileByRelativePath: {},
},
resolve: (source, args, context, info) => {
const parent = context.nodeModel.getNodeById({ id: source.parent })
return parent.frontmatter.cover
},
},
timeToRead: {
type: "Int",
resolve: mdxResolverPassthrough(`timeToRead`),
},
tableOfContents: {
type: "JSON",
args: {
maxDepth: { type: "Int", defaultValue: 6 },
},
resolve: mdxResolverPassthrough(`tableOfContents`),
},
},
})
// SDL or graphql-js as argument(s) to createTypes!
createTypes([typeDefs, MdxBlogPost])
}
exports.onCreateNode = ({ node, actions, getNode, createNodeId }, options) => {
const { createNode, createParentChildLink } = actions
const contentPath = options.contentPath || "content"
// Create MdxBlogPost nodes from Mdx nodes
if (node.internal.type === `Mdx`) {
const parent = getNode(node.parent) // get the File node
const source = parent.sourceInstanceName // get folder name those files are in
// only create MdxBlogPost nodes for .mdx files in the correct folder
if (source === contentPath) {
// duplicate (kinda) slug logic from the slug resolver
let slug = createFilePath({ node, getNode, trailingSlash: false })
if (slug.startsWith("/")) {
slug = slug.slice(1)
}
const fieldData = {
// leaving tags array here to transform entries into Tag types later
tags: node.frontmatter.tags || [],
// leaving slug here because I want to be able to filter BlogPosts based on it
slug,
}
const proxyNode = {
...fieldData,
id: createNodeId(`${node.id} >>> MdxBlogPost`),
parent: node.id,
children: [],
internal: {
type: `MdxBlogPost`,
contentDigest: node.internal.contentDigest,
content: JSON.stringify(fieldData),
description: `MdxBlogPost node`,
},
}
createNode(proxyNode)
createParentChildLink({ parent: node, child: proxyNode })
}
}
// Create Tag nodes from MdxBlogPost nodes
if (node.internal.type === `MdxBlogPost`) {
// creating a Tag node for every entry in an MdxBlogPost tag array
node.tags.forEach((tag, i) => {
const fieldData = {
name: tag,
slug: slugify(tag),
}
const proxyNode = {
...fieldData,
id: createNodeId(`${node.id}${i} >>> Tag`),
parent: node.id,
children: [],
internal: {
type: `Tag`,
contentDigest: node.internal.contentDigest,
content: JSON.stringify(fieldData),
description: `Tag node`,
},
}
createNode(proxyNode)
createParentChildLink({ parent: node, child: proxyNode })
})
}
}
exports.createPages = async ({ actions, graphql, reporter }, options) => {
const basePath = options.basePath || ""
const result = await graphql(`
query createPagesQuery {
allBlogPost(sort: { fields: date, order: DESC }) {
edges {
node {
slug
}
}
}
allTag {
distinct(field: slug)
}
}
`)
if (result.errors) {
reporter.panic("error loading data from graphql", result.error)
return
}
const { allBlogPost, allTag } = result.data
const posts = allBlogPost.edges
// create a page for each blogPost
posts.forEach(({ node: post }, i) => {
const next = i === 0 ? null : posts[i - 1].node
const prev = i === posts.length - 1 ? null : posts[i + 1].node
const { slug } = post
actions.createPage({
path: path.join(basePath, slug),
component: require.resolve("./src/templates/blog-post.js"),
context: {
slug,
prev,
next,
basePath,
},
})
})
// create (paginated) blog-list page(s)
let numPages
let postsPerPage
let prefixPath
if (options.pagination) {
prefixPath = options.pagination.prefixPath || ""
postsPerPage = options.pagination.postsPerPage || 6
numPages = Math.ceil(posts.length / postsPerPage)
} else {
prefixPath = ""
numPages = 1
}
Array.from({
length: numPages,
}).forEach((_, index) => {
const paginationContext = options.pagination
? {
limit: postsPerPage,
skip: index * postsPerPage,
numPages,
currentPage: index + 1,
prefixPath,
}
: {}
actions.createPage({
path:
index === 0
? `${basePath || "/"}`
: path.join(basePath, prefixPath, `${index + 1}`),
component: require.resolve("./src/templates/blog-posts.js"),
context: {
...paginationContext,
basePath,
},
})
})
// create tag-list page
actions.createPage({
path: path.join(basePath, "tag"),
component: require.resolve("./src/templates/tags.js"),
context: {
basePath,
},
})
// create a page for each tag
allTag.distinct.forEach(tagSlug => {
actions.createPage({
path: path.join(basePath, "tag", tagSlug),
component: require.resolve("./src/templates/tag.js"),
context: {
slug: tagSlug,
basePath,
},
})
})
}