-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathgatsby-node.js
250 lines (238 loc) · 5.49 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
/**
* Implement Gatsby's Node APIs in this file.
*
* See: https://www.gatsbyjs.org/docs/node-apis/
*/
const path = require(`path`)
const axios = require(`axios`)
const { buildContentIndex } = require("./helpers/contentIndexBuilder")
exports.onPreInit = () => {
console.log("Building content index...")
buildContentIndex("./src/contents/search_index.yaml")
}
exports.onCreateNode = ({ node, getNode, actions }) => {
const { createNodeField } = actions
if (node.internal.type === `PeopleYaml`) {
const slug = `/people/${node.name}-${node.lastname.replace(/ /g, "-")}`
createNodeField({
node,
name: `slug`,
value: slug,
})
}
if (node.internal.type === `PartyYaml`) {
const slug = `/party/${node.name}`
createNodeField({
node,
name: `slug`,
value: slug,
})
}
if (node.internal.type === `VotelogYaml`) {
const slug = `/votelog/${node.id}`
createNodeField({
node,
name: `slug`,
value: slug,
})
}
if (node.internal.type === `MotionYaml`) {
const id = node.id
const slug = `/motions/${id}`
createNodeField({
node,
name: `slug`,
value: slug,
})
}
if (node.internal.type === `MotionCatYaml`) {
const slug = `/motions/category/${node.sub_cat.replace(/ /g, "-")}`
createNodeField({
node,
name: `slug`,
value: slug,
})
}
}
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions
// People
const people = await graphql(`
query {
allPeopleYaml {
edges {
node {
fields {
slug
}
name
lastname
party
}
}
}
}
`)
people.data.allPeopleYaml &&
people.data.allPeopleYaml.edges.forEach(({ node }) => {
createPage({
path: node.fields.slug,
component: path.resolve(`./src/templates/people-template.js`),
context: {
slug: node.fields.slug,
name: node.name,
lastname: node.lastname,
party: node.party,
},
})
})
// Party
const parties = await graphql(`
query {
allPartyYaml(filter: { party_type: { eq: "พรรค" } }) {
edges {
node {
fields {
slug
}
name
}
}
}
}
`)
parties.data.allPartyYaml.edges.forEach(({ node }) => {
createPage({
path: node.fields.slug,
component: path.resolve(`./src/templates/party-template.js`),
context: {
slug: node.fields.slug,
party: node.name,
},
})
})
// Vote Logs
const votelogs = await graphql(`
query {
allVotelogYaml {
edges {
node {
fields {
slug
}
}
}
}
}
`)
votelogs.data.allVotelogYaml.edges.forEach(({ node }) => {
createPage({
path: node.fields.slug,
component: path.resolve(`./src/templates/votelog-template.js`),
context: {
slug: node.fields.slug,
},
})
})
// Vote Log Lists
const allVotelogs = votelogs.data.allVotelogYaml.edges
const votelogPerPage = 6
const numPages = Math.ceil(allVotelogs.length / votelogPerPage)
Array.from({ length: numPages }).forEach((_, i) => {
createPage({
path: i === 0 ? `/votelog` : `/votelog/page/${i + 1}`,
component: path.resolve("./src/templates/votelog-list-template.js"),
context: {
limit: votelogPerPage,
skip: i * votelogPerPage,
numPages,
currentPage: i + 1,
},
})
})
// Motion
const motions = await graphql(`
query {
allMotionYaml {
edges {
node {
id
select_committee
main_cat
votelog_id
fields {
slug
}
}
}
}
}
`)
motions.data.allMotionYaml.edges.forEach(({ node }) => {
createPage({
path: node.fields.slug,
component: path.resolve("./src/templates/motion-template.js"),
context: {
id: node.id,
select_committee: node.select_committee,
main_cat: node.main_cat,
votelog_id: node.votelog_id,
},
})
})
// Motion Category
const motionCats = await graphql(`
query {
allMotionCatYaml {
edges {
node {
sub_cat
fields {
slug
}
}
}
}
}
`)
motionCats.data.allMotionCatYaml.edges.forEach(({ node }) => {
createPage({
path: node.fields.slug,
component: path.resolve("./src/templates/motion-category-template.js"),
context: {
sub_cat: node.sub_cat,
},
})
})
}
exports.onCreatePage = async ({ page, actions }) => {
const { createPage } = actions
if (page.path.match(/^\/votelog/)) {
page.matchPath = "/votelog/*"
createPage(page)
}
}
exports.sourceNodes = async ({
actions,
createNodeId,
createContentDigest,
}) => {
const { createNode } = actions
// Contributors
const { data } = await axios.get(
`https://api.github.com/repos/electinth/politician-directory/contributors`
)
data.forEach(contributor => {
const meta = {
id: createNodeId(`contributor-${contributor.id}`),
parent: null,
children: [],
internal: {
type: `Contributor`,
contentDigest: createContentDigest(contributor),
},
}
const node = Object.assign({}, contributor, meta)
createNode(node)
})
}