This repository has been archived by the owner on Feb 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathgatsby-node.js
245 lines (219 loc) · 6.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
const path = require('path')
const _ = require('lodash')
const moment = require('moment')
const siteConfig = require('./_site-config')
const { createFilePath } = require(`gatsby-source-filesystem`)
const postNodes = []
// Fetching remote data https://github.com/gatsbyjs/gatsby/blob/5a08b7640c2db2c65696be56d81afee83b2ca9ec/examples/using-unstructured-data/gatsby-node.js
// Big example https://github.com/gatsbyjs/gatsby/blob/master/www/gatsby-node.js
function addSiblingNodes(createNodeField) {
postNodes.sort(
({ frontmatter: { date: date1 } }, { frontmatter: { date: date2 } }) => {
const dateA = moment(date1, siteConfig.dateFromFormat)
const dateB = moment(date2, siteConfig.dateFromFormat)
if (dateA.isBefore(dateB)) return 1
if (dateB.isBefore(dateA)) return -1
return 0
}
)
for (let i = 0; i < postNodes.length; i += 1) {
const nextID = i + 1 < postNodes.length ? i + 1 : 0
const prevID = i - 1 > 0 ? i - 1 : postNodes.length - 1
const currNode = postNodes[i]
const nextNode = postNodes[nextID]
const prevNode = postNodes[prevID]
createNodeField({
node: currNode,
name: 'nextTitle',
value: nextNode.frontmatter.title
})
createNodeField({
node: currNode,
name: 'nextSlug',
value: nextNode.fields.slug
})
createNodeField({
node: currNode,
name: 'prevTitle',
value: prevNode.frontmatter.title
})
createNodeField({
node: currNode,
name: 'prevSlug',
value: prevNode.fields.slug
})
}
}
exports.onCreateNode = ({ node, actions, getNode }) => {
const { createNodeField } = actions
let slug
if (node.internal.type === `MarkdownRemark`) {
const fileNode = getNode(node.parent)
console.log(`\n`, fileNode.relativePath)
const test = createFilePath({ node, getNode, basePath: `pages` })
console.log('test', test)
}
if (node.internal.type === 'MarkdownRemark') {
const fileNode = getNode(node.parent)
const parsedFilePath = path.parse(fileNode.relativePath)
if (
Object.prototype.hasOwnProperty.call(node, 'frontmatter') &&
Object.prototype.hasOwnProperty.call(node.frontmatter, 'title')
) {
console.log('Set title as slug', node.frontmatter.title)
slug = `/${_.kebabCase(node.frontmatter.title)}`
} else if (parsedFilePath.name !== 'index' && parsedFilePath.dir !== '') {
slug = `/${parsedFilePath.dir}/${parsedFilePath.name}/`
} else if (parsedFilePath.dir === '') {
slug = `/${parsedFilePath.name}/`
} else {
slug = `/${parsedFilePath.dir}/`
}
if (Object.prototype.hasOwnProperty.call(node, 'frontmatter')) {
if (Object.prototype.hasOwnProperty.call(node.frontmatter, 'slug')) {
slug = `/${_.kebabCase(node.frontmatter.slug)}`
}
if (Object.prototype.hasOwnProperty.call(node.frontmatter, 'date')) {
const date = moment(node.frontmatter.date, siteConfig.dateFromFormat)
if (!date.isValid) { console.warn(`WARNING: Invalid date.`, node.frontmatter) }
createNodeField({
node,
name: 'date',
value: date.toISOString()
})
}
}
createNodeField({ node, name: 'slug', value: slug })
postNodes.push(node)
}
}
exports.setFieldsOnGraphQLNodeType = ({ type, actions }) => {
const { name } = type
const { createNodeField } = actions
if (name === 'MarkdownRemark') {
addSiblingNodes(createNodeField)
}
}
exports.createPages = ({ graphql, actions }) => {
const { createPage } = actions
return new Promise((resolve, reject) => {
const postPage = path.resolve('src/templates/Post.js')
const tagPage = path.resolve('src/templates/Tag.js')
const categoryPage = path.resolve('src/templates/Category.js')
resolve(
graphql(
`
{
allMarkdownRemark {
edges {
node {
frontmatter {
tags
category
}
fields {
slug
}
}
}
}
}
`
).then(result => {
if (result.errors) {
/* eslint no-console: "off" */
console.log(result.errors)
reject(result.errors)
}
const tagSet = new Set()
const categorySet = new Set()
result.data.allMarkdownRemark.edges.forEach(edge => {
if (edge.node.frontmatter.tags) {
edge.node.frontmatter.tags.forEach(tag => {
tagSet.add(tag)
})
}
if (edge.node.frontmatter.category) {
categorySet.add(edge.node.frontmatter.category)
}
createPage({
path: edge.node.fields.slug,
component: postPage,
context: {
slug: edge.node.fields.slug
}
})
})
const tagList = Array.from(tagSet)
tagList.forEach(tag => {
createPage({
path: `/tags/${_.kebabCase(tag)}/`,
component: tagPage,
context: {
tag
}
})
})
const categoryList = Array.from(categorySet)
categoryList.forEach(category => {
createPage({
path: `/categories/${_.kebabCase(category)}/`,
component: categoryPage,
context: {
category
}
})
})
})
)
})
}
/* Shrink CSS class names in prod */
const cssLoaderRe = /\/css-loader\//;
const targetFile = '.css';
const processRule = rule => {
// console.log('rule', rule)
if (rule.oneOf) {
return {
...rule,
oneOf: rule.oneOf.map(processRule),
};
}
if (!rule.test.test(targetFile)) {
return rule;
}
if (Array.isArray(rule.use)) {
return {
...rule,
use: rule.use.map(use => {
if (!cssLoaderRe.test(use.loader)) {
return use;
}
// console.log('use', use)
// Adjust css-loader options
return {
...use,
options: {
...use.options,
localIdentName:
process.env.NODE_ENV === 'production'
? '[hash:base64:5]'
: '[name]_[local]_[hash:base64:4]',
},
};
}),
};
}
return rule;
};
exports.onCreateWebpackConfig = ({ getConfig, actions }) => {
const config = getConfig();
const newConfig = {
...config,
module: {
...config.module,
rules: config.module.rules.map(processRule),
},
};
actions.replaceWebpackConfig(newConfig);
};