Moved files

This commit is contained in:
Patrick Alvin Alcala 2025-08-28 16:54:24 +08:00
parent 0e6ed89a08
commit 39d01e7a55
12 changed files with 482 additions and 0 deletions

View file

@ -0,0 +1,36 @@
import sharp from 'sharp'
import fs from 'fs'
interface Props {
src: string
size?: number
alt?: string
}
const convertImage = async (props: Props) => {
const avifOutputPath = `src/assets/optimized/${props.src.split('.').slice(0, -1).join('.')}.avif`
const webpOutputPath = `src/assets/optimized/${props.src.split('.').slice(0, -1).join('.')}.webp`
if (!fs.existsSync(webpOutputPath) || !fs.existsSync(avifOutputPath)) {
const avifBuffer = await sharp(`src/assets/images/${props.src}`).avif({ quality: 60 }).resize(props.size).toBuffer()
await sharp(avifBuffer).toFile(avifOutputPath)
const webpBuffer = await sharp(`src/assets/images/${props.src}`).webp({ quality: 75 }).resize(props.size).toBuffer()
await sharp(webpBuffer).toFile(webpOutputPath)
}
}
export default (props: Props) => {
const imageSrc = `src/assets/optimized/${props.src.split('.').slice(0, -1).join('.')}.webp`
convertImage(props)
return (
<>
<picture>
<source srcset={imageSrc.replace(/\.webp$/, '.avif')} type="image/avif" />
<source srcset={imageSrc} type="image/webp" />
<img src={imageSrc} width={props.size} height="auto" decoding="async" loading="lazy" alt={props.alt} />
</picture>
</>
)
}