This commit is contained in:
Cory Dransfeldt 2024-05-01 17:47:43 -07:00
parent a1e1fc70e8
commit dff524e2f2
No known key found for this signature in database
3 changed files with 1 additions and 56 deletions

View file

@ -117,7 +117,6 @@ export default async function (eleventyConfig) {
eleventyConfig.addFilter('slugify', slugifyString) eleventyConfig.addFilter('slugify', slugifyString)
// shortcodes // shortcodes
eleventyConfig.addShortcode('image', img)
eleventyConfig.addShortcode('appVersion', () => appVersion) eleventyConfig.addShortcode('appVersion', () => appVersion)
// transforms // transforms

View file

@ -1,54 +0,0 @@
import Image from '@11ty/eleventy-img'
import htmlmin from 'html-minifier-terser'
const stringifyAttributes = (attributeMap) => {
return Object.entries(attributeMap)
.map(([attribute, value]) => {
if (typeof value === 'undefined') return '';
return `${attribute}="${value}"`;
})
.join(' ');
};
export const img = async (
src,
alt = '',
className,
loading = 'lazy',
sizes = '90vw',
formats = ['avif', 'webp', 'jpg', 'jpeg']
) => {
const widths = [80, 200, 320, 570, 880, 1024, 1248];
const metadata = await Image(src, {
widths: [...widths],
formats: [...formats],
outputDir: './_site/assets/img/cache/',
urlPath: '/assets/img/cache/'
});
const lowsrc = metadata.jpeg[metadata.jpeg.length - 1];
const imageSources = Object.values(metadata)
.map((imageFormat) => {
return ` <source type="${
imageFormat[0].sourceType
}" srcset="${imageFormat
.map((entry) => entry.srcset)
.join(', ')}" sizes="${sizes}">`;
})
.join('\n');
const imageAttributes = stringifyAttributes({
src: lowsrc.url,
width: lowsrc.width,
height: lowsrc.height,
alt,
class: className,
loading,
decoding: 'async',
});
const imageElement = `<picture>${imageSources}<img ${imageAttributes} /></picture>`;
return htmlmin.minify(imageElement, { collapseWhitespace: true });
};

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "13.4.0", "version": "13.4.1",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {