-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
247 lines (222 loc) · 6.41 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
const path = require(`path`)
const { GraphQLBoolean } = require("gatsby/graphql")
exports.setFieldsOnGraphQLNodeType = ({ type }) => {
// if the node is a markdown file, add the `published` field
if ("MarkdownRemark" === type.name) {
return {
published: {
type: GraphQLBoolean,
resolve: ({ frontmatter }) => {
/*
`published` is always true in development
so both drafts and finished posts are built
*/
if (process.env.NODE_ENV !== "production") {
return true
}
/*
return the opposite of the `draft` value,
i.e. if draft = true : published = false
*/
return !frontmatter.draft
},
},
}
}
return {}
}
exports.onCreateNode = ({
node,
actions,
createNodeId,
createContentDigest,
}) => {
const { createNode, createNodeField, createParentChildLink } = actions
// Check for the correct type to only affect this
if (node.internal.type === `PagesJson`) {
// transform markdown in blocks[i].content
if (node.blocks) {
const markdownHost = {
id: createNodeId(`${node.id} markdown host`),
parent: node.id,
internal: {
contentDigest: createContentDigest(JSON.stringify(node.blocks)),
type: `${node.internal.type}MarkdownData`,
},
}
createNode(markdownHost)
createNodeField({
node,
name: `markdownContent___NODE`, // Before the ___NODE: Name of the new fields
value: markdownHost.id, // Connects both nodes
})
node.blocks.forEach((block, i) => {
if (!block.content) {
block.content = ""
}
const blockNode = {
id: `${node.id} block ${i} markdown`,
parent: markdownHost.id,
internal: {
content: block.content,
contentDigest: createContentDigest(block.content),
type: `${node.internal.type}BlockMarkdown`,
mediaType: "text/markdown",
},
}
createNode(blockNode)
createParentChildLink({ parent: node, child: blockNode })
})
}
// transform markdown in node.content
if (node.content) {
const textNode = {
id: createNodeId(`${node.id} markdown field`),
children: [],
parent: node.id,
internal: {
content: node.content,
mediaType: `text/markdown`, // Important!
contentDigest: createContentDigest(node.content),
type: `${node.internal.type}Markdown`,
},
}
createNode(textNode)
// Add link to the new node
createNodeField({
node,
name: `markdownContent___NODE`, // Before the ___NODE: Name of the new fields
value: textNode.id, // Connects both nodes
})
}
}
}
exports.createPages = async ({ actions, graphql, reporter }) => {
const { createPage } = actions
const result = await graphql(`
{
pages: allPagesJson(
filter: { path: { ne: null }, listType: { eq: null } }
) {
edges {
node {
path
}
}
}
lists: allPagesJson(
filter: { path: { ne: null }, listType: { ne: null } }
) {
edges {
node {
path
listType
}
}
}
posts: allMarkdownRemark(
filter: { frontmatter: { path: { ne: null } } }
) {
edges {
node {
published
frontmatter {
path
type
tags
}
}
}
}
tags: settingsJson(
fileRelativePath: { eq: "/content/settings/tags.json" }
) {
tags {
id
text
}
}
}
`)
if (result.errors) {
reporter.panicOnBuild(`Error while running GraphQL query.`)
return
}
result.data.pages.edges.forEach(({ node }) => {
createPage({
path: node.path,
component: path.resolve(`src/templates/page.js`),
context: {},
})
})
result.data.posts.edges.forEach(({ node }) => {
if (!node.published) return
createPage({
path: node.frontmatter.path,
component: path.resolve(`src/templates/post.js`),
context: {},
})
})
result.data.lists.edges.forEach(({ node }) => {
const listPageTemplate = path.resolve(`src/templates/list.js`)
const listType = node.listType
const allPosts = result.data.posts.edges
const posts = allPosts.filter(
(post) => post.node.frontmatter.type === listType
)
const postsPerPage = 5
const numPages = Math.max(Math.ceil(posts.length / postsPerPage), 1)
const slug = node.path
Array.from({ length: numPages }).forEach((_, i) => {
const currentPage = i + 1
const isFirstPage = i === 0
createPage({
path: isFirstPage
? node.path
: `${String(node.path)}/${String(currentPage)}`,
component: listPageTemplate,
context: {
listType: listType,
slug: slug,
limit: postsPerPage,
skip: i * postsPerPage,
numPages: numPages,
currentPage: currentPage,
},
})
})
})
// Create a list page at blog/tag/tag-text for each tag
result.data.tags.tags.forEach(({id, text}) => {
const tagListTemplate = path.resolve(`src/templates/tagList.js`)
// Filter down to posts that include this tag
const allPosts = result.data.posts.edges
const posts = allPosts.filter(
(post) => Array.isArray(post.node.frontmatter.tags) && post.node.frontmatter.tags.includes(id)
)
const postsPerPage = 5
const numPages = Math.max(Math.ceil(posts.length / postsPerPage), 1)
const slug = text.toLowerCase().replace(" ", "-") // TODO: Need more complex conversion from tag text to a URI slug.
const pagePath = `blog/tag/${slug}`
Array.from({ length: numPages }).forEach((_, i) => {
const currentPage = i + 1
const isFirstPage = i === 0
createPage({
path: isFirstPage
? pagePath
: `${pagePath}/${String(currentPage)}`,
component: tagListTemplate,
context: {
listType: 'post',
slug: '/blog/tag', // The slug for the underlying page.
limit: postsPerPage,
skip: i * postsPerPage,
numPages: numPages,
currentPage: currentPage,
tagID: id,
tagText: text,
},
})
})
})
}