-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-node.js
More file actions
136 lines (119 loc) · 3.2 KB
/
gatsby-node.js
File metadata and controls
136 lines (119 loc) · 3.2 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
const path = require('path')
const slugify = (str) => {
return str.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/(^-|-$)+/g, '');
}
exports.createPages = async ({ graphql, actions, reporter }) => {
const { createPage } = actions
const data = [
{
query: 'allContentfulStyleguide',
template: path.resolve('./src/templates/styleguide.js'),
},
{
query: 'allContentfulTextPage',
template: path.resolve('./src/templates/standardContent.js'),
},
{
query: 'allContentfulNewsRoom',
template: path.resolve('./src/templates/newsRoom.js'),
},
]
const query = `
{
${data
.map(
dataItem => `
${dataItem.query}(filter: { slug: { ne: "/" } }) {
edges {
node {
id
slug
__typename
}
}
}`
)
.join('')}
}
`
const queryResults = await graphql(query)
if (queryResults.errors) {
reporter.panicOnBuild(
`There was an error loading your content`,
queryResults.errors
)
return
}
data.forEach(dataItem => {
const pages = queryResults.data[dataItem.query].edges
pages.forEach(page => {
let pagePath =
page.node.__typename === 'ContentfulNewsRoom'
? `/newsroom/${slugify(page.node.slug)}/`
: `/${slugify(page.node.slug)}/`
createPage({
path: pagePath,
component: dataItem.template,
ownerNodeId: page.node.id,
context: {
id: page.node.id,
slug:page.node.slug
},
})
})
})
}
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions
/**
* Contentful types:
* Media file: ContentfulAsset @link(by: "id", from: "image___NODE")
* Date: Date @dateformat
*/
const typeDefs = `
type ContentfulStyleguide implements Node {
seoImage: ContentfulAsset @link(by: "id", from: "seoImage___NODE")
content: ContentfulStyleguideContent
}
type ContentfulHome implements Node {
canonicalUrl: String
keywords: String
}
type ContentfulTextPage implements Node {
seoImage: ContentfulAsset @link(by: "id", from: "seoImage___NODE")
content: ContentfulTextPageContent
canonicalUrl: String
keywords: String
}
union ContentfulContentReferences = ContentfulAsset | ContentfulStyleguide | ContentfulTextPage
type ContentfulStyleguideContent {
raw: String
references: [ContentfulContentReferences] @link(by: "id", from: "references___NODE")
}
type ContentfulTextPageContent {
raw: String
references: [ContentfulContentReferences] @link(by: "id", from: "references___NODE")
}
type ContentfulGlobals {
instagramUrl: String
twitterUrl: String
discordUrl: String
facebookUrl: String
}
`
createTypes(typeDefs)
}
exports.onCreateWebpackConfig = ({ stage, loaders, actions }) => {
if (stage === 'build-html' || stage === 'develop-html') {
actions.setWebpackConfig({
module: {
rules: [
{
test: /locomotive-scroll/,
use: loaders.null(),
},
],
},
})
}
}