-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-node.js
276 lines (273 loc) · 7.05 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
const { createHash } = require('crypto')
const fetch = require('node-fetch').default
const path = require(`path`)
exports.sourceNodes = async ({
actions,
createNodeId,
createContentDigest,
}) => {
const { createNode } = actions
// === GET MAP OF ARTICLES TO ISSUES
const mapURL =
'https://kerckhoff.dailybruin.com/api/packages/prime/prime.map.articles.to.issues/'
const mapResponse = await fetch(mapURL)
const mapJson = await mapResponse.json()
const { data } = mapJson
createNode({
issues: data['map.aml'].issues,
children: [],
id: createNodeId(`kerck-issues`),
internal: {
content: JSON.stringify(data['map.aml'].issues),
contentDigest: createHash('md5')
.update(JSON.stringify(data['map.aml'].issues))
.digest('hex'),
type: 'Issues',
},
parent: null,
})
data['map.aml'].issues.forEach((issue, i) => {
createNode({
...issue,
term: issue.term,
children: [],
id: createNodeId(`kerck-issue-${issue.term}`),
internal: {
content: JSON.stringify(issue),
contentDigest: createHash('md5')
.update(JSON.stringify(issue))
.digest('hex'),
type: 'Issue',
},
parent: null,
})
})
{
// === GET ALL THE ARTICLES
let url = `https://kerckhoff.dailybruin.com/api/packages/prime?all=True`
const response = await fetch(url)
const json = await response.json()
const { slug, data, description } = json
Object.keys(data).forEach(key => {
let article = data[key].data['article.aml']
let slug = data[key].slug
if (!article || !slug) {
return
}
let content
if (article.hasOwnProperty('content') && Array.isArray(article.content)) {
content = article.content.map(element => {
if (typeof element.value !== 'string') {
element.value = JSON.stringify(element.value)
}
return element
})
}
createNode({
...article,
slug,
children: [],
content,
id: createNodeId(`prime-${slug}`),
internal: {
content: JSON.stringify(article),
contentDigest: createHash('md5')
.update(JSON.stringify(article))
.digest('hex'),
type: 'PrimeArticle',
},
parent: null,
})
})
}
}
exports.createPages = async ({ graphql, actions }) => {
// **Note:** The graphql function call returns a Promise
// see: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise for more info
const { createPage } = actions
const mapURL =
'https://kerckhoff.dailybruin.com/api/packages/prime/prime.map.articles.to.issues/'
const mapResponse = await fetch(mapURL)
const mapJson = await mapResponse.json()
const { data } = mapJson
data['map.aml'].issues.forEach(issue => {
return graphql(`
{
issue(term: {eq: "${issue.term}"}) {
term
title
coverphoto
articles
}
}
`).then(_ => {
createPage({
path: `${issue.term}`,
component: path.resolve(`./src/templates/issue.tsx`),
context: {
term: issue.term,
articles: issue.articles,
coverphoto: issue.coverphoto,
title: issue.title,
},
})
issue.articles.forEach(articleslug => {
return graphql(`
{
primeArticle(slug: {eq: "${articleslug}"}) {
slug
headline
author
authorbio
authoremail
authortwitter
coverimg
covercred
coveralt
articleType
excerpt
updated
content {
type
value
}
}
}
`).then(_ => {
createPage({
path: `${articleslug.split('.').join('')}`,
component: path.resolve(`./src/templates/article.tsx`),
context: {
term: issue.term,
slug: articleslug,
},
})
})
})
// i have a final tomorrow sue me
// (FIX BELOWWW)
const registrationissue2019 = [
'prime.regissue.toptenprofessors',
'prime.regissue.studyspace',
]
registrationissue2019.forEach(articleslug => {
return graphql(`{
primeArticle(slug: {eq: "${articleslug}"}) {
slug
headline
author
authorbio
authoremail
authortwitter
coverimg
covercred
coveralt
articleType
excerpt
content {
type
value
}
}
}`).then(_ => {
createPage({
path: `${articleslug.split('.').join('')}`,
component: path.resolve(`./src/templates/article.tsx`),
context: {
term: 'Registration Issue19',
slug: articleslug,
},
})
})
})
const orientationissue2019 = ['prime.orientationissue.stories']
orientationissue2019.forEach(articleslug => {
return graphql(`{
primeArticle(slug: {eq: "${articleslug}"}) {
slug
headline
author
authorbio
authoremail
authortwitter
coverimg
covercred
coveralt
articleType
excerpt
content {
type
value
}
}
}`).then(_ => {
createPage({
path: `${articleslug.split('.').join('')}`,
component: path.resolve(`./src/templates/article.tsx`),
context: {
term: 'Orientation Issue19',
slug: articleslug,
},
})
})
})
const gradissue2019 = [
'prime.gradissue.visa',
'prime.gradissue.evolutionofphotos',
]
gradissue2019.forEach(articleslug => {
return graphql(`
{
primeArticle(slug: {eq: "${articleslug}"}) {
slug
headline
author
authorbio
authoremail
authortwitter
coverimg
covercred
coveralt
articleType
excerpt
content {
type
value
}
}
}
`).then(_ => {
createPage({
path: `${articleslug.split('.').join('')}`,
component: path.resolve(`./src/templates/article.tsx`),
context: {
term: 'Grad Issue19',
slug: articleslug,
},
})
})
})
})
})
}
exports.onCreateWebpackConfig = ({ stage, loaders, actions }) => {
if (stage === 'build-html') {
actions.setWebpackConfig({
resolve: {
alias: {
lux: require.resolve('@dailybruin/lux'),
},
},
})
actions.setWebpackConfig({
module: {
rules: [
{
test: /lux/,
use: loaders.null(),
},
],
},
})
}
}