forked from TryGhost/eleventy-starter-ghost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eleventy.js
211 lines (176 loc) · 5.27 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
require("dotenv").config();
const cleanCSS = require("clean-css");
const fs = require("fs");
const pluginRSS = require("@11ty/eleventy-plugin-rss");
const localImages = require("eleventy-plugin-local-images");
const lazyImages = require("eleventy-plugin-lazyimages");
const ghostContentAPI = require("@tryghost/content-api");
const htmlMinTransform = require("./src/transforms/html-min-transform.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, "");
};
module.exports = function(config) {
// Minify HTML
config.addTransform("htmlmin", htmlMinTransform);
// Assist RSS feed template
config.addPlugin(pluginRSS);
// Apply performance attributes to images
config.addPlugin(lazyImages, {
cacheFile: ""
});
// Copy images over from Ghost
config.addPlugin(localImages, {
distPath: "dist",
assetPath: "/assets/images",
selector: "img",
attribute: "data-src", // Lazy images attribute
verbose: false
});
// Inline CSS
config.addFilter("cssmin", code => {
return new cleanCSS({}).minify(code).styles;
});
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];
});
// Don't ignore the same files ignored in the git repo
config.setUseGitIgnore(false);
// 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.map(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);
return doc;
});
return collection;
});
// Get all posts
config.addCollection("posts", async function(collection) {
collection = await api.posts
.browse({
include: "tags,authors",
limit: "all"
})
.catch(err => {
console.error(err);
});
collection.forEach(post => {
post.url = stripDomain(post.url);
post.primary_author.url = stripDomain(post.primary_author.url);
post.tags.map(tag => (tag.url = stripDomain(tag.url)));
// Convert publish date into a Date object
post.published_at = new Date(post.published_at);
});
// Bring featured post to the top of the list
collection.sort((post, nextPost) => nextPost.featured - post.featured);
return collection;
});
// Get all 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;
});
// Get all 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;
});
// Display 404 page in BrowserSnyc
config.setBrowserSyncConfig({
callbacks: {
ready: (err, bs) => {
const content_404 = fs.readFileSync("dist/404.html");
bs.addMiddleware("*", (req, res) => {
// Provides the 404 content without redirect.
res.write(content_404);
res.end();
});
}
}
});
// Eleventy configuration
return {
dir: {
input: "src",
output: "dist"
},
// Files read by Eleventy, add as needed
templateFormats: ["css", "njk", "md", "txt"],
htmlTemplateEngine: "njk",
markdownTemplateEngine: "njk",
passthroughFileCopy: true
};
};