Run Yoast's SEO review tools using Sanity data, inside a List View Pane. When setup correctly, it will fetch your rendered front-end, as your Sanity data changes, to give instant SEO feedback on your document.
sanity install seo-pane
This plugin requires a very specific setup in order to get the full benefit. It is designed to be used as a Component inside of a View.
// ./src/deskStructure.js
import SeoPane from 'sanity-plugin-seo-pane'
// ...all other list items
S.view
.component(SeoPane)
.options({
// Retrieve the keywords and synonyms at the given dot-notated strings
keywords: `seo.keywords`,
synonyms: `seo.synonyms`,
url: (doc) => resolveProductionUrl(doc),
// Alternatively, specify functions (may be async) to extract values
// keywords: doc => doc.seo?.keywords,
// synonyms: async(doc) => client.fetch('some query to get synonyms', {id: doc._id}),
// url: async(doc) => client.fetch('some query to construct a url with refs', {id: doc._id})
})
.title('SEO')
The .options()
configuration works as follows:
keywords
(string|function(Document):(string|Promise<string>)
, optional) Either a dot-notated string from the document object to a field containing the keywords/keyphrase, or a function that resolves to the keywords/keyphrase in the document object.synonyms
(string|function(Document):(string|Promise<string>)
, optional) As above.url
(function(Document):(string|Promise<string>)
, required) A function that takes in the current document, and resolves to a string with a URL to a preview-enabled front-end. You likely have a function like this already for Live Preview.
By default, the plugin will examine all content it finds inside a tag with this attribute: data-content="main"
.
If this cannot be found it will fallback to content <main>inside your main tag</main>
.
The Search Engine Preview will rely on retrieving a Canonical tag, like the below, make sure your frontend includes one.
<link rel="canonical" href="https://example.com/dresses/green-dresses" />
Because the plugin uses Fetch, you're likely to run into CORS issues retrieving the front end from the Studio. Therefore, you may need to do some setup work on your preview URL. If you're using Next.js, adding this to the top of of your preview /api
route will make fetch happen.
Some snippets are below, but here is a full Sanity Preview Next.js API Route for reference
// ./pages/api/preview.js
const corsOrigin =
process.env.NODE_ENV === 'development'
? `http://localhost:3333`
: `https://your-studio.sanity.studio`
res.setHeader('Access-Control-Allow-Origin', corsOrigin)
res.setHeader('Access-Control-Allow-Credentials', true)
The Component will append a fetch=true
parameter to the URL. You can use this to make the /api
route to actually perform its own fetch for the markup of the page – not redirect to it – and return the expected object shape.
Making your Preview route actually fetch
the markup and just return a string will avoid problems with having to pass cookies along from Sanity Studio, to the preview route, to the front end. You will note in the below example though we are deliberately copying the Cookies from the incoming request to the /api
route and passing them along to the front-end.
// ./pages/api/preview.js
// ... CORS enabled stuff, res.setPreviewData, etc
// Fetch the preview-page's HTML and return in an object
if (req?.query?.fetch === 'true') {
const proto = process.env.NODE_ENV === 'development' ? `http://` : `https://`
const host = req.headers.host
const pathname = req?.query?.slug ?? `/`
const absoluteUrl = new URL(`${proto}${host}${pathname}`).toString()
const previewHtml = await fetch(absoluteUrl, {
credentials: `include`,
headers: {Cookie: req.headers.cookie},
})
.then((previewRes) => previewRes.text())
.catch((err) => console.error(err))
return res.send(previewHtml)
}
As a final, Next.js specific note. Because this is going to fetch server-side, you'll need to make sure your getStaticProps()
is actually going to return draft content server-side.
(Client-side, Sanity's usePreviewSubscription hook will take Published content and return a Draft version, but server-side we need to do it ourselves)
It's easy to accidentally configure Next.js and Sanity to query for only published data, and then switch over to draft content client-side.
For example, your GROQ query might look like *[slug.current == $slug][0]
which will only return one document, and not necessarily the draft.
To solve this with the server side query, I'll make sure we query for all documents that match the slug (as in, draft and published) then use this function to just filter down to the one I want:
filterDataToSingleItem(data, preview) {
if (!Array.isArray(data)) {
return data
}
return data.length > 1 && preview
? data.filter((item) => item._id.startsWith(`drafts.`)).pop()
: data.pop()
}
It's that easy!
MIT © Simeon Griggs See LICENSE