-
Notifications
You must be signed in to change notification settings - Fork 20
/
.eleventy.js
239 lines (194 loc) · 8.58 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
const cheerio = require('cheerio')
const markdownIt = require('markdown-it')
const markdownItAnchor = require('markdown-it-anchor')
const pluginRss = require('@11ty/eleventy-plugin-rss')
const markdownItClass = require("markdown-it-class");
const site = require('./src/_data/site')
const config = require('./src/_data/config')
const helpers = require('./src/_data/helpers')
const navigation = require('./src/_data/navigation')
const collections = require('./src/config/collections')
const IMAGES_EXTENSIONS = ['jpg', 'png', 'svg']
module.exports = function (eleventyConfig) {
eleventyConfig.setDataDeepMerge(true)
eleventyConfig.addPlugin(pluginRss)
eleventyConfig.addPassthroughCopy('src/assets/**/*.{json,woff,woff2}') // Json and Font copy
eleventyConfig.addPassthroughCopy({'src/assets/vendors': 'assets/vendors'})
/**
* As we don't need all the services provided by the base services file, we use our local `tarteaucitron.services.js` file
* Also, we don't need to copy the Tarteaucitron CSS folder as we have our own
*/
eleventyConfig.addPassthroughCopy({'node_modules/tarteaucitronjs/lang': 'assets/vendors/tarteaucitronjs/lang'})
eleventyConfig.addPassthroughCopy({'node_modules/tarteaucitronjs/!(tarteaucitron.services.js)': 'assets/vendors/tarteaucitronjs'})
// Copy/paste all images and examples contents (they are not processed by 11ty. See the .eleventyignore file)
eleventyConfig.addPassthroughCopy(`src/**/*.{${IMAGES_EXTENSIONS.join(',')}}`)
eleventyConfig.addPassthroughCopy(`src/en/web/components-examples/**/*.{html,css,js}`)
eleventyConfig.addPassthroughCopy(`src/fr/web/exemples-de-composants/**/*.{html,css,js}`)
eleventyConfig.addPassthroughCopy(`src/fr/articles/**/*.{html,css,js}`)
eleventyConfig.addPassthroughCopy(`src/en/articles/**/*.{html,css,js}`)
eleventyConfig.addPassthroughCopy(`src/**/*.xlsx`)
eleventyConfig.addPassthroughCopy(`src/**/*.mp3`)
eleventyConfig.addPassthroughCopy(`src/**/*.apk`)
eleventyConfig.addPassthroughCopy(`src/**/*.pdf`)
/**
* Override markdown generator to create ids automatically on headings
*/
eleventyConfig.setLibrary('md',
markdownIt(config.eleventy.markdownIt)
.use(markdownItAnchor, config.eleventy.markdownItAnchor)
.use(config.eleventy.markdownItCustomParser)
.use(markdownItClass, {
h2: ['h2-focus']
})
)
eleventyConfig.addShortcode('currentYear', function () {
return String(new Date().getFullYear())
})
eleventyConfig.addShortcode('localizedDate', function (date = null, locale = null) {
if (date === null) {
throw new Error('[localizedDate]: no date provided')
}
if (locale === null) {
throw new Error('[localizedDate]: no locale provided')
}
const options = {
day: '2-digit',
month: 'long',
year: 'numeric'
}
return new Intl.DateTimeFormat(locale, options).format(date)
})
/**
* @see https://stackoverflow.com/questions/6393943/convert-javascript-string-in-dot-notation-into-an-object-reference#answer-6394168
*/
eleventyConfig.addFilter('translate', function (key, to = null) {
const targetedLocale = to || this.ctx.locale
return helpers.translate(key, targetedLocale)
})
eleventyConfig.addFilter('redirectionPermalink', function (path) {
// We already have a redirection template for the root page, so we don't want to generate it here
if (path === 'index.html') {
return false
}
// We remove the extension to prevent 11ty from throwing errors as it tries to write, for example : `/en/all.html/index.html`
if (path.includes('index.html')) {
return `/${path.replace('index.html', '')}/`
}
return `/${path}/`
})
eleventyConfig.addNunjucksFilter('slugify', function (str) {
return config.eleventy.markdownItAnchor.slugify(str)
})
eleventyConfig.addNunjucksFilter('getDefaultLocale', function (locales, outputKey = null) {
return helpers.getDefaultLocale(locales, outputKey)
})
eleventyConfig.addNunjucksFilter('isHomeUrl', function (url) {
return Object.keys(site.locales).includes(url.replace(/\//g, ''))
})
eleventyConfig.addNunjucksFilter('shouldDisplaySecondaryNavigation', function (page, locale) {
// Get the last nav object from the navigation data file which `href` property is included in the current page's URL
const pageNavigationObject = navigation.main[locale].filter(obj => page.url.includes(obj.href)).pop()
return pageNavigationObject && pageNavigationObject.hasOwnProperty('subLevels') && pageNavigationObject.subLevels.length > 0
})
eleventyConfig.addNunjucksFilter('getBreadcrumb', function (data, locale, page, pageTitle) {
const breadcrumb = []
const navigation = data[locale]
const homeURL = `/${locale}/`
const home = navigation.filter(path => path.href === homeURL)[0]
/**
* @param target
* @returns {boolean}
*/
function isActive(target) {
return target === page.url
}
function addBreadcrumbItem(item) {
breadcrumb.push({
href: item.href,
label: item.label,
isActive: isActive(item.href)
})
}
/**
* @param url
* @returns {boolean}
*/
function breadcrumbContains(url) {
return breadcrumb.some(item => item.href === url)
}
addBreadcrumbItem(home)
navigation.forEach(item => {
if (page.url.includes(item.href) && !breadcrumbContains(item.href)) {
addBreadcrumbItem(item)
}
if (item.subLevels) {
item.subLevels.forEach(subLevel => {
if (page.url.includes(subLevel.href) && !breadcrumbContains(subLevel.href)) {
addBreadcrumbItem(subLevel)
}
})
}
})
// Generally the last level, which is not included in the navigation.main data (articles, ...)
if (!breadcrumbContains(page.url)) {
addBreadcrumbItem({
href: page.url,
label: pageTitle
})
}
return breadcrumb
})
eleventyConfig.addNunjucksFilter('getPostsTags', function (posts) {
const tags = new Set()
posts.forEach(post => {
if (!post.data.tags) {
return
}
post.data.tags.forEach(item => tags.add(item))
})
return tags
})
eleventyConfig.addNunjucksFilter('getHeadingsForToc', function (content) {
if (typeof content === 'undefined') {
console.warn('[getHeadingsForToc filter]: `content` parameter is undefined. Are you sure you imported the ui macros `with context` ?')
}
const $ = cheerio.load(content)
const permalinkSymbol = config.eleventy.markdownItAnchor.permalinkSymbol
const items = []
$(config.toc.selector.join(',')).each(function () {
items.push({
id: $(this).attr('id'),
text: $(this).text().replace(permalinkSymbol, '').trim(),
level: $(this)[0].name.substring(1)
})
})
return items
})
eleventyConfig.addNunjucksFilter('limit', function (arr, limit) {
return arr.slice(0, limit)
})
eleventyConfig.addNunjucksFilter('filterArrayOfObjByKey', function (arr, key, value) {
return arr.filter(e => e[key] === value)
})
eleventyConfig.addNunjucksFilter('sortByField', function (values, field) {
return values.slice().sort((a, b) => a.data[field].localeCompare(b.data[field]))
})
eleventyConfig.addNunjucksFilter('getSorted404Messages', function (locales) {
return Object.values(locales).sort((a, b) => !b.default && a.default ? -1 : 1)
})
// Create collections & dynamically suffix their name by the locale key
for (let locale in collections) {
collections[locale].forEach(collection => {
eleventyConfig.addCollection(`${collection.name}_${locale}`, c => c.getFilteredByGlob(collection.glob))
})
}
// Because we no longer parse these files with 11ty, it cannot refresh the browser on changes
eleventyConfig.setBrowserSyncConfig({
files: ['_site/assets/*.css', '_site/assets/*.js']
})
return {
dir: {
input: 'src'
}
}
}