-
-
Notifications
You must be signed in to change notification settings - Fork 495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
addPreprocessor
Configuration API method to Ignore Files and simplify "Draft" templates
#188
Comments
Oh, I do like this. The ability to run a filter callback on the found files array before processing would have a lot of utility, I think. |
Can you upvote your original post? This is going into the new feature queue |
This repository is now using lodash style issue management for enhancements. This means enhancement issues will now be closed instead of leaving them open. The enhancement backlog can be found here: https://github.com/11ty/eleventy/issues?utf8=%E2%9C%93&q=label%3Aneeds-votes+sort%3Areactions-%2B1-desc+ Don’t forget to upvote the top comment with 👍! |
@zachleat - love that you adopted the lodash format. First time I am seeing the explanation. Makes perfect sense. Sort of feel like this should be a GitHub plugin that handles this. Can't wait to see someone monetize the concept. Really happy you like the concept. Is there anything short term that would make sense to do besides having a custom collection to build links that are not in draft, and crawling the output and remove pages that were listed in draft? Seems like more work than adding the initial feature, but I am struggling to wrap my head around how the code is organized, no offense. |
I have a related need that this would help with... I'd like to be able to have 'template' files in each of my directories that I can duplicate when I want to create a new post. They'd have standard front-matter applied so my posts are more consistent. My current strategy is just to give them an extension eleventy doesn't recognise. But being able to mark them as drafts would be nicer. |
@zachleat - what is the target vote count. We are currently sitting at 12... Would love to see this feature make it into the next branch. For production we are currently taking the output, and then removing the files individually, and ensuring draft files are not listed as part of a collection to not show in the menu. Not ideal. =) |
This is also high on my wish list. I've currently got a load of files sat uncommitted because I don't want them to get processed on production. I've got a secondary use for this - I've made a This is useful for dev, but obviously I don't want it rendered in prod. |
@edwardhorsford - Stats page sounds really cool, would that be a good feature to "bake" into Eleventy? Would be nice to see a visual output for sure. |
Very excited for this feature. |
@edwardhorsford It isn't a JavaScript solution, but to achieve something similar I added this line to my
Now all drafts or templates prepended with an underscore (e.g. EDIT: I ended up moving templates to |
@SeanMcP - I just manually added tags of the existing status. Draft, Staged, Relesed. Then I setup custom collections to pull the right data depending on the enviroment. |
@khrome83 That's definitely a more powerful solution to the problem. Can you share those custom collections in a gist or something? |
Since I'm doing something similiar with the toolbox on my website... // .eleventy.js
function toolbox (collection) {
const toolPages = collection.getFilteredByTag('tool');
toolPages.sort((a, b) => {
const titleA = a.data.title.toLowerCase();
const titleB = b.data.title.toLowerCase();
if (titleA < titleB) {
return -1;
}
if (titleA > titleB) {
return 1;
}
return 0;
});
return toolPages.filter((item) => item.data.tags.filter((tag) => tag !== 'tool').length > 0);
} and on ---
tags:
- tool
- accessibility
- a11y
- validator
- service
layout: tool
title: 'tenon.io'
---
[Tenon.io](https://tenon.io/) Finally, the template: ---
layout: h1
title: 'Toolbox'
---
<p>
Over the time, different handy websites and programs crossed my way.
</p>
<p>
In order to not to have to look them up again and again, I'm listing them here.
</p>
<div data-js="tag-filter"></div>
<ul class="toolbox">
{% for tool in collections.toolbox %}
<li class="tool" data-tags="{{ tool.data.tags | excludeItem('tool') | join(' ') }}">
<p>
<a href="{{ tool.url }}">
{{ tool.data.title }}
</a>
</p>
<p>
Tagged with {{ tool.data.tags | excludeItem('tool') | sort | join(', ') }}
</p>
</li>
{% endfor %}
</ul>
<script type="text/javascript" src="/js/toolbox.js"></script> |
Is there any progress on this? I'd really like to be able to tell Eleventy not to process a file on the basis of frontmatter and maybe a callback / function. If it's possible, please let me know how. I've just discovered this is a significant cause in build times for my site. A file that I thought I was ignoring because of Temporarily deleting the file just now, my build time went from 15 seconds all the way down to 8 seconds |
Yep, similar. I am investigating building a fairly chunky site (with a variety of collections) with Eleventy. Given there are two modes of use: writing content + checking it, vs production build - I've used an environment variable to determine whether to do a "full" or "light" build. That works well for most of my custom collections - I can shave nearly 90s off the build time if I don't even generate those collections. However, I can't shave down the 'default' collection, nor the 'all tags' collection. Actually deleting my "all posts with a tag" paginated template, It looks like the bottleneck is at the point of the 'default' collections, and what gets passed into them; a code-based way of throttling that would be useful. |
Cross posted from #2060 See also this approach using the Configuration API for ignores. I like that folks can decide what convention they want to use for drafts (the example below uses a
In this example |
@zachleat Is there any solution to make "ignores" more specific? For instance iterating over all pages in Eleventy config and add them to ignore list if they fulfill certain criteria? Something like this:
|
@cvh23 I don't think you could. In order for Eleventy to know "items", it'd have to do a full pass of all the pages in order to build the data cascade (and know the front matter for each file, as well as merge w/ directory data files and global data files, etc. to determine what You'd have to find a way to globally map eleventyConfig.addCollection("drafts", collectionApi => {
const $drafts = [...collectionApi.getAll()]
.reduce((pages = [], page = {}) => {
if (!!page.data.draft) {
pages.push(page.data.page.inputPath);
}
return pages;
// Note that the initial `drafts` seed data here is via the `require()`d "./drafts.json" file above.
}, drafts);
// Write the "drafts.json" to disk so we can use for future builds.
fs.writeFile("drafts.json", JSON.stringify($drafts));
return drafts;
}); Then elsewhere in .eleventy.js config: let drafts = [];
try {
drafts = require("./drafts.json");
for (const p of drafts) {
eleventyConfig.ignores.add(p);
}
} catch (err) {
// No "drafts.json" file found. Ignore.
} If I don't have an initial "drafts.json" file, my local test repo will generate 14 pages (including my 4 drafts) but after that first build and the drafts.json file is created via my fake collection, it will generate the 10 non-draft pages. But it's a bit awkward. Because if you end up removing the And you can't call |
I'm a novice at Eleventy but couldn't YAML's built-in variable, |
I don’t think I would note for future visitors that this has been packaged up in the eleventy-base-blog project—there is a small bit of explainer on the README! https://github.com/11ty/eleventy-base-blog#readme |
Eleventy v3.0.0-alpha.17 ships with a very powerful preprocessor API (be careful with this one!) export default function(eleventyConfig) {
// function(name, file extensions, callback)
eleventyConfig.addProcessor("drafts", "njk,md,liquid", (data, content) => {
if(data.draft) {
return false; // Explicit `false` ignores this template the same as `eleventyConfig.ignores` or `.eleventyignore`
}
// You can also modify the rawInput of the template here, be careful!
return `Butts${content}`;
// But unlike transforms: if you return nothing or `undefined`, nothing is changed
});
}; Additional example in the tests here: Lines 1531 to 1549 in f19ef55
This will drastically simplify the |
Additional documentation note: Eleventy Layout files are not subject to preprocessors |
addPreprocessor
Configuration API method to Ignore Files and simplify "Draft" templates
Why are the file extensions prefixed with |
@uncenter Good point! I did do that intentionally as I plan to add support for globs eventually but I think that was overly cautious. I changed it to support both but we’ll probably roll with |
woah, this is so powerful, the ability to modify content programmatically before build is awesome, like I could a banner to posts published before a certain date or the other way around: eleventyConfig.addPreprocessor("outdated", "md", (data, content) => {
if (new Date(data.date).getTime() < new Date("2023-03-12").getTime()) {
return content + `> this is old content`;
}
}) |
What is the recommended way to use drafts / unpublished page fragments in Eleventy 2.0 ? Asking because all related issues have been closed but 3.0 is still marked as beta. |
@openmindculture https://github.com/11ty/eleventy-base-blog/blob/main/eleventy.config.drafts.js has an example. Regardless, |
Docs deploying to https://v3.11ty.dev/docs/config-preprocessors/ |
Ah, it's in Alpha 17. That means I should be able to test it already. Thank you! |
Trying to identify if in
.eleventy.js
if there is a way to determine if I want to process a file or not.I would love it if I can do the following for example -
Frontmatter
.eleventy.js
NPM Scripts
This would allow the ability to not only setup draft or other conditions for publications, but even future date publications (check timestamp), ignore files to specific output targets - Example - api docs & frontend component docs could share a repo, but have two different build targets? Maybe they end up on different domains.
I tried looking through the code to see if I could add support for this, but I am a little unclear what determine what should render outside of the ignoreFiles which takes a full file path. So you would need to scan all files in a prestep to add it too that list running the function passed into the config.
The text was updated successfully, but these errors were encountered: