2022-07-08 21:37:55 +00:00
|
|
|
---
|
|
|
|
// @ts-ignore
|
|
|
|
import loader from 'virtual:image-loader';
|
|
|
|
import { getPicture } from '../src/get-picture.js';
|
|
|
|
import type { ImageAttributes, ImageMetadata, OutputFormat, PictureAttributes, TransformOptions } from '../src/types.js';
|
|
|
|
|
2022-07-19 19:21:58 +00:00
|
|
|
export interface LocalImageProps extends Omit<PictureAttributes, 'src' | 'width' | 'height'>, Omit<TransformOptions, 'src'>, Pick<ImageAttributes, 'loading' | 'decoding'> {
|
2022-07-08 21:37:55 +00:00
|
|
|
src: ImageMetadata | Promise<{ default: ImageMetadata }>;
|
2022-07-19 19:21:58 +00:00
|
|
|
alt?: string;
|
2022-07-08 21:37:55 +00:00
|
|
|
sizes: HTMLImageElement['sizes'];
|
|
|
|
widths: number[];
|
|
|
|
formats?: OutputFormat[];
|
|
|
|
}
|
|
|
|
|
2022-07-19 19:21:58 +00:00
|
|
|
export interface RemoteImageProps extends Omit<PictureAttributes, 'src' | 'width' | 'height'>, TransformOptions, Pick<ImageAttributes, 'loading' | 'decoding'> {
|
2022-07-08 21:37:55 +00:00
|
|
|
src: string;
|
2022-07-19 19:21:58 +00:00
|
|
|
alt?: string;
|
2022-07-08 21:37:55 +00:00
|
|
|
sizes: HTMLImageElement['sizes'];
|
|
|
|
widths: number[];
|
|
|
|
aspectRatio: TransformOptions['aspectRatio'];
|
|
|
|
formats?: OutputFormat[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export type Props = LocalImageProps | RemoteImageProps;
|
|
|
|
|
2022-07-19 19:21:58 +00:00
|
|
|
const { src, alt, sizes, widths, aspectRatio, formats = ['avif', 'webp'], loading = 'lazy', decoding = 'async', ...attrs } = Astro.props as Props;
|
2022-07-08 21:37:55 +00:00
|
|
|
|
|
|
|
const { image, sources } = await getPicture({ loader, src, widths, formats, aspectRatio });
|
|
|
|
---
|
|
|
|
|
|
|
|
<picture {...attrs}>
|
|
|
|
{sources.map(attrs => (
|
|
|
|
<source {...attrs} {sizes}>))}
|
2022-07-19 19:21:58 +00:00
|
|
|
<img {...image} {loading} {decoding} {alt} />
|
2022-07-08 21:37:55 +00:00
|
|
|
</picture>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
img {
|
|
|
|
content-visibility: auto;
|
|
|
|
}
|
|
|
|
</style>
|