-
Notifications
You must be signed in to change notification settings - Fork 17
/
gatsby-node.js
328 lines (307 loc) · 7.78 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
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
const path = require(`path`)
// const fetch = require("node-fetch")
const data = require("./election-data")
// const HOSTNAME = process.env.GATSBY_API_HOST
const CANDIDATE_NODE_TYPE = `Candidate`
const ELECTION_NODE_TYPE = `Election`
const METADATA_NODE_TYPE = `Metadata`
const OFFICE_ELECTION_NODE_TYPE = `OfficeElection`
const REFERENDUM_NODE_TYPE = `Referendum`
const DEFAULT_ELECTION_TARGET = "6/7/2022"
// async function fetchEndpoint(endpoint) {
// const response = await fetch(
// `http://${HOSTNAME}/open-disclosure/api/v1.0/${endpoint}`
// )
// if (response.ok) {
// return await response.json()
// }
// }
exports.sourceNodes = async ({
actions,
createNodeId,
createContentDigest,
}) => {
const { createNode } = actions
data.candidateData.Candidates.forEach(candidate => {
createNode({
...candidate,
TotalContributions: candidate.TotalFunding,
id: createNodeId(`${CANDIDATE_NODE_TYPE}-${candidate.ID}`),
parent: null,
children: [],
internal: {
type: CANDIDATE_NODE_TYPE,
content: JSON.stringify(candidate),
contentDigest: createContentDigest(candidate),
},
})
})
data.referendumData.Referendums.map(referendum => {
const { id, name } = referendum
createNode({
...referendum,
id: createNodeId(`${REFERENDUM_NODE_TYPE}-${id}`),
ID: id,
Name: name,
parent: null,
children: [],
internal: {
type: REFERENDUM_NODE_TYPE,
content: JSON.stringify(referendum),
contentDigest: createContentDigest(referendum),
},
})
return id
})
const election = data.electionData.Elections[DEFAULT_ELECTION_TARGET]
createNode({
...election,
OfficeElections: election.OfficeElections.map(officeElection => {
const id = createNodeId(
`${OFFICE_ELECTION_NODE_TYPE}-${officeElection.Title}`
)
createNode({
...officeElection,
id,
parent: null,
children: [],
internal: {
type: OFFICE_ELECTION_NODE_TYPE,
content: JSON.stringify(officeElection),
contentDigest: createContentDigest(officeElection),
},
})
return id
}),
id: createNodeId(`${ELECTION_NODE_TYPE}-${election.Date}`),
parent: null,
children: [],
internal: {
type: ELECTION_NODE_TYPE,
content: JSON.stringify(election),
contentDigest: createContentDigest(election),
},
})
createNode({
...data.metadata,
id: createNodeId(`${METADATA_NODE_TYPE}`),
parent: null,
children: [],
internal: {
type: METADATA_NODE_TYPE,
content: JSON.stringify(data.metadata),
contentDigest: createContentDigest(data.metadata),
},
})
return
}
exports.createPages = async ({ graphql, actions }) => {
const { createPage } = actions
const result = await graphql(`
query {
allElection {
edges {
node {
Title
Date
TotalContributions
OfficeElections {
id
Title
TotalContributions
slug
Candidates {
ID
Name
slug
jsonNode {
ballotDesignation
profilePhoto
}
}
}
Referendums {
ID
Name
slug
}
}
}
}
}
`)
result.data.allElection.edges.forEach(({ node }) => {
node.OfficeElections &&
node.OfficeElections.forEach(election => {
createPage({
path: `/${node.Date}/candidates/${election.slug}`,
component: path.resolve("src/templates/candidates.js"),
context: {
slug: election.slug,
officeElectionID: election.id,
electionDate: node.Date,
},
})
election.Candidates.forEach(candidate => {
createPage({
path: `/${node.Date}/candidate/${election.slug}/${candidate.slug}`,
component: path.resolve("src/templates/candidate.js"),
context: {
slug: candidate.slug,
id: candidate.ID,
},
})
})
})
node.Referendums &&
node.Referendums.forEach(referendum => {
createPage({
path: `/${node.Date}/referendums/${referendum.slug}`,
component: path.resolve("src/templates/referendum.js"),
context: {
slug: referendum.slug,
id: referendum.ID,
},
})
})
})
}
exports.createSchemaCustomization = ({ actions }) => {
const { createTypes } = actions
createTypes(`
type Committee {
Name: String
TotalFunding: String
}
type GeoBreakdown {
SJ: Float
NonSJ: Float
CA: Float
NonCA: Float
}
type FundingTypeBreakdown {
IND: Float
COM: Float
OTH: Float
PTY: Float
SCC: Float
IndependentSupport: Float
IndependentOppose: Float
}
type ExpenditureTypeBreakdown {
SAL: Float
CMP: Float
CNS: Float
CVC: Float
FIL: Float
FND: Float
LIT: Float
MBR: Float
MTG: Float
OFC: Float
POL: Float
POS: Float
PRO: Float
PRT: Float
RAD: Float
RFD: Float
TEL: Float
TRS: Float
WEB: Float
}
type Candidate implements Node {
id: ID!
ID: String!
Name: String!
Committees: [Committee]
TotalContributions: Float
TotalFunding: Float
TotalEXPN: Float
TotalLOAN: Float
TotalRCPT: Float
FundingByGeo: GeoBreakdown
FundingByType: FundingTypeBreakdown
ExpenditureByType: ExpenditureTypeBreakdown
jsonNode: CandidatesJson @link(by: "jsonId" from: "ID")
slug: String
}
type CandidatesJson implements Node {
id: ID!
name: String!
twitter: String
seat: String
ballotDesignation: String
website: String
votersEdge: String
apiNode: Candidate @link(by: "ID" from: "id")
profilePhoto: String
slug: String
}
type Election implements Node {
Title: String!
Date: String
TotalContributions: Float
OfficeElections: [OfficeElection] @link
Referendums: [Referendum] @link(by: "ID")
}
type OfficeElection implements Node {
Candidates: [Candidate] @link(by: "ID" from: "CandidateIDs")
slug: String
Title: String
TotalContributions: Float
}
type RefElectionCycle {
Date: String
ElectionCycle: String
}
type RefCommittee {
Name: String
TotalFunding: Float
}
type RefContributor {
Name: String
ContributionType: String
Occupation: String
Employer: String
ZipCode: String
Contributions: Float
Date: String
}
type RefCampaign {
TotalFunding: Float
TotalEXPN: Float
TotalLOAN: Float
TotalRCPT: Float
FundingByGeo: GeoBreakdown
FundingByType: FundingTypeBreakdown
ExpenditureByType: ExpenditureTypeBreakdown
Committees: [RefCommittee]
Contributors: [RefContributor]
}
type MeasuresJson implements Node {
electionDate: String!
name: String!
description: String!
ballotLanguage: String!
href: String
}
type Referendum implements Node {
id: ID
ID: String
Name: String!
description: String
ballotLanguage: String
electionDate: String
Election: RefElectionCycle
TotalSupport: Float
TotalOppose: Float
slug: String
Support: RefCampaign
Opposition: RefCampaign
jsonNode: MeasuresJson @link(by: "id" from: "ID")
}
type Metadata implements Node{
DateProcessed: String
}
`)
}