An Astro component for rendering a responsive <img> element for an image fetched from Sanity
npm install @otterstack/sanity-img-astroSuccessor to astro-sanity-picture.
An astro framework component for rendering responsive elements for images fetched from Sanity. It will generate the elements with a srcset optimised for a range of resolutions and formats, using sanity's image API to serve the optimised images. Then you provide the sizes attribute, to ensure the browser delivers the ideal source. Refer to Responsive images - MDN for information on providing responsive images.
Then usage can be as simple as:
``astro`
---
import SanityImg from "@otterstack/sanity-img-astro"
---
sizes="(min-width:768px) 50vw, 100vw"
/>
First import it:
`ts`
import sanityImg from "@otterstack/sanity-img-astro/integration";
and add it to astro.config.mjs after the sanity integration:
`ts
import { defineConfig } from "astro/config";
import svelte from "@astrojs/svelte";
import sanity from "@sanity/astro";
import sanityImg from "@otterstack/sanity-img-astro/integration";
export default defineConfig({
integrations: [
svelte(),
sanity({
projectId: "my-project-id",
dataset: "my-dataset",
useCdn: true,
}),
sanityImg({options: {auto: 'format'}}),
],
});
`
: Image from sanity data
- sizes: Sizes string to allow browser to select ideal image from automatically generated srcset
`astro
---
import SanityImg from "@otterstack/sanity-img-astro"
---
src={myImage}
sizes="(min-width:768px) 50vw, 100vw"
/>
`Additional properties are:
-
imageUrlBuilder: A Sanity Image url builder to use for this element. Only necessary if sanity integration is not used, and default is not set otherwise. Refer to setting defaults for how to set default.
- widths: An array of widths to generate for srcset, or an autowidths struct { maxWidth: number; step: number; } to inform the component how to generate sources up to the image's original size
- options: Additional options to pass to image builderAdditionally, the component extends the
img element, and can accept any other props that img does, eg alt:`astro
src={myImage}
sizes="(min-width:768px) 50vw, 100vw"
alt="My Image"
/>
`Fetching the image with groq
The component will work with images fetched with a simple groq query without fetching any image metadata, eg`ts
const query = groq*[_id == 'homePage'][0] {
`However the tag is able to optimise itself more, such as setting width and height attributes to reduce LCP, when the image metadata is fetched. To assist with this, you can use the
image function.`ts
import { image } from '@otterstack/sanity-img-astro'const query = groq
*[_id == 'homePage'][0] {
`Setting defaults for all components
As noted before, defaults can be provided with the astro integration, otherwise the function setSanityImgDefaults can be used. Defaults will be set across all components across all @otterstack packages: `ts
---
import { setSanityImgDefaults } from "@otterstack/sanity-img-astro";setSanityImgDefaults({ imageUrlBuilder: myImageUrlBuilder, options: {auto: "format" } })
---
``