-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
300 lines (278 loc) · 8.61 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
const path = require(`path`)
const {paginate} = require("gatsby-awesome-pagination");
exports.createPages = ({graphql, actions}) => {
const {createPage} = actions
const objectTemplate = path.resolve(`src/templates/object.js`)
const indexTemplate = path.resolve(`src/templates/bronze-age.js`)
const projectIndexTemplate = path.resolve(`src/templates/projects.js`)
const profileTemplate = path.resolve(`src/templates/profile.js`)
const contentTemplate = path.resolve(`src/templates/content.js`)
const projectTemplate = path.resolve(`src/templates/project.js`)
return graphql(
`{
team: allMarkdownRemark(filter: {frontmatter: {section: {eq: "team"}}}) {
edges {
node {
id
frontmatter {
name
slug
}
}
}
}
posts: allMarkdownRemark(filter: {frontmatter: {section: {eq: "content"}}}) {
edges {
node {
id
frontmatter {
title
slug
author
}
}
}
}
projects: allMarkdownRemark(filter: {frontmatter: {section: {eq: "projects"}}}) {
edges {
node {
id
html
frontmatter {
title
description
flickrURL
micropastsURL
slug
created(formatString: "MMMM DD, YYYY")
coverImage
tasks
}
}
}
}
allObjects: allSplitCsv(sort: {id: DESC}) {
edges {
node {
id
objectID
PASID
broadperiod
objectType
classification
completeness
periodo
description
fourFigureLat
fourFigureLon
fromdate
todate
notes
materialTerm
identifier
datefound1(formatString: "MMMM DD, YYYY")
datefound2(formatString: "MMMM DD, YYYY")
subsequentActionTerm
recorder
gridSource
quantity
length
height
diameter
edge
thickness
discoveryContext
parish
county
district
regionName
country
patina
objectType
surface
other
composition
associations
publications
inputBy
imageURL
flickrURL
project
rightCorner
collection
site
toSearch
gridRef
dateDiscoveryDay
dateDiscoveryMonth
dateDiscoveryYear
remarks
museumCollection
museumID
collectionIdentifier
stolenStatus
imageCopyrightHolder
}
}
}
paginatedObjects: allSplitCsv {
edges {
node {
id
broadperiod
objectType
}
}
}
}`
).then(result => {
if (result.errors) {
throw result.errors
}
result.data.team.edges.forEach(({ node }) => {
createPage({
path: node.frontmatter.slug,
component: profileTemplate,
context: {
slug: node.frontmatter.slug,
id: node.id
},
});
});
result.data.posts.edges.forEach(({ node }) => {
createPage({
path: node.frontmatter.slug,
component: contentTemplate,
context: {
slug: node.frontmatter.slug,
id: node.id
},
});
});
result.data.projects.edges.forEach(({ node }) => {
const slug = '/projects/' + node.frontmatter.slug
// console.log(slug)
const project = node
createPage({
path: slug,
component: projectTemplate,
context: {
...project,
},
});
});
result.data.allObjects.edges.forEach(({ node }) => {
const object = node
// console.log(object.objectID)
const slug = 'records/' + object.objectID + '/'
createPage({
path: slug,
component: objectTemplate,
context: {
...object,
},
})
});
paginate({
createPage: createPage,
component: indexTemplate,
items: result.data.paginatedObjects.edges,
itemsPerPage: 24,
itemsPerFirstPage: 24,
pathPrefix: '/records'
});
paginate({
createPage: createPage,
component: projectIndexTemplate,
items: result.data.projects.edges,
itemsPerPage: 24,
itemsPerFirstPage: 24,
pathPrefix: '/projects'
});
})
}
const { createRemoteFileNode } = require("gatsby-source-filesystem")
exports.onCreateNode = async (gatsbyUtils) => {
const { node, actions, reporter, createNodeId, getCache } = gatsbyUtils;
const { createNodeField, createNode } = actions;
if (node.internal.type === `SplitCsv` && node.thumbnail !== '') {
try {
const imageFile = await createRemoteFileNode({
url: node.thumbnail,
parentNodeId: node.id,
getCache,
createNode,
createNodeId,
});
createNodeField({
node,
name: `thumbnailFileID`,
value: imageFile.id,
});
// reporter.info(`Created image File Node for ${node.thumbnail} thumbnail url`);
} catch (e) {
// reporter.error(`Error creating image File Node for ${node.thumbnail} thumbnail url`, e);
}
} else if (node.internal.type === `SplitCsv` && node.thumbnail === '') {
const imageFile = await createRemoteFileNode({
url: 'https://bronze-age-index.micropasts.org/img.png',
parentNodeId: node.id,
getCache,
createNode,
createNodeId,
});
createNodeField({
node,
name: `thumbnailFileID`,
value: imageFile.id,
});
reporter.info(`Created missing image File Node for ${node.id} `);
}
if (node.internal.type === `MarkdownRemark` && node.frontmatter.coverImage !== '' && node.frontmatter.section === 'projects') {
try {
const imageFile = await createRemoteFileNode({
url: node.frontmatter.coverImage,
parentNodeId: node.id,
getCache,
createNode,
createNodeId,
});
createNodeField({
node,
name: `coverImageFileID`,
value: imageFile.id,
});
// reporter.info(`Created coverImage File Node for ${node.frontmatter.coverImage} thumbnail url`);
} catch (e) {
// reporter.error(`Error creating image File Node for ${node.frontmatter.coverImage} thumbnail url`, e);
}
}
};
exports.createSchemaCustomization = ({ actions }) => {
actions.createTypes(`
type SplitCsv implements Node {
thumbnail: File @link(from: "fields.thumbnailFileID")
}
type MarkdownRemark implements Node {
frontmatter: Frontmatter
cover: File @link(from: "fields.coverImageFileID")
}
type Frontmatter {
title: String!
}
`);
};
exports.onCreateWebpackConfig = ({ stage, loaders, actions }) => {
if (stage === "build-html" || stage === "develop-html") {
actions.setWebpackConfig({
module: {
rules: [
{
test: /leaflet/,
use: loaders.null(),
},
],
},
})
}
}