2022-07-08 21:37:55 +00:00
|
|
|
---
|
2022-07-22 23:01:56 +00:00
|
|
|
import { getPicture } from '../dist/index.js';
|
2022-09-01 21:24:07 +00:00
|
|
|
import { warnForMissingAlt } from './index.js';
|
2023-01-18 02:41:50 +00:00
|
|
|
import type { PictureComponentLocalImageProps, PictureComponentRemoteImageProps } from './index.js';
|
2023-04-10 12:09:02 +00:00
|
|
|
import type { GetPictureResult } from '../src/lib/get-picture.js';
|
2022-07-08 21:37:55 +00:00
|
|
|
|
2023-01-18 02:41:50 +00:00
|
|
|
export type Props = PictureComponentLocalImageProps | PictureComponentRemoteImageProps;
|
2022-07-08 21:37:55 +00:00
|
|
|
|
2022-08-06 04:39:26 +00:00
|
|
|
const {
|
|
|
|
src,
|
|
|
|
alt,
|
|
|
|
sizes,
|
|
|
|
widths,
|
|
|
|
aspectRatio,
|
2022-09-09 20:13:59 +00:00
|
|
|
fit,
|
2022-09-07 17:22:11 +00:00
|
|
|
background,
|
2022-09-09 20:13:59 +00:00
|
|
|
position,
|
2022-08-06 04:39:26 +00:00
|
|
|
formats = ['avif', 'webp'],
|
|
|
|
loading = 'lazy',
|
|
|
|
decoding = 'async',
|
|
|
|
...attrs
|
2023-01-18 02:41:50 +00:00
|
|
|
} = Astro.props;
|
2022-07-08 21:37:55 +00:00
|
|
|
|
2022-09-01 21:24:07 +00:00
|
|
|
if (alt === undefined || alt === null) {
|
|
|
|
warnForMissingAlt();
|
|
|
|
}
|
|
|
|
|
2023-04-10 12:09:02 +00:00
|
|
|
const { image, sources }: GetPictureResult = await getPicture({
|
2022-09-09 20:13:59 +00:00
|
|
|
src,
|
|
|
|
widths,
|
|
|
|
formats,
|
|
|
|
aspectRatio,
|
|
|
|
fit,
|
|
|
|
background,
|
|
|
|
position,
|
2023-01-18 02:41:50 +00:00
|
|
|
alt,
|
2022-09-09 20:13:59 +00:00
|
|
|
});
|
2022-09-22 21:01:38 +00:00
|
|
|
|
|
|
|
delete image.width;
|
|
|
|
delete image.height;
|
2022-07-08 21:37:55 +00:00
|
|
|
---
|
|
|
|
|
2022-10-20 19:42:36 +00:00
|
|
|
<picture>
|
2022-08-06 04:39:26 +00:00
|
|
|
{sources.map((attrs) => <source {...attrs} {sizes} />)}
|
2023-02-07 02:25:17 +00:00
|
|
|
<img {...image} {loading} {decoding} {...attrs} />
|
2022-07-08 21:37:55 +00:00
|
|
|
</picture>
|