-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-node.js
More file actions
416 lines (368 loc) · 10.5 KB
/
gatsby-node.js
File metadata and controls
416 lines (368 loc) · 10.5 KB
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
const _ = require("lodash");
const path = require("path");
const { createFilePath } = require("gatsby-source-filesystem");
// Temp Location Phone Numbers
const locationNumbers = [
{ name: "Upper East Side", locationId: 1, phoneNumber: "(929) 352-1272" },
{ name: "Park Slope", locationId: 3, phoneNumber: "(929) 352-1272" },
{ name: "Online", locationId: 10, phoneNumber: "(929) 352-1272" },
{ name: "Westchester", locationId: 17, phoneNumber: "(914) 559-2665" },
{ name: "LI", locationId: 18, phoneNumber: "(516) 284-8634" },
];
// load ENV vars to process
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`,
});
// API helpers
const fetch = require("cross-fetch");
const dashboardBaseUrl = process.env.DASHBOARD_BASE_URL;
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions;
createTypes(`
type MarkdownRemarkFrontmatter {
pageBuilder: [PageBuilderBlock]
}
type PageBuilderBlock {
type: String
heading: String
title: String
content: String
mdContent: String
textAlign: String
textColor: String
bgColor: String
fgColor: String
mediaPosition: String
ratio: String
buttons: PageBuilderButtons
image: PageBuilderImage
list: [PageBuilderListItem]
leftComponent: [PageBuilderBlock]
rightComponent: [PageBuilderBlock]
}
type PageBuilderButtons {
bgColor: String
fgColor: String
textColor: String
list: [PageBuilderButtonItem]
}
type PageBuilderButtonItem {
title: String
content: String
}
type PageBuilderImage {
alt: String
image: String
imageFile: File
}
type PageBuilderListItem {
title: String
content: String
mdContent: String
bgColor: String
fgColor: String
textColor: String
textAlign: String
image: PageBuilderImage
}
`);
};
exports.createResolvers = ({ createResolvers }) => {
createResolvers({
PageBuilderImage: {
imageFile: {
type: "File",
async resolve(source, args, context) {
if (!source || !source.image) {
return null;
}
if (typeof source.image === "object" && source.image.internal) {
return source.image;
}
if (typeof source.image !== "string") {
return null;
}
if (source.image.startsWith("http")) {
return null;
}
const trimmedPath = source.image.replace(/^\/+/, "");
const withoutTraversal = trimmedPath.replace(
/^(?:\.\.\/|\.\.\\)+/g,
""
);
const staticMatch = withoutTraversal.match(/static[\\/](.+)$/);
const normalizedPath = staticMatch
? staticMatch[1]
: withoutTraversal.replace(/^[\\/]+/, "");
const candidatePaths = new Set([
path.resolve(process.cwd(), "static", normalizedPath),
path.resolve(process.cwd(), normalizedPath),
]);
if (!normalizedPath.startsWith("img/")) {
candidatePaths.add(
path.resolve(process.cwd(), "static", "img", normalizedPath)
);
}
for (const absolutePath of candidatePaths) {
const fileNode = await context.nodeModel.runQuery({
query: {
filter: {
absolutePath: { eq: absolutePath },
},
},
type: "File",
firstOnly: true,
});
if (fileNode) {
return fileNode;
}
}
return null;
},
},
},
});
};
const GET = url => {
const headers = {
Accept: "application/json",
"Content-Type": "application/json",
};
console.log("- GET-ing url", url);
return fetch(url, { headers })
.then(res => {
if (res.ok) {
return res;
} else {
return Promise.reject(new Error(res.statusText));
}
})
.then(res => res.json());
};
// load data from PP Dashboard into gatsby's GraphQL schema
exports.sourceNodes = async ({
actions: { createNode },
createContentDigest,
}) => {
// get data from PP locations at build time
console.log("Loading class locations from PP Dashboard");
const classLocationsEndpoint = new URL(
"/feeds/coding_space/classes/locations",
dashboardBaseUrl
);
const { locations } = await GET(classLocationsEndpoint);
console.log(
`- adding ${locations.length} ClassLocation nodes to GraphQL schema`
);
for (const location of locations) {
if (location.courseOfferingsEndpoint) {
const { classTypes } = await GET(location.courseOfferingsEndpoint);
const categoryIds = [...new Set(classTypes.map(ct => ct.categoryId))];
const uniqId = `pp_class_location_id_${location.classLocationId}`;
locationNumbers.map(locationNumber => {
if (locationNumber.locationId === location.classLocationId) {
location.phoneNumber = locationNumber.phoneNumber;
}
});
const formattedLocation = {
...location,
categoryIds,
};
createNode({
// add arbitrary fields from the data
...formattedLocation,
// required fields
id: uniqId,
parent: null,
children: [],
internal: {
type: "ClassLocation",
contentDigest: createContentDigest(formattedLocation),
},
});
} else {
throw new Error(
`Missing 'courseOfferingsEndpoint' for location: ${JSON.stringify(
location
)}`
);
}
}
};
exports.createPages = async ({ actions, graphql }) => {
const { createPage } = actions;
// add pages for all MD files
await graphql(`
{
allMarkdownRemark(limit: 1000) {
edges {
node {
id
fields {
slug
}
frontmatter {
tags
templateKey
}
}
}
}
}
`).then(result => {
if (result.errors) {
result.errors.forEach(e => console.error(e.toString()));
return Promise.reject(result.errors);
}
const posts = result.data.allMarkdownRemark.edges;
posts.forEach(edge => {
const id = edge.node.id;
createPage({
path: edge.node.fields.slug,
tags: edge.node.frontmatter.tags,
component: path.resolve(
`src/templates/${String(edge.node.frontmatter.templateKey)}.js`
),
// additional data can be passed via context
context: {
id,
},
});
});
// Custom Pages without /custom/ prefix
const customPosts = posts.filter(
post => post.node.frontmatter.templateKey === "custom-page"
);
customPosts.forEach(edge => {
const id = edge.node.id;
const strippedSlug = edge.node.fields.slug.replace(/^\/custom/, "");
createPage({
path: strippedSlug,
tags: edge.node.frontmatter.tags,
component: path.resolve(
`src/templates/${String(edge.node.frontmatter.templateKey)}.js`
),
// additional data can be passed via context
context: {
id,
},
});
});
// Blog list pages
const blogPostCount = posts.filter(
post => post.node.frontmatter.templateKey === "blog-post"
).length;
const blogsPerPage = 6;
const numBlogListPages = Math.ceil(blogPostCount / blogsPerPage);
Array.from({ length: numBlogListPages }).forEach((_, i) => {
createPage({
path: i === 0 ? `/blog` : `/blog/${i + 1}`,
component: path.resolve("./src/templates/blog-list.js"),
context: {
limit: blogsPerPage,
skip: i * blogsPerPage,
numBlogListPages,
currentPage: i + 1,
},
});
});
// Tag pages:
let tags = [];
// Iterate through each post, putting all found tags into `tags`
posts.forEach(edge => {
if (_.get(edge, `node.frontmatter.tags`)) {
tags = tags.concat(edge.node.frontmatter.tags);
}
});
// Eliminate duplicate tags
tags = _.uniq(tags);
// Make tag pages
tags.forEach(tag => {
const tagPath = `/tags/${_.kebabCase(tag)}/`;
createPage({
path: tagPath,
component: path.resolve(`src/templates/tags.js`),
context: {
tag,
},
});
});
});
// add pages for all classLocations
await graphql(`
{
allClassLocation {
nodes {
classLocationId
code
}
}
}
`).then(result => {
if (result.errors) {
result.errors.forEach(e => console.error(e.toString()));
return Promise.reject(result.errors);
}
const locations = result.data.allClassLocation.nodes;
locations.forEach(node => {
const { classLocationId, code } = node;
createPage({
path: `/locations/${code}`,
component: path.resolve(`src/templates/location-page.js`),
// additional data can be passed via context
context: {
classLocationId,
code,
},
});
});
});
};
exports.onCreateNode = async ({ node, actions, getNode }) => {
const { createNodeField } = actions;
if (node.internal.type === `MarkdownRemark`) {
const value = createFilePath({ node, getNode });
createNodeField({
name: `slug`,
node,
value,
});
if (
!!node.frontmatter &&
node.frontmatter.templateKey === `experience-levels`
) {
if (node.frontmatter.courseOfferingEndpoint) {
console.log(`Loading extras for`, node.frontmatter.title);
const classTypesEndpoint = new URL(
node.frontmatter.courseOfferingEndpoint,
dashboardBaseUrl
);
const { classTypes } = await GET(classTypesEndpoint);
const semesters = [...new Set(classTypes.map(ct => ct.semester))];
createNodeField({
node,
name: `extras`,
value: { semesters },
});
} else {
throw new Error(
`Missing 'courseOfferingEndpoint' for 'experience-level' node: ${JSON.stringify(
node
)}`
);
}
}
}
};
// set up dynamic signup pages
exports.onCreatePage = ({ page, actions }) => {
if (page.path.match(/^\/class_sign\_up/)) {
page.matchPath = "/sign_up/*";
actions.createPage(page);
}
// cart recovery
if (page.path.match(/^\/checkout/)) {
page.matchPath = "/checkout/*";
actions.createPage(page);
}
};