-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eleventy.js
322 lines (272 loc) · 8.1 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
const byteSize = require("byte-size");
const shortHash = require("short-hash");
const lodash = require("lodash");
const getObjectKey = require("./utils/getObjectKey.js");
const calc = require("./utils/calc.js");
function hasUrl(urls, requestedUrl) {
// urls comes from sites[vertical].urls, all requestedUrls (may not include trailing slash)
// TODO lowercase just the origins
let lowercaseUrls = urls.map(url => url.toLowerCase());
if(requestedUrl && typeof requestedUrl === "string") {
// TODO lowercase just the origins
requestedUrl = requestedUrl.toLowerCase();
if(lowercaseUrls.indexOf(requestedUrl) > -1 || requestedUrl.endsWith("/") && lowercaseUrls.indexOf(requestedUrl.substr(0, requestedUrl.length - 1)) > -1) {
return true;
}
}
return false;
}
function showDigits(num, digits = 2, alwaysShowDigits = true) {
let toNum = parseFloat(num);
if(!alwaysShowDigits && toNum === Math.floor(toNum)) {
// if a whole number like 0, just show 0 and not 0.00
return toNum;
}
return toNum.toFixed(digits);
}
function pad(num) {
return (num < 10 ? "0" : "") + num;
}
function mapProp(prop, targetObj) {
if(Array.isArray(prop)) {
let otherprops = [];
prop = prop.map(entry => {
// TODO this only works as the first entry
if(entry === ":newest") {
entry = Object.keys(targetObj).sort().pop();
} else if(entry.indexOf("||") > -1) {
for(let key of entry.split("||")) {
if(lodash.get(targetObj, [...otherprops, key])) {
entry = key;
break;
}
}
}
otherprops.push(entry);
return entry;
});
}
return prop;
}
function getLighthouseTotal(entry) {
return entry.lighthouse.performance * 100 +
entry.lighthouse.accessibility * 100 +
entry.lighthouse.bestPractices * 100 +
entry.lighthouse.seo * 100;
}
module.exports = function(eleventyConfig) {
eleventyConfig.addFilter("shortHash", shortHash);
eleventyConfig.addFilter("repeat", function(str, times) {
let result = '';
for (let i = 0; i < times; i++) {
result += str;
}
return result;
});
// first ${num} entries (and the last entry too)
eleventyConfig.addFilter("headAndLast", function(arr, num) {
if(num && num < arr.length) {
let newArr = arr.slice(0, num);
newArr.push(arr[arr.length - 1]);
return newArr;
}
return arr;
});
eleventyConfig.addFilter("displayUrl", function(url, keepWww = false) {
if(!keepWww) {
url = url.replace("https://www.", "");
}
url = url.replace("https://", "");
if(url.endsWith("/index.html")) {
url = url.replace("/index.html", "/");
}
return url;
});
eleventyConfig.addFilter("showDigits", function(num, digits) {
return showDigits(num, digits, false);
});
eleventyConfig.addFilter("displayTime", function(time) {
let num = parseFloat(time);
if(num > 850) {
return `${showDigits(num / 1000, 2)}s`;
}
return `${showDigits(num, 0)}ms`;
});
eleventyConfig.addFilter("displayFilesize", function(size) {
let normalizedSize = byteSize(size, { units: 'iec', precision: 0 });
let unit = normalizedSize.unit;
let value = normalizedSize.value;
return `<span class="filesize">${value}<span class="filesize-label-sm">${unit.substr(0,1)}</span><span class="filesize-label-lg"> ${unit}</span></span>`;
});
eleventyConfig.addFilter("displayDate", function(timestamp) {
let months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
let date = new Date(timestamp);
let day = `${months[date.getMonth()]} ${pad(date.getDate())}`;
return `${day} <span class="leaderboard-hide-md">${pad(date.getHours())}:${pad(date.getMinutes())}</span>`;
});
eleventyConfig.addFilter("sortCumulativeScore", (obj) => {
return obj.sort((a, b) => {
let newestKeyA = Object.keys(a).sort().pop();
let newestKeyB = Object.keys(b).sort().pop();
// Lighthouse error
// e.g. { url: 'https://mangoweb.net/', error: 'Unknown error.' }
if(b[newestKeyB].error && a[newestKeyA].error) {
return 0;
} else if(b[newestKeyB].error) {
return -1;
} else if(a[newestKeyA].error) {
return 1;
}
// lower is better
return a[newestKeyA].ranks.cumulative - b[newestKeyB].ranks.cumulative;
});
});
// Works with arrays too
// Sort an object that has `order` props in values.
// If prop is not passed in, sorts by object keys
// Returns an array
eleventyConfig.addFilter("sort", (obj, prop = "___key") => {
let arr;
let defaultKey = "___key";
if(Array.isArray(obj)) {
arr = obj;
} else {
arr = [];
for(let key in obj) {
if(prop === defaultKey) {
obj[key][defaultKey] = key;
}
arr.push(obj[key]);
}
}
let sorted = arr.sort((a, b) => {
let aVal = lodash.get(a, mapProp(prop, a));
let bVal = lodash.get(b, mapProp(prop, b));
if(aVal > bVal) {
return -1;
}
if(aVal < bVal) {
return 1;
}
return 0;
});
if(!Array.isArray(obj)) {
if(prop === defaultKey) {
for(let entry of sorted) {
delete entry[defaultKey];
}
}
}
return sorted;
});
eleventyConfig.addFilter("getObjectKey", getObjectKey);
function filterResultsToUrls(obj, urls = [], skipKeys = []) {
let arr = [];
for(let key in obj) {
if(skipKeys.indexOf(key) > -1) {
continue;
}
let result;
let newestFilename = Object.keys(obj[key]).sort().pop();
result = obj[key][newestFilename];
// urls comes from sites[vertical].urls, all requestedUrls (may not include trailing slash)
if(urls === true || result && hasUrl(urls, result.requestedUrl)) {
arr.push(obj[key]);
}
}
return arr;
}
eleventyConfig.addFilter("getSites", (results, sites, vertical, skipKeys = []) => {
let urls = sites[vertical].urls;
let isIsolated = sites[vertical].options && sites[vertical].options.isolated === true;
let prunedResults = isIsolated ? results[vertical] : results;
return filterResultsToUrls(prunedResults, urls, skipKeys);
});
// Deprecated, use `getSites` instead, it works with isolated categories
eleventyConfig.addFilter("filterToUrls", filterResultsToUrls);
eleventyConfig.addFilter("hundoCount", (entry) => {
let count = 0;
if(entry.lighthouse.performance === 1) {
count++;
}
if(entry.lighthouse.accessibility === 1) {
count++;
}
if(entry.lighthouse.bestPractices === 1) {
count++;
}
if(entry.lighthouse.seo === 1) {
count++;
}
return count;
});
eleventyConfig.addFilter("notGreenCircleCount", (entry) => {
let count = 0;
if(entry.lighthouse.performance < .9) {
count++;
}
if(entry.lighthouse.accessibility < .9) {
count++;
}
if(entry.lighthouse.bestPractices < .9) {
count++;
}
if(entry.lighthouse.seo < .9) {
count++;
}
return count;
});
eleventyConfig.addFilter("hundoCountTotals", (counts, entry) => {
if(!entry.error && !isNaN(entry.lighthouse.performance)) {
counts.total++;
}
if(entry.lighthouse.performance === 1) {
counts.performance++;
}
if(entry.lighthouse.accessibility === 1) {
counts.accessibility++;
}
if(entry.lighthouse.bestPractices === 1) {
counts.bestPractices++;
}
if(entry.lighthouse.seo === 1) {
counts.seo++;
}
if(entry.lighthouse.performance === 1 && entry.lighthouse.accessibility === 1 && entry.lighthouse.bestPractices === 1 && entry.lighthouse.seo === 1) {
counts.perfect++;
}
return counts;
});
eleventyConfig.addFilter("lighthouseTotal", getLighthouseTotal);
eleventyConfig.addFilter("addLighthouseTotals", (arr) => {
/* special case */
for(let obj of arr) {
for(let entry in obj) {
if(obj[entry].lighthouse) {
obj[entry].lighthouse[":lhtotal"] = getLighthouseTotal(obj[entry]);
}
}
}
return arr;
});
eleventyConfig.addFilter("toJSON", function(obj) {
return JSON.stringify(obj);
});
eleventyConfig.addFilter("calc", calc);
eleventyConfig.addPairedShortcode("starterMessage", (htmlContent) => {
if(process.env.SITE_NAME !== "speedlify") {
return htmlContent;
}
return "";
});
// Assets
eleventyConfig.addPassthroughCopy({
"./node_modules/chartist/dist/chartist.js": "chartist.js",
"./node_modules/chartist/dist/chartist.css.map": "chartist.css.map",
});
eleventyConfig.addWatchTarget("./assets/");
eleventyConfig.setBrowserSyncConfig({
ui: false,
ghostMode: false
});
};