2020-06-19 23:47:44 +02:00
|
|
|
const rssPlugin = require('@11ty/eleventy-plugin-rss');
|
|
|
|
const syntaxHighlight = require('@11ty/eleventy-plugin-syntaxhighlight');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
// Import filters
|
|
|
|
const dateFilter = require('./src/filters/date-filter.js');
|
|
|
|
const markdownFilter = require('./src/filters/markdown-filter.js');
|
|
|
|
const w3DateFilter = require('./src/filters/w3-date-filter.js');
|
|
|
|
|
|
|
|
// Import transforms
|
|
|
|
const htmlMinTransform = require('./src/transforms/html-min-transform.js');
|
|
|
|
const parseTransform = require('./src/transforms/parse-transform.js');
|
|
|
|
|
|
|
|
// Import data files
|
|
|
|
const site = require('./src/_data/site.json');
|
|
|
|
|
|
|
|
module.exports = function(config) {
|
|
|
|
// Filters
|
|
|
|
config.addFilter('dateFilter', dateFilter);
|
|
|
|
config.addFilter('markdownFilter', markdownFilter);
|
|
|
|
config.addFilter('w3DateFilter', w3DateFilter);
|
|
|
|
|
|
|
|
// Layout aliases
|
|
|
|
config.addLayoutAlias('home', 'layouts/home.njk');
|
|
|
|
|
|
|
|
// Transforms
|
|
|
|
config.addTransform('htmlmin', htmlMinTransform);
|
|
|
|
config.addTransform('parse', parseTransform);
|
|
|
|
|
|
|
|
// Passthrough copy
|
|
|
|
config.addPassthroughCopy('src/fonts');
|
|
|
|
config.addPassthroughCopy('src/images');
|
|
|
|
config.addPassthroughCopy('src/js');
|
|
|
|
config.addPassthroughCopy('src/admin/config.yml');
|
|
|
|
config.addPassthroughCopy('src/admin/previews.js');
|
|
|
|
config.addPassthroughCopy('node_modules/nunjucks/browser/nunjucks-slim.js');
|
|
|
|
config.addPassthroughCopy('src/robots.txt');
|
2020-06-23 13:44:10 +02:00
|
|
|
config.addPassthroughCopy('src/form');
|
2020-06-19 23:47:44 +02:00
|
|
|
|
|
|
|
const now = new Date();
|
|
|
|
|
|
|
|
// Custom collections
|
|
|
|
const livePosts = post => post.date <= now && !post.data.draft;
|
2020-07-15 23:05:36 +02:00
|
|
|
const newsPosts = post => post.data.type === 'news';
|
|
|
|
const eventPosts = post => post.data.type === 'event';
|
|
|
|
|
2020-06-19 23:47:44 +02:00
|
|
|
config.addCollection('posts', collection => {
|
|
|
|
return [
|
2020-07-15 23:05:36 +02:00
|
|
|
...collection.getFilteredByGlob('./src/posts/*.md')
|
2020-06-19 23:47:44 +02:00
|
|
|
].reverse();
|
|
|
|
});
|
2020-07-15 23:05:36 +02:00
|
|
|
config.addCollection('news', collection => {
|
|
|
|
return [
|
|
|
|
...collection.getFilteredByGlob('./src/posts/*.md').filter(newsPosts)
|
|
|
|
].reverse();
|
|
|
|
});
|
|
|
|
config.addCollection('events', collection => {
|
|
|
|
return [
|
|
|
|
...collection.getFilteredByGlob('./src/posts/*.md').filter(eventPosts)
|
|
|
|
].reverse();
|
2020-06-19 23:47:44 +02:00
|
|
|
});
|
|
|
|
config.addCollection('newsFeed', collection => {
|
|
|
|
return [...collection.getFilteredByGlob('./src/posts/*.md').filter(livePosts)]
|
|
|
|
.reverse()
|
|
|
|
.slice(0, site.maxNewsPerPage);
|
|
|
|
});
|
2020-07-13 20:36:44 +02:00
|
|
|
config.addCollection('members', collection => {
|
|
|
|
return [...collection.getFilteredByGlob("./src/members/*.md")];
|
|
|
|
});
|
|
|
|
config.addCollection('profiles', collection => {
|
|
|
|
return [...collection.getFilteredByGlob("./src/members/*.md")]
|
|
|
|
.slice(0, site.maxProfilePreview);
|
|
|
|
});
|
2020-07-16 00:11:48 +02:00
|
|
|
config.addCollection('customers', collection => {
|
|
|
|
return [...collection.getFilteredByGlob("./src/customers/*.md")]
|
|
|
|
.reverse()
|
|
|
|
.slice(0, site.maxSponsorPerPage);
|
|
|
|
});
|
2020-07-16 13:12:24 +02:00
|
|
|
config.addCollection('sponsors', collection => {
|
|
|
|
return [...collection.getFilteredByGlob("./src/sponsors/*.md")]
|
|
|
|
.reverse()
|
|
|
|
.slice(0, site.maxSponsorPerPage);
|
|
|
|
});
|
2020-07-13 20:36:44 +02:00
|
|
|
|
2020-06-19 23:47:44 +02:00
|
|
|
// Plugins
|
|
|
|
config.addPlugin(rssPlugin);
|
|
|
|
config.addPlugin(syntaxHighlight);
|
|
|
|
|
|
|
|
// 404
|
|
|
|
config.setBrowserSyncConfig({
|
|
|
|
callbacks: {
|
|
|
|
ready: function(err, browserSync) {
|
|
|
|
const content_404 = fs.readFileSync('dist/404.html');
|
|
|
|
|
|
|
|
browserSync.addMiddleware('*', (req, res) => {
|
|
|
|
// Provides the 404 content without redirect.
|
|
|
|
res.write(content_404);
|
|
|
|
res.end();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Watch sass
|
|
|
|
// config.addWatchTarget("./src/scss/");
|
|
|
|
|
|
|
|
return {
|
|
|
|
dir: {
|
|
|
|
input: 'src',
|
|
|
|
output: 'dist'
|
|
|
|
},
|
|
|
|
passthroughFileCopy: true,
|
2020-06-26 16:23:50 +02:00
|
|
|
// pathPrefix: '/preprod' //TODO remove when prod
|
2020-06-19 23:47:44 +02:00
|
|
|
};
|
|
|
|
};
|