-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eleventy.js
142 lines (121 loc) · 3.78 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
const { DateTime } = require("luxon");
const syntaxHighlight = require("@11ty/eleventy-plugin-syntaxhighlight");
const htmlmin = require("html-minifier");
const { readFileSync } = require("fs");
const { join } = require("path");
module.exports = function (eleventyConfig) {
// Disable automatic use of your .gitignore
eleventyConfig.setUseGitIgnore(false);
// Merge data instead of overriding
eleventyConfig.setDataDeepMerge(true);
//#region Filters
eleventyConfig.addFilter("readableDate", (dateObj) => {
return DateTime.fromJSDate(dateObj, { zone: "utc" }).toFormat(
"dd LLL yyyy"
);
});
eleventyConfig.addFilter("loadTesterJson", (tester) => {
return JSON.parse(
readFileSync(join(__dirname, "src/_reviews", tester + ".json"), "utf-8")
);
});
eleventyConfig.addFilter("loadTestersJson", (testers) => {
const testersJson = [];
for (const tester of testers ?? []) {
testersJson.push(
JSON.parse(
readFileSync(
join(__dirname, "src/_reviews", tester + ".json"),
"utf-8"
)
)
);
}
return testersJson;
});
const getReviewValueArray = (review) => {
const { name, restaurant, burger, ...scores } = review;
return Object.values(scores).filter((val) => val > 0);
};
eleventyConfig.addFilter("totalScore", (testers) => {
if (testers.length === 0) return 6;
return (
Math.round(
(testers.reduce(
(sum, review) =>
sum +
getReviewValueArray(review).reduce((acc, curr) => acc + curr, 0) /
getReviewValueArray(review).length,
0
) /
testers.length) *
2
) / 2
);
});
eleventyConfig.addFilter("testerScore", (review) => {
return (
Math.round(
([
review.bunScore,
review.pattyScore,
review.timingScore,
review.drinksScore,
review.varietyScore,
review.ingredientScore,
review.valueForMoneyScore,
review.serviceScore,
review.ambienteScore,
].reduce((acc, curr) => acc + curr, 0) /
9) *
2
) / 2
);
});
//#endregion
//#region Shortcodes
eleventyConfig.addNunjucksShortcode("rating", function (score, size) {
return `<span
class="h-[${size}px] w-[${size * 5}px] rating relative text-primary"
style="--rating:${(6 - score) % 6}; --size: ${size}px"
></span>`;
});
//#endregion
// Syntax Highlighting for Code blocks
eleventyConfig.addPlugin(syntaxHighlight);
// Copy Static Files to /_Site
eleventyConfig.addPassthroughCopy({
"./src/admin/config.yml": "./admin/config.yml",
"./node_modules/alpinejs/dist/cdn.min.js": "./static/js/alpine.js",
"./node_modules/prismjs/themes/prism-tomorrow.css":
"./static/css/prism-tomorrow.css",
"./src/static/css/font-faces.css": "./static/css/font-faces.css",
});
// Copy Image Folder to /_site
eleventyConfig.addPassthroughCopy("./src/static/img");
// Copy Uploads Folder to /_site
eleventyConfig.addPassthroughCopy("./src/static/uploads");
// Copy Fonts Folder to /_site
eleventyConfig.addPassthroughCopy("./src/static/fonts");
// Minify HTML
eleventyConfig.addTransform("htmlmin", function (content, outputPath) {
// Eleventy 1.0+: use this.inputPath and this.outputPath instead
if (outputPath.endsWith(".njk")) {
let minified = htmlmin.minify(content, {
useShortDoctype: true,
removeComments: true,
collapseWhitespace: true,
});
return minified;
}
return content;
});
// Let Eleventy transform HTML files as nunjucks
// So that we can use .html instead of .njk
return {
dir: {
input: "src",
},
htmlTemplateEngine: "njk",
};
};