-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.ts
415 lines (362 loc) · 9.73 KB
/
gatsby-node.ts
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
import path from 'path'
import { locales } from './src/config/i18n'
exports.onCreateWebpackConfig = ({ actions }) => {
actions.setWebpackConfig({
resolve: {
alias: {
'@styles': path.resolve(__dirname, 'src/assets'),
'@components': path.resolve(__dirname, 'src/components'),
'@partials': path.resolve(__dirname, 'src/partials'),
'@pages': path.resolve(__dirname, 'src/pages'),
'@images': path.resolve(__dirname, 'src/images'),
'@hooks': path.resolve(__dirname, 'src/hooks'),
'@data': path.resolve(__dirname, 'src/data'),
'@config': path.resolve(__dirname, 'src/config'),
},
},
})
}
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions
const typeDefs = `
type MarkdownRemark implements Node {
frontmatter: Frontmatter
}
type Frontmatter {
about: About
author_img: File @fileByRelativePath
benefits: Benefits
b12_info: B12Info
cards_list: [TextIconList]
challenge: Challenge
content: [Content]
cta: CtaSection
details: String @md
features_list: [TextImageList]
features: [String]
hero: Hero
hero_free_resources: HeroFreeResources
hero_with_hubspot_form: HeroWithHubspotForm
image: File @fileByRelativePath
preview_image: File @fileByRelativePath
process: Process
results: Results
show_product_overview: Boolean
site_page_1: File @fileByRelativePath
site_page_2: File @fileByRelativePath
site_page_3: File @fileByRelativePath
site_page_4: File @fileByRelativePath
site_page_5: File @fileByRelativePath
solution: Solution
spider_monkey: SpiderMonkey
summary: String @md
testimonials: [Testimonials]
testimonials_slider: TestimonialsSlider
directory_faqs: DirectoryFaqs
}
type DirectoryItems {
question: String
answer: String @md
}
type DirectoryFaqs {
title: String
items: [DirectoryItems]
}
type CtaSection {
text: String @md
}
type Testimonials {
title: String
name: String
featured_text: String
}
type TestimonialsSlider {
items: [String]
}
type Content {
description: String @md
title: String
title_type: String
}
type Process {
title: String
steps: [TextImageList]
}
type TextImageList {
title: String
description: String @md
image: File @fileByRelativePath
secondary_image: File @fileByRelativePath
}
type TextIconList {
title: String
description: String
icon: File @fileByRelativePath
cta_url: String
cta_text: String
}
type Benefits {
title: String
collection_items: [TextIconList]
cta_text: String
cta_url: String
cta_note: String @md
features: [TextIconList]
}
type SpiderMonkey {
image: File @fileByRelativePath
}
type About {
description: String @md
}
type Hero {
customer_img: File @fileByRelativePath
img: File @fileByRelativePath
logo: File @fileByRelativePath
cta_note: String @md
text: String @md
}
type HeroFreeResources {
image: File @fileByRelativePath
}
type HeroWithHubspotForm {
logo: File @fileByRelativePath
}
type Challenge {
description: String @md
}
type Solution {
description: String @md
}
type Results {
intro: String @md
body: String @md
}
type B12Info {
description: String @md
}
`
createTypes(typeDefs)
}
exports.createPages = async function ({ actions, graphql, reporter }) {
const { createPage, createRedirect } = actions
/**
* Create Case Studies pages
*/
const caseStudiesGraphQlResult = await graphql(`
query {
allFile(filter: { sourceInstanceName: { eq: "case-studies" }, extension: { eq: "md" } }) {
edges {
node {
id
childMarkdownRemark {
frontmatter {
permalink
}
}
}
}
}
}
`)
if (caseStudiesGraphQlResult.errors) {
reporter.panicOnBuild(`Error while running GraphQL query on Case studies pages.`)
return
}
caseStudiesGraphQlResult.data.allFile.edges.forEach(({ node }) => {
if (node.childMarkdownRemark === null) {
return
}
createPage({
path: node.childMarkdownRemark.frontmatter.permalink,
component: path.resolve(`./src/components/layouts/case-studies/CaseStudy.tsx`),
context: { id: node.id },
})
})
/**
* Create Free Draft pages
*/
const freeDraftGraphQlResult = await graphql(`
query {
allFile(filter: { sourceInstanceName: { eq: "free-draft" }, extension: { eq: "md" } }) {
edges {
node {
id
childMarkdownRemark {
frontmatter {
permalink
}
}
}
}
}
}
`)
if (freeDraftGraphQlResult.errors) {
reporter.panicOnBuild(`Error while running GraphQL query on Free Draft pages.`)
return
}
freeDraftGraphQlResult.data.allFile.edges.forEach(({ node }) => {
if (node.childMarkdownRemark === null) {
return
}
createPage({
path: node.childMarkdownRemark.frontmatter.permalink,
component: path.resolve(`./src/components/layouts/FreeDraft.tsx`),
context: { id: node.id },
})
})
/**
* Create Free Draft Legacy pages
*/
const freeDraftLegacyGraphQlResult = await graphql(`
query {
allFile(
filter: { sourceInstanceName: { eq: "free-draft-legacy" }, extension: { eq: "md" } }
) {
edges {
node {
id
childMarkdownRemark {
frontmatter {
permalink
}
}
}
}
}
}
`)
if (freeDraftLegacyGraphQlResult.errors) {
reporter.panicOnBuild(`Error while running GraphQL query on Free draft pages.`)
return
}
freeDraftLegacyGraphQlResult.data.allFile.edges.forEach(({ node }) => {
if (node.childMarkdownRemark === null) {
return
}
createPage({
path: node.childMarkdownRemark.frontmatter.permalink,
component: path.resolve(`./src/components/layouts/FreeDraftLegacy.tsx`),
context: { id: node.id },
})
})
/**
* Create Landing pages
*/
const landingPagesGraphQlResult = await graphql(`
query {
allFile(filter: { sourceInstanceName: { eq: "landing-pages" }, extension: { eq: "md" } }) {
edges {
node {
id
childMarkdownRemark {
frontmatter {
permalink
}
}
}
}
}
}
`)
if (landingPagesGraphQlResult.errors) {
reporter.panicOnBuild(`Error while running GraphQL query on Landing pages.`)
return
}
landingPagesGraphQlResult.data.allFile.edges.forEach(({ node }) => {
if (node.childMarkdownRemark === null) {
return
}
createPage({
path: node.childMarkdownRemark.frontmatter.permalink,
component: path.resolve(`./src/components/layouts/landing-pages/LandingPage.tsx`),
context: { id: node.id },
})
})
/**
* Create Product pages
*/
const productPagesGraphQlResult = await graphql(`
query {
allFile(filter: { sourceInstanceName: { eq: "product-pages" }, extension: { eq: "md" } }) {
edges {
node {
id
childMarkdownRemark {
frontmatter {
permalink
}
}
}
}
}
}
`)
if (productPagesGraphQlResult.errors) {
reporter.panicOnBuild(`Error while running GraphQL query on Product pages.`)
return
}
productPagesGraphQlResult.data.allFile.edges.forEach(({ node }) => {
if (node.childMarkdownRemark === null) {
return
}
createPage({
path: node.childMarkdownRemark.frontmatter.permalink,
component: path.resolve(`./src/components/layouts/product-pages/ProductPage.tsx`),
context: { id: node.id },
})
})
/**
* Manual redirects for existing pages
* Note: Gatsby and Netlify don't redirect existing pages automatically
*/
createRedirect({
fromPath: `/case_study/villanova-insurance-partners`,
toPath: `/case-studies`,
redirectInBrowser: true,
})
}
exports.onCreatePage = ({ page, actions }) => {
const { createPage, deletePage } = actions
const regex = /\/(?<ns>[^\/]*)\.(?<language>[^\/]*)\/$/
/**
* Create pages if they have locale set up in file name
* Example: `index.fr.tsx` will be available at `/fr/`
*/
const existingLocales = Object.keys(locales)
const activeLocales = existingLocales.filter((l) => locales[l].active)
const pageHasLocale = existingLocales.some((l) => page.path.includes(`.${l}`))
if (pageHasLocale) {
deletePage(page)
/**
* Don't create page if locale is not active
*/
if (!activeLocales.some((l) => page.path.includes(`.${l}`))) {
return
}
/**
* Parse page path and extract locale and namespace
* Example: `/index.fr.tsx` will be parsed to `{ ns: 'index', language: 'fr' }`
*/
const match = page.path.match(regex)
if (match && match.groups) {
const { ns, language } = match.groups
const isIndexPage = ns === 'index'
const isDefaultLocale = language === 'en'
const newPath = `${!isDefaultLocale ? `/${language}` : ''}${
!isIndexPage ? page.path.replace(`.${language}`, '') : '/'
}`
createPage({
...page,
path: newPath,
context: {
...page.context,
language,
ns,
translated: true,
},
})
}
}
}