-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eleventy.js
504 lines (421 loc) · 15 KB
/
.eleventy.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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
require("dotenv").config();
const cleanCSS = require("clean-css");
const https = require("https");
const fs = require("fs");
const pluginRSS = require("@11ty/eleventy-plugin-rss");
const Image = require("@11ty/eleventy-img");
// const localImages = require("eleventy-plugin-local-images");
// const lazyImages = require("eleventy-plugin-lazyimages");
const ghostContentAPI = require("@tryghost/content-api");
const svgContents = require("eleventy-plugin-svg-contents");
const path = require("path");
const htmlMinTransform = require("./src/transforms/html-min-transform.js");
const relativeLocalImages = require("./src/plugins/relative-local-images.js");
// Init Ghost API
const api = new ghostContentAPI({
url: process.env.GHOST_API_URL,
key: process.env.GHOST_CONTENT_API_KEY,
version: "v2"
});
// Strip Ghost domain from urls
const stripDomain = url => {
return url.replace(process.env.GHOST_API_URL, "");
};
// Resize image
const imageShortcode = async (src, alt, widths, formats = ['webp']) => {
if (alt === undefined) {
// You bet we throw an error on missing alt (alt="" works okay)
throw new Error(`Missing \`alt\` on myImage from: ${src}`);
}
let metadata = await Image(src, {
widths: widths,
formats: formats,
outputDir: "./dist/resized-images/",
urlPath: "/resized-images/",
sharpOptions: {
animated: true
}
});
return {
feature: {
url: metadata[formats[0]][1] ? metadata[formats[0]][1].url : metadata[formats[0]][0].url,
width: metadata[formats[0]][1] ? metadata[formats[0]][1].width : metadata[formats[0]][0].width,
height: metadata[formats[0]][1] ? metadata[formats[0]][1].height : metadata[formats[0]][0].height,
},
thumbnail: {
url: metadata[formats[0]][0].url,
width: metadata[formats[0]][0].width,
height: metadata[formats[0]][0].height,
},
};
}
// Download media files and save them locally
const downloadFile = async (fileName, url, dest, cb) => {
fs.mkdir(dest, { recursive: true }, (err) => {
if (err) throw err;
const file = fs.createWriteStream(`${dest}/${fileName}`, { flags: 'w' });
https.get(url, (response) => {
response.pipe(file);
file.on("finish", () => {
file.close(cb);
});
});
});
};
module.exports = function(config) {
// Minify HTML
config.addTransform("htmlmin", htmlMinTransform);
// Assist RSS feed template
config.addPlugin(pluginRSS);
// Apply performance attributes to images
// NOTE: LazyImages seems to keep re-processing and is soooo slow, so turned off
/*
config.addPlugin(lazyImages, {
cacheFile: ".lazyimages.json"
});
*/
// // Copy images over from Ghost
// config.addPlugin(localImages, {
// distPath: "dist",
// assetPath: "/assets/images",
// selector: "img",
// /* attribute: "data-src", // Lazy images attribute */
// attribute: "src", // if not using LazyImages, just grab src
// verbose: true,
// });
// Post-processor to add relative paths to localImages
// note: this needs to be placed after the localImages plugin because
// it relies on its modifications already having been made
config.addPlugin(relativeLocalImages, {
verbose: true,
});
// Copy static assets
config.addPassthroughCopy("src/fonts");
config.addPassthroughCopy("src/images");
// Inline CSS
config.addFilter("cssmin", (code) => {
return new cleanCSS({}).minify(code).styles;
});
// Inline SVG
config.addPlugin(svgContents);
/*
config.addFilter("getReadingTime", text => {
const wordsPerMinute = 200;
const numberOfWords = text.split(/\s/g).length;
return Math.ceil(numberOfWords / wordsPerMinute);
});
*/
// Date formatting filter
config.addFilter("htmlDateString", (dateObj) => {
return new Date(dateObj).toISOString().split("T")[0];
});
// Relative path filter
config.addNunjucksFilter("relativePath", (pathToFilter, page) => {
if (!pathToFilter.startsWith("/")) {
console.log(`Path is already relative: ${pathToFilter}`);
return pathToFilter;
}
return path.relative(page.url, pathToFilter);
});
// Function to return the full year to use in the copyright
config.addNunjucksGlobal("fullYear", () => new Date().getFullYear());
// Function to return the last build date
const date = new Date();
const dateStr =
("00" + (date.getMonth() + 1)).slice(-2) +
"/" +
("00" + date.getDate()).slice(-2) +
"/" +
date.getFullYear() +
" " +
("00" + date.getHours()).slice(-2) +
":" +
("00" + date.getMinutes()).slice(-2) +
":" +
("00" + date.getSeconds()).slice(-2);
config.addNunjucksGlobal("lastBuildDate", () => dateStr);
// Don't ignore the same files ignored in the git repo
config.setUseGitIgnore(false);
// Custom filter to get the first N items
config.addNunjucksFilter("limit", (arr, limit) => arr.slice(0, limit));
// Display 404 page in BrowserSnyc
config.setBrowserSyncConfig({
callbacks: {
ready: (err, bs) => {
const content_404 = fs.readFileSync("dist/ipfs_404.html");
bs.addMiddleware("*", (req, res) => {
// Provides the 404 content without redirect.
res.write(content_404);
res.end();
});
},
},
});
/////////////////////////////////////////////
// COLLECTIONS
/////////////////////////////////////////////
// Docs
// ====
// Get all pages, called 'docs' to prevent
// conflicting the eleventy page object
config.addCollection("docs", async function (collection) {
collection = await api.pages
.browse({
include: "authors",
limit: "all",
})
.catch((err) => {
console.error(err);
});
collection.forEach(async (doc) => {
doc.url = stripDomain(doc.url);
doc.primary_author.url = stripDomain(doc.primary_author.url);
// Convert publish date into a Date object
doc.published_at = new Date(doc.published_at);
// Resize image and save locally
if (doc.feature_image) {
const { feature } = await imageShortcode(doc.feature_image, doc.title, ['auto', 800]);
doc.feature_image = feature.url;
doc.feature_image_width = feature.width;
doc.feature_image_height = feature.width;
}
return doc;
});
return collection;
});
// Posts
// =====
config.addCollection("posts", async function (collection) {
collection = await api.posts
.browse({
include: "tags,authors",
limit: "all",
})
.catch((err) => {
console.error(err);
});
collection.forEach(async (post) => {
post.url = stripDomain(post.url);
post.primary_author.url = stripDomain(post.primary_author.url);
post.tags.map((tag) => (tag.url = stripDomain(tag.url)));
// Resize feature_image for detail views and generate smaller thumbnail_image for archive views
const { feature, thumbnail } = await imageShortcode(post.feature_image, post.title, ['auto', 800]);
post.feature_image = feature.url;
post.feature_image_width = feature.width;
post.feature_image_height = feature.width;
post.thumbnail_image = thumbnail.url;
post.thumbnail_image_width = thumbnail.width;
post.thumbnail_image_height = thumbnail.height;
// Parse audio player src and save it locally
if (post.html.includes("<audio src=")) {
let src;
const audioSrcs = [];
let rex = /<audio[^>]+src="?([^"\s]+)"?\s* /g;
while ((src = rex.exec(post.html))) {
audioSrcs.push(src[1]);
}
let callback = () => console.log("audio file downloaded");
audioSrcs.forEach((audioSrc) => {
const urlParts = audioSrc.split("/");
const audioFileName = urlParts[urlParts.length - 1];
downloadFile(audioFileName, audioSrc, "dist/relativeLocalAudio", callback);
post.html = post.html.replace(
audioSrc,
`../../relativeLocalAudio/${audioFileName}`
);
});
// Parse inline image src and save it locally
if (post.html.includes("<img src=")) {
let imageSrc;
rex = /<img[^>]+src="?([^"\s]+)"?\s*/g;
while ((src = rex.exec(post.html))) {
// Trim the file name to remove any extraneous query params
imageSrc = src[1].split("?")[0];
}
callback = () => console.log("image file downloaded");
const urlParts = imageSrc.split("/");
const imageFileName = urlParts[urlParts.length - 1];
downloadFile(
imageFileName,
imageSrc,
"dist/resized-images",
callback
);
post.html = post.html.replace(
imageSrc,
`../../resized-images/${imageFileName}`
);
}
}
// Convert publish date into a Date object
post.published_at = new Date(post.published_at);
// Append discourse comments to `.html` of post
post.html = `${post.html}<div id='discourse-comments' class='discourse-comments'></div>
<script type="text/javascript">
DiscourseEmbed = { discourseUrl: 'https://talk.fission.codes/',
discourseEmbedUrl: 'https://fission.codes/blog/${post.slug}/' };
(function() {
var d = document.createElement('script'); d.type = 'text/javascript'; d.async = true;
d.src = DiscourseEmbed.discourseUrl + 'javascripts/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(d);
})();
</script>`;
});
// Bring featured post to the top of the list
collection.sort((post, nextPost) => nextPost.featured - post.featured);
return collection;
});
// Podcasts
// =====
config.addCollection("podcasts", async function (collection) {
collection = await api.posts
.browse({
include: "tags,authors",
limit: "all",
filter: "tag:causal-islands-podcast",
})
.catch((err) => {
console.error(err);
});
collection.forEach(async (post) => {
post.url = stripDomain(post.url);
post.primary_author.url = stripDomain(post.primary_author.url);
post.tags.map((tag) => (tag.url = stripDomain(tag.url)));
// Resize feature_image for detail views and generate smaller thumbnail_image for archive views
const { feature, thumbnail } = await imageShortcode(post.feature_image, post.title, ['auto', 800], ['png']);
post.feature_image = feature.url;
post.feature_image_width = feature.width;
post.feature_image_height = feature.width;
post.thumbnail_image = thumbnail.url;
post.thumbnail_image_width = thumbnail.width;
post.thumbnail_image_height = thumbnail.height;
// Parse audio player src and save it locally
if (post.html.includes("<audio src=")) {
let src;
const audioSrcs = [];
const rex = /<audio[^>]+src="?([^"\s]+)"?\s*/g;
while ((src = rex.exec(post.html))) {
audioSrcs.push(src[1]);
}
const callback = () => console.log('audio file downloaded')
audioSrcs.forEach(audioSrc => {
const urlParts = audioSrc.split('/')
const fileName = urlParts[urlParts.length - 1]
downloadFile(fileName, audioSrc, "dist/relativeLocalAudio", callback);
post.html = post.html.replace(audioSrc, `../../relativeLocalAudio/${fileName}`);
post.audioFile = `/relativeLocalAudio/${fileName}`;
})
}
// Convert publish date into a Date object
post.published_at = new Date(post.published_at);
// Append discourse comments to `.html` of post
post.html = `${post.html}<div id='discourse-comments' class='discourse-comments'></div>
<script type="text/javascript">
DiscourseEmbed = { discourseUrl: 'https://talk.fission.codes/',
discourseEmbedUrl: 'https://fission.codes/blog/${post.slug}/' };
(function() {
var d = document.createElement('script'); d.type = 'text/javascript'; d.async = true;
d.src = DiscourseEmbed.discourseUrl + 'javascripts/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(d);
})();
</script>`;
});
// Bring featured post to the top of the list
collection.sort((post, nextPost) => nextPost.featured - post.featured);
return collection;
});
// Authors
// =======
config.addCollection("authors", async function (collection) {
collection = await api.authors
.browse({
limit: "all",
})
.catch((err) => {
console.error(err);
});
// Get all posts with their authors attached
const posts = await api.posts
.browse({
include: "authors",
limit: "all",
})
.catch((err) => {
console.error(err);
});
// Attach posts to their respective authors
collection.forEach(async (author) => {
const authorsPosts = posts.filter((post) => {
post.url = stripDomain(post.url);
return post.primary_author.id === author.id;
});
if (authorsPosts.length) author.posts = authorsPosts;
author.url = stripDomain(author.url);
});
return collection;
});
// Tags
// ====
config.addCollection("tags", async function (collection) {
collection = await api.tags
.browse({
include: "count.posts",
limit: "all",
})
.catch((err) => {
console.error(err);
});
// Get all posts with their tags attached
const posts = await api.posts
.browse({
include: "tags,authors",
limit: "all",
})
.catch((err) => {
console.error(err);
});
// Attach posts to their respective tags
collection.forEach(async (tag) => {
const taggedPosts = posts.filter((post) => {
post.url = stripDomain(post.url);
return post.primary_tag && post.primary_tag.slug === tag.slug;
});
if (taggedPosts.length) tag.posts = taggedPosts;
tag.url = stripDomain(tag.url);
});
return collection;
});
config.addCollection("causalIslandsTag", async function () {
const tag = await api.tags
.read({ slug: "causal-islands-podcast" })
.catch((err) => {
console.error(err);
});
tag.url = stripDomain(tag.url);
// Resize feature_image and save it locally
const { feature } = await imageShortcode(
tag.feature_image,
tag.name,
["auto", 3000],
['png']
);
tag.feature_image = feature.url;
tag.feature_image_width = feature.width;
tag.feature_image_height = feature.width;
return tag;
});
/////////////////////////////////////////////
// 11TY CONFIG
/////////////////////////////////////////////
return {
dir: {
input: "src",
output: "dist",
},
// Files read by Eleventy, add as needed
templateFormats: ["css", "njk", "md", "txt"],
htmlTemplateEngine: "njk",
markdownTemplateEngine: "njk",
passthroughFileCopy: true,
};
};