feat: add config for entire collection

This commit is contained in:
Devin Haska 2024-02-09 15:08:16 -08:00
parent c7679dad26
commit 5f6740c573
2 changed files with 11 additions and 1 deletions

View file

@ -42,8 +42,16 @@ const getPostsByCategory = (collection) => {
return postsByCategory; return postsByCategory;
}; };
const getAllCatalogue = (collection) => {
const items = collection.getFilteredByGlob(
path.join(dir.input, "content/catalogue/**/*.md"),
);
return items.reverse();
};
module.exports = { module.exports = {
getAllPosts, getAllCatalogue,
getAllPostCategories, getAllPostCategories,
getAllPosts,
getPostsByCategory, getPostsByCategory,
}; };

View file

@ -2,6 +2,7 @@ const {
getAllPosts, getAllPosts,
getAllPostCategories, getAllPostCategories,
getPostsByCategory, getPostsByCategory,
getAllCatalogue,
} = require("./config/collections/index.js"); } = require("./config/collections/index.js");
const { dir } = require("./config/constants.js"); const { dir } = require("./config/constants.js");
const { const {
@ -25,6 +26,7 @@ module.exports = (eleventyConfig) => {
eleventyConfig.addCollection("posts", getAllPosts); eleventyConfig.addCollection("posts", getAllPosts);
eleventyConfig.addCollection("categories", getAllPostCategories); eleventyConfig.addCollection("categories", getAllPostCategories);
eleventyConfig.addCollection("postsByCategory", getPostsByCategory); eleventyConfig.addCollection("postsByCategory", getPostsByCategory);
eleventyConfig.addCollection("catalogue", getAllCatalogue);
// --------------------- Custom Filters ----------------------- // --------------------- Custom Filters -----------------------
eleventyConfig.addFilter("entries", entries); eleventyConfig.addFilter("entries", entries);