-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-node.js
More file actions
169 lines (155 loc) · 4.27 KB
/
gatsby-node.js
File metadata and controls
169 lines (155 loc) · 4.27 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
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
// You can delete this file if you're not using it
const Promise = require("bluebird")
const path = require("path")
// This is required for any markdown folder template files in our
// module.exports.onCreateNode = ({ node, actions }) => {
// const slug = path.basename(node.findAbsolutePath, ".md")
// createNodeField({
// node,
// name: "slug",
// value: slug,
// })
// }
exports.createPages = ({ graphql, actions }) => {
const { createPage } = actions
return new Promise((resolve, reject) => {
const blogPost = path.resolve("./src/templates/blog.js")
const otherPage = path.resolve("./src/templates/otherPages.js")
const companyPage = path.resolve("./src/templates/companyPages.js")
const helpPage = path.resolve("./src/templates/helpPages.js")
const categoryPage = path.resolve("./src/templates/categoryPages.js")
const productPage = path.resolve("./src/templates/productPages.js")
resolve(
graphql(
`
{
allStrapiBrand {
edges {
node {
BrandName
slug
}
}
}
allStrapiCategory {
edges {
node {
Title
slug
}
}
}
allStrapiFooterCompanyPages {
edges {
node {
PageTitle
slug
}
}
}
allStrapiFooterHelpPages {
edges {
node {
Title
slug
}
}
}
allStrapiMenuOtherPages {
edges {
node {
PageTitle
Title
slug
}
}
}
allStrapiProduct {
edges {
node {
ProductName
slug
Categories {
Title
slug
}
}
}
}
}
`
).then(result => {
if (result.errors) {
console.log(result.errors)
reject(result.errors)
}
console.info("resultssssss", result)
// const posts = result.data.allStrapi.edges
const companyPages = result.data.allStrapiFooterCompanyPages.edges
const helpPages = result.data.allStrapiFooterHelpPages.edges
const otherPages = result.data.allStrapiMenuOtherPages.edges
const categoryPages = result.data.allStrapiCategory.edges
const productPages = result.data.allStrapiProduct.edges
// posts.forEach(post => {
// createPage({
// path: `/blog/${post.node.slug}/`,
// component: blogPost,
// context: {
// slug: post.node.slug,
// },
// })
// })
categoryPages.forEach(page => {
createPage({
path: `/${page.node.slug}/`,
component: categoryPage,
context: {
slug: page.node.slug,
},
})
productPages.forEach(page => {
createPage({
path: `/${page.node.slug}/`,
component: productPage,
context: {
slug: page.node.slug,
},
})
})
})
companyPages.forEach(page => {
createPage({
path: `/${page.node.slug}/`,
component: companyPage,
context: {
slug: page.node.slug,
},
})
})
helpPages.forEach(page => {
createPage({
path: `/${page.node.slug}/`,
component: helpPage,
context: {
slug: page.node.slug,
},
})
})
otherPages.forEach(page => {
createPage({
path: `/${page.node.slug}/`,
component: otherPage,
context: {
slug: page.node.slug,
},
})
})
})
)
})
}