-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-node.js
483 lines (423 loc) · 11.4 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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
const fs = require('fs');
const { resolve } = require('path');
const { get } = require('https');
exports.createPages = async ({
graphql,
actions: { createPage, createRedirect },
}) => {
/**
* We retrieve the project languages from DatoCMS,
* the field "locales" returns an array of all available languages,
* in the same order as displayed in the administration area.
*
* ["en", "it", "es-ES", "ar-AE"]
*
* The first array item is always equal to the default locale.
* We use this value to build page paths properly.
*
* As soon as you add, remove and edit the order languages on Dato, page
* paths defined below will be re-generated accordingly.
*/
const {
data: {
datoCmsSite: { locales },
},
} = await graphql(`
query {
datoCmsSite {
locales
}
}
`);
console.log(
'\x1b[35m',
'multilang',
'\x1b[0m',
`Found ${locales.length} languages: ${locales.join(', ')}`
);
const [defaultLocale] = locales;
// Handle homepage server-side redirects - Start
const secondaryLanguages = [...locales];
secondaryLanguages.shift();
secondaryLanguages.forEach((language) => {
const langCode = language.split('-')[0];
createRedirect({
fromPath: '/',
toPath: `/${language}/`,
isPermanent: false,
conditions: {
language: [langCode],
},
});
});
// Handle homepage server-side redirects - End
/**
* From now on we query and export to the pageContext object the "originalId" and the "locale"
* field for any page we generate.
*
* Since any record has the same originalId for each localized node, we will use it to
* find the correspondent paths in the LanguageSwitcher and Navigator components once pages
* are generated.
*
* Once page is generated, components are aware of the pageLangauge (locale) and the originalId
* corresponding to that page, so it will be easier retrieving the correspondent path for each
* locale for that recordId.
*
* By querying a "single istance" content model using the GraphQL field "allDato.."
* we retrieve an array of n nodes. One node for each locale. We generate one page for each node.
*
* If a field is set as "localizable" and localized on Dato, the field value will change
* for each node.
*
* If not it will display the same value for each node.
*/
// Homepage generation with a specific template
const {
data: {
allDatoCmsHomepage: { homepageNodes },
},
} = await graphql(`
query {
allDatoCmsHomepage {
homepageNodes: nodes {
id: originalId
locale
}
}
}
`);
const HomePageTemplate = resolve('src/templates/Home.jsx');
homepageNodes.forEach(({ id, locale }) => {
createPage({
path: locale === defaultLocale ? '/' : locale,
component: HomePageTemplate,
context: {
id,
locale,
},
});
});
// Categories archive generation with a specific template
const {
data: {
allDatoCmsCategoriesArchive: { categoriesArchiveNodes },
},
} = await graphql(`
query {
allDatoCmsCategoriesArchive {
categoriesArchiveNodes: nodes {
id: originalId
locale
slug
}
}
}
`);
const CategoriesArchiveTemplate = resolve(
'src/templates/CategoriesArchive.jsx'
);
categoriesArchiveNodes.forEach(({ locale, slug, id }) => {
createPage({
path: (() => {
if (locale === defaultLocale) return `/${slug}`;
return `/${locale}/${slug}/`;
})(),
component: CategoriesArchiveTemplate,
context: {
id,
locale,
},
});
});
// Blog root page generation with a specific template
const {
data: {
allDatoCmsBlogRoot: { blogRootNodes },
},
} = await graphql(`
query {
allDatoCmsBlogRoot {
blogRootNodes: nodes {
id: originalId
locale
slug
}
}
}
`);
const BlogRootTemplate = resolve('src/templates/BlogRoot.jsx');
blogRootNodes.forEach(({ locale, slug, id }) => {
createPage({
path: (() => {
if (locale === defaultLocale) return `/${slug}`;
return `/${locale}/${slug}/`;
})(),
component: BlogRootTemplate,
context: {
id,
locale,
},
});
});
/**
* Ohter pages generation (/guide, /features) - Sharing the same template
*
* This is the same approach that will be used to generate records
* of any content model of type "collection" (like blog posts).
*/
const {
data: {
allDatoCmsOtherPage: { otherPagesNodes },
},
} = await graphql(`
query {
allDatoCmsOtherPage {
otherPagesNodes: nodes {
id: originalId
locale
slug
}
}
}
`);
const OtherPagesTemplate = resolve('src/templates/OtherPages.jsx');
otherPagesNodes.forEach(({ locale, slug, id }) => {
createPage({
path: locale === defaultLocale ? `/${slug}` : `${locale}/${slug}`,
component: OtherPagesTemplate,
context: {
id,
locale,
},
});
});
/**
* From now on, we will need the correct blog pathname slug in order
* to generate the paths for posts and categories.
*
* We use this helper function inside each loop. By passing the locale value
* of the node we are generating, it will return us the correspondent blog pathname slug.
*/
const getBlogPathname = (generatingLocale) => {
const { slug } = blogRootNodes.find(
({ locale }) => locale === generatingLocale
);
return slug;
};
// Categories generation
const {
data: {
allDatoCmsCategory: { categoryNodes },
},
} = await graphql(`
query {
allDatoCmsCategory(filter: { noTranslate: { ne: true } }) {
categoryNodes: nodes {
id: originalId
locale
slug
}
}
}
`);
const CategoryTemplate = resolve('src/templates/Category.jsx');
categoryNodes.forEach(({ id, locale, slug }) => {
const blogPathName = getBlogPathname(locale);
createPage({
path: (() => {
if (locale === defaultLocale) return `${blogPathName}/${slug}`;
return `/${locale}/${blogPathName}/${slug}`;
})(),
component: CategoryTemplate,
context: {
id,
locale,
},
});
});
// Articles Generation
const {
data: {
allDatoCmsBlogPost: { blogPostNodes },
},
} = await graphql(`
query {
allDatoCmsBlogPost(
sort: { fields: [locale, meta___updatedAt] }
filter: {
noTranslate: { ne: true }
categoryLink: { noTranslate: { ne: true } }
}
) {
blogPostNodes: nodes {
id: originalId
categoryLink {
categorySlug: slug
}
locale
slug
}
}
}
`);
const ArticleTemplate = resolve('src/templates/Article.jsx');
locales.forEach((siteLocale) => {
let pageCounter = 0;
const blogPostNodesPerLocale = blogPostNodes.filter(
({ locale }) => locale === siteLocale
);
const blogPostsPerLocale = blogPostNodesPerLocale.length;
const blogPathName = getBlogPathname(siteLocale);
blogPostNodesPerLocale.forEach(({ locale, slug, id, categoryLink }) => {
const categorySlug = categoryLink?.categorySlug;
const isUncategorized = categoryLink === null;
const isGeneratingDefaultLang = locale === defaultLocale;
pageCounter += 1;
const isLastPost = pageCounter === blogPostsPerLocale;
createPage({
path: (() => {
if (isUncategorized) {
if (isGeneratingDefaultLang) return `${blogPathName}/${slug}`;
return `${locale}/${blogPathName}/${slug}`;
}
if (isGeneratingDefaultLang) {
return `${blogPathName}/${categorySlug}/${slug}`;
}
return `${locale}/${blogPathName}/${categorySlug}/${slug}`;
})(),
component: ArticleTemplate,
context: {
id,
locale,
},
});
if (isLastPost) {
console.log(
'\x1b[35m',
'node',
'\x1b[0m',
`Generated ${pageCounter} posts for "${locale}" locale.`
);
}
});
});
// Webmanifest generation
const {
data: {
allDatoCmsSeoAndPwa: { seoAndPwaNodes },
},
} = await graphql(`
query {
allDatoCmsSeoAndPwa {
seoAndPwaNodes: nodes {
name
shortName
pwaLocale: locale
pwaIcon {
favSize: url(imgixParams: { w: "32", h: "32" })
normalSize: url(imgixParams: { w: "192", h: "192" })
bigSize: url(imgixParams: { w: "512", h: "512" })
}
pwaThemeColor {
pwaThemeColorHex: hex
}
pwaBackgroundColor {
pwaBackgroundColorHex: hex
}
}
}
}
`);
// Default lang manifest data
const [
{
pwaIcon: { favSize, normalSize, bigSize },
name,
shortName,
description,
pwaLocale,
pwaThemeColor: { pwaThemeColorHex },
pwaBackgroundColor: { pwaBackgroundColorHex },
},
] = seoAndPwaNodes;
const publicPath = 'public';
const imagesPath = 'public/images';
// Create full path
if (!fs.existsSync(imagesPath)) {
fs.mkdirSync(imagesPath);
}
// Download resized icons
const iconNormal = fs.createWriteStream(`${imagesPath}/icon-192.png`);
const iconBig = fs.createWriteStream(`${imagesPath}/icon-512.png`);
const icon = fs.createWriteStream(`${publicPath}/favicon-32.png`);
try {
get(`${normalSize}`, (response) => {
response.pipe(iconNormal);
});
get(`${bigSize}`, (response) => {
response.pipe(iconBig);
});
get(`${favSize}`, (response) => {
response.pipe(icon);
});
} catch (err) {
throw new Error(err.message);
}
const commonManifestData = {
theme_color: pwaThemeColorHex,
background_color: pwaBackgroundColorHex,
display: 'standalone',
icons: [
{
src: 'images/icon-192.png',
type: 'image/png',
sizes: '192x192',
purpose: 'any maskable',
},
{
src: 'images/icon-512.png',
type: 'image/png',
sizes: '512x512',
purpose: 'any maskable',
},
],
cacheDigest: null,
};
const manifest = {
name,
short_name: shortName,
description,
lang: pwaLocale,
start_url: '/',
...commonManifestData,
};
// Generate and save manifest to public folder
fs.writeFileSync(
`${publicPath}/manifest.webmanifest`,
JSON.stringify(manifest, undefined, 2)
);
// Additional locales webmanifest files generation
const additionalLocales = seoAndPwaNodes.length;
if (additionalLocales > 1) {
seoAndPwaNodes
// Exclude default language already generated
.filter(({ locale }) => locale !== defaultLocale)
// eslint-disable-next-line no-shadow
.forEach(({ name, shortName, description, pwaLocale }) => {
// eslint-disable-next-line no-shadow
const manifest = {
name,
short_name: shortName,
description,
lang: pwaLocale,
display: 'standalone',
start_url: `/${pwaLocale}/`,
...commonManifestData,
};
fs.writeFileSync(
`${publicPath}/manifest_${pwaLocale}.webmanifest`,
JSON.stringify(manifest, undefined, 2)
);
});
}
};