From c8aabb7c2a13976813859a82874164d73a421cae Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 4 Feb 2024 13:00:36 -0800 Subject: [PATCH] chore: clean up --- config/shortcodes/index.js | 73 ++++++++++++++++---------------------- package.json | 2 +- 2 files changed, 32 insertions(+), 43 deletions(-) diff --git a/config/shortcodes/index.js b/config/shortcodes/index.js index a86a7cc5..fd770162 100644 --- a/config/shortcodes/index.js +++ b/config/shortcodes/index.js @@ -1,15 +1,11 @@ -import Image from '@11ty/eleventy-img' -import path from 'path' -import htmlmin from 'html-minifier-terser' +import Image from '@11ty/eleventy-img'; +import path from 'path'; +import htmlmin from 'html-minifier-terser'; -const stringifyAttributes = (attributeMap) => { - return Object.entries(attributeMap) - .map(([attribute, value]) => { - if (typeof value === 'undefined') return ''; - return `${attribute}="${value}"`; - }) +const stringifyAttributes = (attributeMap) => + Object.entries(attributeMap) + .map(([attribute, value]) => (value === undefined ? '' : `${attribute}="${value}"`)) .join(' '); -}; export const img = async ( src, @@ -20,13 +16,18 @@ export const img = async ( icon, maxWidth = 1248, sizes = '90vw', - formats = ['avif', 'webp', 'jpeg'], + formats = ['avif', 'webp', 'jpeg'] ) => { - const isLocal = src.includes('src/assets') + const isLocal = src.includes('src/assets'); const imageExists = async () => { - const isOk = await fetch(src, { method: 'HEAD' }).then(res => res.ok).catch(() => false) - return isOk - } + try { + const isOk = await fetch(src, { method: 'HEAD' }).then((res) => res.ok); + return isOk; + } catch { + return false; + } + }; + const generateImage = async () => { const widths = [320, 570, 880, 1024, 1248]; const metadata = await Image(src, { @@ -35,8 +36,7 @@ export const img = async ( outputDir: './_site/assets/img/cache/', urlPath: '/assets/img/cache/', filenameFormat: (id, src, width, format) => { - const extension = path.extname(src); - const name = path.basename(src, extension); + const { ext, name } = path.parse(src); return `${name}-${width}w.${format}`; }, }); @@ -44,13 +44,12 @@ export const img = async ( const lowsrc = metadata.jpeg[metadata.jpeg.length - 1]; const imageSources = Object.values(metadata) - .map((imageFormat) => { - return ` `; - }) + .map( + (imageFormat) => + `` + ) .join('\n'); const imgageAttributes = stringifyAttributes({ @@ -63,25 +62,15 @@ export const img = async ( decoding: 'async', }); - const imageElement = ` - ${imageSources} - - `; + const imageElement = `${imageSources}`; return htmlmin.minify(imageElement, { collapseWhitespace: true }); - } - const generatePlaceholder = async () => { - const placeholderElement = `
- ${icon} -
` + }; + const generatePlaceholder = async () => { + const placeholderElement = `
${icon}
`; return htmlmin.minify(placeholderElement, { collapseWhitespace: true }); - } - if (isLocal) return await generateImage(); - if (!isLocal) { - return await imageExists().then(async exists => { - if (exists) return await generateImage(); - if (!exists) return await generatePlaceholder(); - }) - } -}; + }; + + return isLocal ? await generateImage() : await imageExists().then(async (exists) => (exists ? await generateImage() : await generatePlaceholder())); +}; \ No newline at end of file diff --git a/package.json b/package.json index 081f5845..5c5e69d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "5.3.10", + "version": "5.3.11", "description": "The source for my personal site. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": {