-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add post on kuadrant process & roadmap
Signed-off-by: David Martin <[email protected]>
- Loading branch information
1 parent
4797c13
commit dd57563
Showing
9 changed files
with
1,301 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node_modules | ||
resources | ||
_site | ||
/img |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
const path = require("path"); | ||
const eleventyImage = require("@11ty/eleventy-img"); | ||
|
||
function relativeToInputPath(inputPath, relativeFilePath) { | ||
let split = inputPath.split("/"); | ||
split.pop(); | ||
|
||
return path.resolve(split.join(path.sep), relativeFilePath); | ||
|
||
} | ||
|
||
function isFullUrl(url) { | ||
try { | ||
new URL(url); | ||
return true; | ||
} catch(e) { | ||
return false; | ||
} | ||
} | ||
|
||
module.exports = function(eleventyConfig) { | ||
// Eleventy Image shortcode | ||
// https://www.11ty.dev/docs/plugins/image/ | ||
eleventyConfig.addAsyncShortcode("image", async function imageShortcode(src, alt, widths, sizes) { | ||
// Full list of formats here: https://www.11ty.dev/docs/plugins/image/#output-formats | ||
// Warning: Avif can be resource-intensive so take care! | ||
let formats = ["avif", "webp", "auto"]; | ||
let input; | ||
if(isFullUrl(src)) { | ||
input = src; | ||
} else { | ||
input = relativeToInputPath(this.page.inputPath, src); | ||
} | ||
|
||
let metadata = await eleventyImage(input, { | ||
widths: widths || ["900,600,300"], | ||
formats, | ||
outputDir: path.join(eleventyConfig.dir.output, "img"), // Advanced usage note: `eleventyConfig.dir` works here because we’re using addPlugin. | ||
}); | ||
|
||
// TODO loading=eager and fetchpriority=high | ||
let imageAttributes = { | ||
alt, | ||
sizes, | ||
loading: "lazy", | ||
decoding: "async", | ||
}; | ||
|
||
return eleventyImage.generateHTML(metadata, imageAttributes); | ||
}); | ||
}; |
Oops, something went wrong.