-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-node.js
362 lines (351 loc) · 10.7 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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
const axios = require('axios')
const crypto = require('crypto')
const cheerio = require('cheerio')
var qs = require('qs')
var fs = require('fs')
// const { decompress } = require('shrink-string')
// const ign_proxy = {
// protocol: 'http',
// host: 'proxy.ign.fr',
// port: 3128,
// }
// const ign_proxy = false
// var peopleCsvLines = 0;
// var personNodes = 0;
// exports.onPreBootstrap = async function ({ reporter }) {
// // Read the file
// await fs.readFile('src/data/people.csv', 'utf8', (err, data) => {
// if (err) {
// console.error(`Error reading file: ${err}`);
// return;
// }
// // Split the data into lines
// const lines = data.split('\n');
// // Count non-empty lines (without header)
// peopleCsvLines = lines.filter(line => line.trim() !== '').length - 1;
// reporter.info(`${peopleCsvLines} lines in people.csv`);
// });
// }
exports.createPages = async function ({ actions, graphql, reporter }) {
var { data } = await graphql(`
query {
allPeopleCsv {
nodes {
HAL
end_date
firstname
id
lastname
member
perm
photo
start_date
status
statut
teams
webpage
}
}
}
`)
data.allPeopleCsv.nodes.forEach(node => {
const firstName = node.firstname
const lastName = node.lastname
// console.log(`${node.firstname}-${node.lastname}`)
actions.createPage({
path: `/members/${node.firstname}-${node.lastname}`,
component: require.resolve(`./src/templates/member-page.js`),
context: { firstName: firstName, lastName: lastName },
})
})
const teams = ['STRUDEL', 'ACTE', 'MEIG', 'GEOVIS']
const pages = ['publications', 'datasets', 'members', 'projects', 'softwares', 'theses']
teams.forEach((team) => {
reporter.info(`Creating pages for team ${team}`)
pages.forEach((page) => {
actions.createPage({
path: `/teams/${team.toLowerCase()}/${page}`,
component: require.resolve(`./src/templates/${page}.js`),
context: { team: [team] },
})
})
})
pages.forEach((page) => {
actions.createPage({
path: `/${page}`,
component: require.resolve(`./src/templates/${page}.js`),
context: { team: ["ACTE", "GEOVIS", "MEIG", "STRUDEL"] },
})
})
}
const { createRemoteFileNode } = require("gatsby-source-filesystem")
exports.onCreateNode = async ({
node, // the node that was just created
actions: { createNode, createNodeField },
reporter,
createNodeId,
getCache
}) => {
// console.log(`onCreateNode ${node.internal.type}`)
if (node.internal.type === `DatasetCsv`) {
if (node.image_url !== null && node.image_url) {
reporter.info(`DatasetCsv Image url = ${node.image_url}.`);
const fileNode = await createRemoteFileNode({
url: node.image_url, // string that points to the URL of the image
parentNodeId: node.id, // id of the parent node of the fileNode you are going to create
createNode, // helper function in gatsby-node to generate the node
createNodeId, // helper function in gatsby-node to generate the node id
getCache
})
// if the file was created, extend the node with "image"
if (fileNode) {
createNodeField({ node, name: "image", value: fileNode.id })
}
}
} else {
if (node.internal.type === `SoftwareCsv` && node.image_url !== null && node.image_url) {
reporter.info(`SoftwareCsv Image url = ${node.image_url}.`);
// const extension = node.image_url.includes(".png") ? ".png" : ".jpg"
const fileNode = await createRemoteFileNode({
url: node.image_url, // string that points to the URL of the image
parentNodeId: node.id, // id of the parent node of the fileNode you are going to create
createNode, // helper function in gatsby-node to generate the node
createNodeId, // helper function in gatsby-node to generate the node id
getCache
// ext: extension,
// name: node.short_name,
})
// if the file was created, extend the node with "image"
if (fileNode) {
createNodeField({ node, name: "image", value: fileNode.id })
}
}
}
}
exports.createSchemaCustomization = ({ actions, schema, reporter }) => {
const { createFieldExtension, createTypes } = actions
createFieldExtension({
name: `defaultArray`,
extend() {
return {
resolve(source, args, context, info) {
if (source[info.fieldName] == null) {
return []
}
return source[info.fieldName]
},
}
},
})
const typeDefs = [`
type Site implements Node {
siteMetadata: SiteMetadata
}
type SiteMetadata {
menuLinks: [MenuLinks]!
menus: teamMenus!
}
type teamMenus {
ACTE: [MenuLinks]!
GEOVIS: [MenuLinks]!
MEIG: [MenuLinks]!
STRUDEL: [MenuLinks]!
}
type MenuLinks {
name: String!
link: String!
subMenu: [SubMenu] @defaultArray
}
type SubMenu {
name: String
link: String
}
type AuthIdHalFullName {
fullName: String
idHal: String
}
`,
schema.buildObjectType({
name: 'PeopleCsv',
interfaces: ['Node'],
extensions: {
infer: true,
},
fields: {
teams: {
type: '[String]',
resolve: (src, args, context, info) => {
const { fieldName } = info
const content = src[fieldName]
const teams = content.split(',').map(str => str.trim())
return teams
}
}
}
}),
schema.buildObjectType({
name: 'HalCsv',
interfaces: ['Node'],
extensions: {
infer: true,
},
fields: {
teams: {
type: '[String]',
resolve: (src, args, context, info) => {
const { fieldName } = info
const content = src[fieldName]
const teams = content.split(',').map(str => str.trim())
return teams
}
},
authors: {
type: '[String]',
resolve: (src, args, context, info) => {
const { fieldName } = info
const content = src[fieldName]
const authors = content.split(',').map(str => str.trim())
return authors
}
},
keywords: {
type: '[String]',
resolve: (src, args, context, info) => {
const { fieldName } = info
const content = src[fieldName]
const keywords = content.split(',').map(str => str.trim())
return keywords
}
},
researchData: {
type: '[String]',
resolve: (src, args, context, info) => {
const { fieldName } = info
const content = src[fieldName]
const researchData = content.split(',').map(str => str.trim())
return researchData
}
},
files: {
type: '[String]',
resolve: (src, args, context, info) => {
const { fieldName } = info
const content = src[fieldName]
const files = content.split(',').map(str => str.trim())
return files
}
},
title: {
type: '[String]',
resolve: (src, args, context, info) => {
const { fieldName } = info
const content = src[fieldName]
const title = content.split(',').map(str => str.trim())
return title
}
},
softCodeRepository: {
type: '[String]',
resolve: (src, args, context, info) => {
const { fieldName } = info
const content = src[fieldName]
const softCodeRepository = content.split(',').map(str => str.trim())
return softCodeRepository
}
},
authIdHalFullName: {
type: `[AuthIdHalFullName]`,
resolve: (src, args, context, info) => {
const { fieldName } = info
const content = src[fieldName]
const authors = JSON.parse(content)
return authors
}
}
}
}),
schema.buildObjectType({
name: 'DatasetCsv',
interfaces: ['Node'],
extensions: {
infer: true,
},
fields: {
teams: {
type: '[String]',
resolve: (src, args, context, info) => {
const { fieldName } = info
const content = src[fieldName]
const teams = content.split(',').map(str => str.trim())
return teams
}
},
image: {
type: 'File',
extensions: {
link: {
from: "fields.image"
}
}
}
}
}),
schema.buildObjectType({
name: 'ProjectsCsv',
interfaces: ['Node'],
extensions: {
infer: true,
},
fields: {
Teams: {
type: '[String]',
resolve: (src, args, context, info) => {
const { fieldName } = info
const content = src[fieldName]
const teams = content.split(',').map(str => str.trim())
return teams
}
}
}
}),
schema.buildObjectType({
name: 'SoftwareCsv',
interfaces: ['Node'],
extensions: {
infer: true,
},
fields: {
teams: {
type: '[String]',
resolve: (src, args, context, info) => {
const { fieldName } = info
const content = src[fieldName]
const teams = content.split(',').map(str => str.trim().toUpperCase())
return teams
}
},
image: {
type: 'File',
extensions: {
link: {
from: "fields.image"
}
}
}
}
}),
]
createTypes(typeDefs)
}
exports.onPostBuild = async ({ reporter }) => {
reporter.info('Waiting for plugin to finish...');
// Add your code here to wait for the plugin to finish
// You can use promises, async/await, or any other method to wait for the plugin to complete its task
reporter.info('Plugin has finished.');
};
exports.onPostBootstrap = async ({ reporter }) => {
reporter.info('Waiting for gatsby-transformer-csv plugin to finish...');
// Add your code here to wait for the gatsby-transformer-csv plugin to finish
// You can use promises, async/await, or any other method to wait for the plugin to complete its task
reporter.info('gatsby-transformer-csv plugin has finished.');
};