Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@sanity/astro
Advanced tools
This integration enables the Sanity Client in your Astro project and lets you embed Sanity Studio on a route. Astro is an all-in-one web framework that supports a range of UI languages and can be deployed in most places.
In your Astro project, run the following command to install the Sanity integration:
npx astro add @sanity/astro @astrojs/react
Note: @astrojs/react
is only needed if you plan to embed a Sanity Studio in your project.
npm install @astrojs/react @sanity/astro @sanity/client @sanity/visual-editing sanity @types/react-dom @types/react react-dom react
sanity:client
This integration leverages Vite.js' virtual modules with Astro's naming convention (e.g. astro:assets
). Since it's not possible to automatically include module declarations from npm packages, you'll have to add the following line to the env.d.ts
file that usually resides in the src
folder of an Astro project:
/// <reference types="astro/client" />
/// <reference types="@sanity/astro/module" />
You might have to restart the TS Server running in your code editor to get it to resolve types after updating this file. The easiest way to do this is to restart the application.
Configure the integration in your astro.config.mjs
file. The configuration options and methods are the same as for @sanity/client:
import sanity from '@sanity/astro'
import {defineConfig} from 'astro/config'
// https://astro.build/config
export default defineConfig({
integrations: [
sanity({
projectId: '<YOUR-PROJECT-ID>',
dataset: '<YOUR-DATASET-NAME>',
// Set useCdn to false if you're building statically.
useCdn: false,
}),
],
})
This enables the use of sanityClient
in your template files. For example:
---
// /blog/index.astro
import { sanityClient } from "sanity:client";
const posts = await sanityClient.fetch(`*[_type == "post" && defined(slug)] | order(publishedAt desc)`);
---
<h1>Blog</h1>
<ul>
{posts.map((post) => (
<li>
<a href={'/posts/' + post.slug.current} class="post-link">
{post.title}
</a>
</li>
))}
</ul>
Check out this guide for a more elaborate introduction to how to integrate content from Sanity into Astro. You can also look in the examples
folder in this repository for complete implementation examples.
Sanity Studio is a customizable content workspace where you can edit your content. It‘s a Single Page Application that you can keep in its own repository, together with your Astro project as a monorepo, or embedded in your website.
To initialize a Studio in a dedicated folder, you can run npm create sanity@latest
and follow the instructions.
This integration lets you embed a Sanity Studio on a route in your Astro project. To enable it:
sanity.config.ts
(or .js
)projectId
and dataset
to it:// sanity.config.ts
import {defineConfig} from 'sanity'
import {structureTool} from 'sanity/structure'
export default defineConfig({
name: 'project-name',
title: 'Project Name',
projectId: '<YOUR-PROJECT-ID>',
dataset: '<YOUR-DATASET-NAME>',
plugins: [structureTool()],
schema: {
types: [
/* your content types here*/
],
},
})
You can use this configuration file to install plugins, add a schema with document types, add customizations etc. Note that the Studio will be using Astro‘s development server which is built on top of Vite.
astro.config.mjs
:
studioBasePath: '/admin'
: The route/path for where you want to access your studiointegrations
array.// astro.config.mjs
import sanity from '@sanity/astro'
import {defineConfig} from 'astro/config'
import react from '@astrojs/react'
export default defineConfig({
integrations: [
sanity({
projectId: '3do82whm',
dataset: 'next',
// Set useCdn to false if you're building statically.
useCdn: false,
// Access the Studio on your.url/admin
studioBasePath: '/admin',
}),
react(),
],
})
Sanity uses an open specification for rich text and block content called Portable Text. Portable Text stores content from the editor as JSON (and not HTML or Markdown). This makes it platform/framework agnostic, and also queryable (for example, you can query for blog posts that have more than 4 TypeScript code blocks).
While it's possible to loop over the JSON structure manually, we recommend using a Portable Text library to do the heavy lifting. It will automatically render the default editor configuration to HTML. If you do customizations like adding custom block types, then you need to map those to a component in your front end.
We recommend using astro-portabletext to render your PortableText fields in Astro. See an example of this in apps/example/src/components/PortableText.astro, including using custom components to render custom blocks and annotations.
---
import {PortableText as PortableTextInternal} from "astro-portabletext"
import CallToActionBox from "./CallToActionBox.astro";
import Code from "./Code.astro";
import SanityImage from "./SanityImage.astro";
import YouTube from "./YouTube.astro";
import InternalLink from "./InternalLink.astro";
const components = {
type: {
callToActionBox: CallToActionBox,
code: Code,
image: SanityImage,
youtube: YouTube,
},
mark: {
internalLink: InternalLink
}
};
---
<PortableTextInternal value={Astro.props.value} components={components} />
Sanity comes with a native asset pipeline for your images and files. It has on-demand transforms, automatic optimization for browsers that supports webp, and serves images from a global CDN network. When you upload images to Sanity, it will also automatically analyze the image and add a metadata document with information like dimensions, color palette, generate blurhash, and LQIP strings.
We recommend using @sanity/image-url to help you generate URLs for presenting Sanity images in your Astro app. See an example of this in apps/example/src/components/SanityImage.astro
You can also use community-contributed integrations like astro-sanity-picture to integrate images from Sanity into your website.
To enable Visual Editing, you need to:
VisualEditing
componentPlease note that Visual Editing only works for server-side rendered pages. This means you probably want to configure your Astro project something like this:
import vercel from '@astrojs/vercel/serverless'
// astro.config.mjs
export default defineConfig({
integrations: [
sanity({
useCdn: true,
// ...
}),
// ...
],
output: 'server',
adapter: vercel(),
})
VisualEditing
componentAdd VisualEditing
from @sanity/astro/visual-editing
in your "page shell" layout:
---
import {VisualEditing} from '@sanity/astro/visual-editing'
export type props = {
title: string
}
const {title} = Astro.props
const visualEditingEnabled = import.meta.env.PUBLIC_SANITY_VISUAL_EDITING_ENABLED == 'true'
---
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body>
<slot />
<VisualEditing enabled={visualEditingEnabled} zIndex={1000} />
<!-- ^optional -->
</body>
</html>
VisualEditing
is needed to render Overlays. It's a React component under the hood, so you'll need the React integration for Astro if you don't already use that at this point.
VisualEditing
takes two props:
enabled
: so you can control whether or not visual editing is enabled depending on your environment.zIndex
(optional): allows you to change the z-index
of overlay elements.In the example above, enabled
is controlled using an environment variable:
// .env.local
PUBLIC_SANITY_VISUAL_EDITING_ENABLED="true"
Follow the instructions on how to configure the Presentation tool.
If you already run Studio on an Astro route, then you can set the stega.studioUrl
to the same relative path:
export default defineConfig({
integrations: [
sanity({
studioBasePath: '/admin',
stega: {
studioUrl: '/admin',
},
}),
],
})
Now, all you need is a loadQuery
helper function akin to this one:
// load-query.ts
import {type QueryParams} from 'sanity'
import {sanityClient} from 'sanity:client'
const visualEditingEnabled = import.meta.env.PUBLIC_SANITY_VISUAL_EDITING_ENABLED === 'true'
const token = import.meta.env.SANITY_API_READ_TOKEN
export async function loadQuery<QueryResponse>({
query,
params,
}: {
query: string
params?: QueryParams
}) {
if (visualEditingEnabled && !token) {
throw new Error(
'The `SANITY_API_READ_TOKEN` environment variable is required during Visual Editing.',
)
}
const perspective = visualEditingEnabled ? 'previewDrafts' : 'published'
const {result, resultSourceMap} = await sanityClient.fetch<QueryResponse>(query, params ?? {}, {
filterResponse: false,
perspective,
resultSourceMap: visualEditingEnabled ? 'withKeyArraySelector' : false,
stega: visualEditingEnabled,
...(visualEditingEnabled ? {token} : {}),
useCdn: !visualEditingEnabled,
})
return {
data: result,
sourceMap: resultSourceMap,
perspective,
}
}
You'll notice that we rely on a "read token" which is required in order to enable stega encoding and for authentication when Sanity Studio is live previewing your application.
.env.local
file: SANITY_API_READ_TOKEN="<paste your token here>"
Now, you can query and interact with stega-enabled data using the visual editing overlays:
// some.astro file
import {loadQuery} from '../load-query'
const {data: movies} = await loadQuery<Array<{title: string}>>({
query: `*[_type == 'movie']`,
})
FAQs
Official Sanity Astro integration
The npm package @sanity/astro receives a total of 4,979 weekly downloads. As such, @sanity/astro popularity was classified as popular.
We found that @sanity/astro demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 56 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.