feat: 11ty image plugin + optimize images

This commit is contained in:
Cory Dransfeldt 2023-05-27 19:01:43 -07:00
parent b59886a56e
commit c87e893046
No known key found for this signature in database
5 changed files with 39 additions and 54 deletions

View file

@ -3,6 +3,8 @@ const heroIcons = require('eleventy-plugin-heroicons')
const pluginUnfurl = require('eleventy-plugin-unfurl') const pluginUnfurl = require('eleventy-plugin-unfurl')
const pluginFilesMinifier = require('@sherby/eleventy-plugin-files-minifier') const pluginFilesMinifier = require('@sherby/eleventy-plugin-files-minifier')
const schema = require('@quasibit/eleventy-plugin-schema') const schema = require('@quasibit/eleventy-plugin-schema')
const { eleventyImagePlugin } = require('@11ty/eleventy-img')
const Image = require('@11ty/eleventy-img')
const markdownIt = require('markdown-it') const markdownIt = require('markdown-it')
const markdownItAnchor = require('markdown-it-anchor') const markdownItAnchor = require('markdown-it-anchor')
const markdownItFootnote = require('markdown-it-footnote') const markdownItFootnote = require('markdown-it-footnote')
@ -21,6 +23,7 @@ module.exports = function (eleventyConfig) {
eleventyConfig.addPlugin(pluginUnfurl) eleventyConfig.addPlugin(pluginUnfurl)
eleventyConfig.addPlugin(pluginFilesMinifier) eleventyConfig.addPlugin(pluginFilesMinifier)
eleventyConfig.addPlugin(schema) eleventyConfig.addPlugin(schema)
eleventyConfig.addPlugin(eleventyImagePlugin)
// tailwind watches // tailwind watches
eleventyConfig.addWatchTarget('./tailwind.config.js') eleventyConfig.addWatchTarget('./tailwind.config.js')
@ -89,9 +92,24 @@ module.exports = function (eleventyConfig) {
return md.render(content) return md.render(content)
}) })
// asset_img shortcode // image shortcode
eleventyConfig.addLiquidShortcode('asset_img', (filename, alt) => { eleventyConfig.addShortcode('image', async function (src, alt, css, sizes, loading) {
return `<img class="my-4" src="/assets/img/posts/${filename}" alt="${alt}" />` let metadata = await Image(src, {
widths: [75, 150, 300, 600],
formats: ['webp'],
urlPath: '/assets/img/cache/',
outputDir: './_site/assets/img/cache/',
})
let imageAttributes = {
class: css,
alt,
sizes,
loading: loading || 'lazy',
decoding: 'async',
}
return Image.generateHTML(metadata, imageAttributes)
}) })
return { return {

View file

@ -2,7 +2,7 @@ const ALBUM_DENYLIST = ['no-love-deep-web', 'unremittance']
module.exports = { module.exports = {
artist: (media) => artist: (media) =>
`https://cdn.coryd.dev/artists/min/${media.replace(/\s+/g, '-').toLowerCase()}.webp`, `https://cdn.coryd.dev/artists/${media.replace(/\s+/g, '-').toLowerCase()}.jpg`,
album: (media) => { album: (media) => {
return !ALBUM_DENYLIST.includes(media.name.replace(/\s+/g, '-').toLowerCase()) return !ALBUM_DENYLIST.includes(media.name.replace(/\s+/g, '-').toLowerCase())
? media.image[media.image.length - 1]['#text'].replace( ? media.image[media.image.length - 1]['#text'].replace(
@ -11,8 +11,7 @@ module.exports = {
) )
: `https://cdn.coryd.dev/albums/${media.name.replace(/\s+/g, '-').toLowerCase()}.jpg` : `https://cdn.coryd.dev/albums/${media.name.replace(/\s+/g, '-').toLowerCase()}.jpg`
}, },
tv: (episode) => tv: (episode) => `https://cdn.coryd.dev/tv/${episode.replace(/\s+/g, '-').toLowerCase()}.jpg`,
`https://cdn.coryd.dev/tv/min/${episode.replace(/\s+/g, '-').toLowerCase()}.webp`,
movie: (url, host, cdn) => { movie: (url, host, cdn) => {
return url.replace(host, cdn).replace('600', '200').replace('900', '300') return url.replace(host, cdn).replace('600', '200').replace('900', '300')
}, },

View file

@ -55,13 +55,9 @@ layout: main
{{ artist.playcount }} plays {{ artist.playcount }} plays
</div> </div>
</div> </div>
<img {%- capture artistImg %}{{ artist.name | artist }}{% endcapture -%}
src="{{artist.name | artist}}" {%- capture artistName %}{{ artist.name | escape }}{% endcapture -%}
onerror="this.onerror=null; this.src='/assets/img/media/404-music.jpg'" {% image artistImg, artistName, 'rounded-lg', '225px', 'eager' %}
width="350"
height="350"
class="rounded-lg"
alt="{{artist.name | escape}}" />
</div> </div>
</a> </a>
{% endfor %} {% endfor %}
@ -84,14 +80,9 @@ layout: main
{{ album.artist.name }} {{ album.artist.name }}
</div> </div>
</div> </div>
<img {%- capture albumImg %}{{ album | album }}{% endcapture -%}
src="{{album | album}}" {%- capture albumName %}{{ album.name | escape }}{% endcapture -%}
onerror="this.onerror=null; this.src='/assets/img/media/404-music.jpg'" {% image albumImg, albumName, 'rounded-lg', '225px' %}
width="350"
height="350"
class="rounded-lg"
alt="{{album.name | escape}}"
loading="lazy" />
</div> </div>
</a> </a>
{% endfor %} {% endfor %}
@ -143,14 +134,9 @@ layout: main
<div class="absolute left-1 bottom-2 drop-shadow-md"> <div class="absolute left-1 bottom-2 drop-shadow-md">
<div class="px-1 text-xs font-bold text-white">{{ movie.title }}</div> <div class="px-1 text-xs font-bold text-white">{{ movie.title }}</div>
</div> </div>
<img {%- capture movieImg %}{{movie.image | movie: site.letterboxd-host, site.cdn-movies}}{% endcapture -%}
src="{{movie.image | movie: site.letterboxd-host, site.cdn-movies}}" {%- capture movieName %}{{movie.title | escape}}{% endcapture -%}
onerror="this.onerror=null; this.src='/assets/img/media/404-movie.jpg'" {% image movieImg, movieName, 'rounded-lg w-full', '180px' %}
width="226"
height="337"
class="rounded-lg"
alt="{{movie.title | escape}}"
loading="lazy" />
</div> </div>
</a> </a>
{% endfor %} {% endfor %}
@ -173,14 +159,9 @@ layout: main
{{ episode.show.title }} • <strong>S</strong>{{ episode.episode.season }}<strong>E</strong>{{ episode.episode.number }} {{ episode.show.title }} • <strong>S</strong>{{ episode.episode.season }}<strong>E</strong>{{ episode.episode.number }}
</div> </div>
</div> </div>
<img {%- capture tvImg %}{{episode.show.title | tv}}{% endcapture -%}
src="{{ episode.show.title | tv }}" {%- capture tvName %}{{ episode.episode.title | escape}} {{ episode.show.title | escape }}{% endcapture -%}
onerror="this.onerror=null; this.src='/assets/img/media/404-movie.jpg'" {% image tvImg, tvName, 'rounded-lg w-full', '180px' %}
width="226"
height="337"
class="rounded-lg"
alt="{{ episode.episode.title | escape}} {{ episode.show.title | escape }}"
loading="lazy" />
</div> </div>
</a> </a>
{% endfor %} {% endfor %}

View file

@ -8,11 +8,7 @@
{% for mention in mentions['repost-of'] %} {% for mention in mentions['repost-of'] %}
<li class="-ml-3 inline"> <li class="-ml-3 inline">
<a href={{mention.url}}> <a href={{mention.url}}>
<img {% image mention.author.photo, mention.author.name, 'bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all hover:border-purple-500 dark:hover:border-purple-400', '56px' %}
src="{{mention.author.photo}}"
alt="{{mention.author.name}}"
class="bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all hover:border-purple-500 dark:hover:border-purple-400"
loading="lazy" />
</a> </a>
</li> </li>
{% endfor %} {% endfor %}
@ -26,11 +22,7 @@
{% for mention in mentions['like-of'] %} {% for mention in mentions['like-of'] %}
<li class="-ml-3 inline"> <li class="-ml-3 inline">
<a href={{mention.url}}> <a href={{mention.url}}>
<img {% image mention.author.photo, mention.author.name, 'bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all hover:border-purple-500 dark:hover:border-purple-400', '56px' %}
src="{{mention.author.photo}}"
alt="{{mention.author.name}}"
class="bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all hover:border-purple-500 dark:hover:border-purple-400"
loading="lazy" />
</a> </a>
</li> </li>
{% endfor %} {% endfor %}
@ -43,11 +35,7 @@
{% for mention in mentions['in-reply-to'] %} {% for mention in mentions['in-reply-to'] %}
<div class="border-bottom flex flex-row items-center border-gray-100 pb-4 w-full"> <div class="border-bottom flex flex-row items-center border-gray-100 pb-4 w-full">
<a class="group flex flex-row space-between items-center" href={{mention.url}}> <a class="group flex flex-row space-between items-center" href={{mention.url}}>
<img {% image mention.author.photo, mention.author.name, 'bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all group-hover:border-purple-500 dark:group-hover:border-purple-400', '56px' %}
src="{{mention.author.photo}}"
alt="{{mention.author.name}}"
class="bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all group-hover:border-purple-500 dark:group-hover:border-purple-400"
loading="lazy" />
<div class="ml-3"> <div class="ml-3">
<p class="text-sm group-hover:text-purple-500 dark:group-hover:text-purple-400">{{ mention.content.text }}</p> <p class="text-sm group-hover:text-purple-500 dark:group-hover:text-purple-400">{{ mention.content.text }}</p>
<p class="mt-1 text-xs group-hover:text-purple-500 dark:group-hover:text-purple-400">{{ mention.published | isoDateOnly }}</p> <p class="mt-1 text-xs group-hover:text-purple-500 dark:group-hover:text-purple-400">{{ mention.published | isoDateOnly }}</p>

View file

@ -17,9 +17,8 @@ meta:
image: image:
src: https://coryd.dev/assets/img/avatar.webp src: https://coryd.dev/assets/img/avatar.webp
--- ---
<div class="flex items-center justify-center w-full"> <div class="flex items-center justify-center w-full">
<img class="max-w-xs w-full h-auto mt-0 mb-1" src="/assets/img/avatar.webp" alt="{{ site.name }}" loading="lazy" /> {% image './src/assets/img/avatar.webp', site.name, 'max-w-xs w-full h-auto mt-0 mb-1', '320px', 'eager' %}
</div> </div>
<h1 class="text-xxl font-black -leading-tight tracking-normal dark:text-gray-200 md:text-3xl text-center">Hi, I'm Cory</h1> <h1 class="text-xxl font-black -leading-tight tracking-normal dark:text-gray-200 md:text-3xl text-center">Hi, I'm Cory</h1>