Compare commits
5 commits
ea61d9fc98
...
4cb2af8e9d
| Author | SHA1 | Date | |
|---|---|---|---|
| 4cb2af8e9d | |||
| 3600f46d03 | |||
| bf6570cad7 | |||
| 4e33f96a44 | |||
| 55b56d4d1a |
7 changed files with 39 additions and 30 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -28,3 +28,6 @@ pnpm-debug.log*
|
||||||
/playwright-report/
|
/playwright-report/
|
||||||
/blob-report/
|
/blob-report/
|
||||||
/playwright/.cache/
|
/playwright/.cache/
|
||||||
|
|
||||||
|
# Custom
|
||||||
|
src/assets/
|
||||||
|
|
|
||||||
|
|
@ -3,18 +3,22 @@ import Layout from '../layouts/Layout.astro'
|
||||||
import Button from '../templates/components/Button/Button.tsx'
|
import Button from '../templates/components/Button/Button.tsx'
|
||||||
import Image from '../templates/components/Image/Image'
|
import Image from '../templates/components/Image/Image'
|
||||||
import Page from '../templates/components/Page/Page'
|
import Page from '../templates/components/Page/Page'
|
||||||
|
import sampleA from '../templates/images/sample.avif'
|
||||||
|
import sampleW from '../templates/images/sample.avif'
|
||||||
|
import OptimizeImage from '../templates/components/Optimizer/OptimizeImage'
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="Home">
|
<Layout title="Home">
|
||||||
<Page alignment='column'>
|
<Page alignment="column">
|
||||||
<h1>Built-in Components</h1>
|
<h1>Built-in Components</h1>
|
||||||
<Button edges='rounded' label="Back to Home" to="/" />
|
<Button edges="rounded" label="Back to Home" to="/" />
|
||||||
|
|
||||||
<section class="image">
|
<section class="image">
|
||||||
<Image src="sample.png" alt="Example Image" size={400} />
|
<!-- <OptimizeImage src="sample.png" size={400} /> -->
|
||||||
<Image src="sample.png" alt="Example Image" size={400} />
|
<Image avif={sampleA.src} webp={sampleW.src} alt="Example Image" size={400} />
|
||||||
<Image src="sample.png" alt="Example Image" size={400} />
|
<Image avif={sampleA.src} webp={sampleW.src} alt="Example Image" size={400} />
|
||||||
<Image src="sample.png" alt="Example Image" size={400} />
|
<Image avif={sampleA.src} webp={sampleW.src} alt="Example Image" size={400} />
|
||||||
|
<Image avif={sampleA.src} webp={sampleW.src} alt="Example Image" size={400} />
|
||||||
</section>
|
</section>
|
||||||
</Page>
|
</Page>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,17 @@
|
||||||
import sharp from 'sharp'
|
|
||||||
import fs from 'fs'
|
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
src: string
|
avif: string
|
||||||
|
webp: string
|
||||||
size?: number
|
size?: number
|
||||||
alt?: string
|
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) => {
|
export default (props: Props) => {
|
||||||
const imageSrc = `src/assets/optimized/${props.src.split('.').slice(0, -1).join('.')}.webp`
|
|
||||||
convertImage(props)
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<picture>
|
<picture>
|
||||||
<source srcset={imageSrc.replace(/\.webp$/, '.avif')} type="image/avif" />
|
<source srcset={props.avif} type="image/avif" />
|
||||||
<source srcset={imageSrc} type="image/webp" />
|
<source srcset={props.webp} type="image/webp" />
|
||||||
<img src={imageSrc} width={props.size} height="auto" decoding="async" loading="lazy" alt={props.alt} />
|
<img width={props.size} height="auto" decoding="async" loading="lazy" alt={props.alt} />
|
||||||
</picture>
|
</picture>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
|
|
|
||||||
21
src/templates/components/Optimizer/OptimizeImage.tsx
Normal file
21
src/templates/components/Optimizer/OptimizeImage.tsx
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
import sharp from 'sharp'
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
src: string
|
||||||
|
size?: number
|
||||||
|
}
|
||||||
|
|
||||||
|
const convertImage = async (props: Props) => {
|
||||||
|
const avifOutputPath = `src/templates/images/${props.src.split('.').slice(0, -1).join('.')}.avif`
|
||||||
|
const webpOutputPath = `src/templates/images/${props.src.split('.').slice(0, -1).join('.')}.webp`
|
||||||
|
|
||||||
|
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) => {
|
||||||
|
convertImage(props)
|
||||||
|
}
|
||||||
|
|
@ -2,7 +2,6 @@ import sharp from 'sharp'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
size?: number
|
size?: number
|
||||||
alt?: string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const convertLogo = async (props: Props) => {
|
const convertLogo = async (props: Props) => {
|
||||||
|
|
|
||||||
BIN
src/templates/images/sample.avif
Normal file
BIN
src/templates/images/sample.avif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.9 KiB |
BIN
src/templates/images/sample.webp
Normal file
BIN
src/templates/images/sample.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.9 KiB |
Loading…
Add table
Add a link
Reference in a new issue