
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
@q42/sanity-plugin-page-tree
Advanced tools
This is a Sanity Studio v3 plugin.
In many example projects for headless CMSs in general, they typically create a post content type with a property like "slug" and serve the post on a route such as /posts/:slug. This becomes more complex when dealing with multiple page types and a desire to establish a dynamic page tree.
Consider having three different content types: a home page, an overview page, and a content page, and aiming to create the following URL structure:
/ Homepage/about-us Overview Page/about-us/team Content Page/what-we-do Content Page/what-we-do/cases Overview Page/what-we-do/cases/:slug Content PageAchieving this can be challenging, especially if all the slugs need to be dynamic and editable in the CMS. This package aims to make this easy by providing a page tree view for creating and editing pages. It also includes a page tree input for creating internal page links and methods designed for use on the frontend, helping you effectively resolve urls to ids (in order to retrieve the right content for a route) and vice versa (to resolve internal page links to urls).
npm i @q42/sanity-plugin-page-tree
Create a shared page tree config file and constant to use in your page types and desk structure.
// page-tree-config.ts
import { PageTreeConfig } from '@q42/sanity-plugin-page-tree';
export const pageTreeConfig: PageTreeConfig = {
/* Root page schema type name */
rootSchemaType: 'homePage',
/* Array of all page schema type names */
pageSchemaTypes: ['homePage', 'contentPage', 'contentChildPage'],
/* Optionally specify which document types can be the parent of a document type.
If no allowed parents are specified for a type, all document types are allowed as a parent for that type.
This config can also be used to prevent certain document types from having any children.*/
allowedParents: {
contentChildPage: ['contentPage'],
},
/* Optionally provide the field name of the title field of your page documents, to be used to generate a slug automatically for example. */
titleFieldName: 'title',
/* Used for showing the full url for a document and linking to it. */
/* optional, otherwise the path is shown */
baseUrl: 'https://example.com',
};
The definePageType function can be used to wrap your page schema types with the necessary fields (parent (page reference) and slug) for the page tree.
Provide the isRoot option to the definePageType function to mark the page as a root page. This page won't have a parent and slug field.
// schemas/home-page.ts
import { pageTreeConfig } from './page-tree-config';
const _homePageType = defineType({
name: 'homePage',
type: 'document',
title: 'Page',
fields: [
// ...
],
});
export const homePageType = definePageType(_homePageType, pageTreeConfig, {
isRoot: true,
});
// schemas/content-page.ts
import { pageTreeConfig } from './pageTreeConfig';
const _contentPageType = defineType({
name: 'contentPage',
type: 'document',
title: 'Page',
fields: [
// ...
],
});
export const contentPageType = definePageType(_contentPageType, pageTreeConfig);
Instead of using the default document list for creating and editing pages, you can use the createPageTreeDocumentList function to create a custom page tree document list view and add it to your desk structure.
// desk-structure.ts
import { pageTreeConfig } from './page-tree-config';
export const structure = (S: StructureBuilder) =>
S.list()
.title('Website')
.items([
S.listItem()
.title('Pages')
.child(
createPageTreeDocumentList(S, {
config: pageTreeConfig,
extendDocumentList: builder => builder.id('pages').title('Pages'),
}),
),
]);
A link to an internal page is a reference to a page document. The PageTreeField component can be used to render a custom page tree input in the reference field.
import { pageTreeConfig } from './page-tree-config';
const linkField = defineField({
name: 'link',
title: 'Link',
type: 'reference',
to: pageTreeConfig.pageSchemaTypes.map(type => ({ type })),
components: {
field: props => PageTreeField({ ...props, config: pageTreeConfig }),
},
});
This plugin supports the @sanity/document-internationalization plugin. To enable this, do the setup as documented in the plugin and additionally provide the documentInternationalization option to the page tree configuration file.
// page-tree-config.ts
import { PageTreeConfig } from '@q42/sanity-plugin-page-tree';
export const pageTreeConfig: PageTreeConfig = {
...,
/* Configuration to make this plugin work with the @sanity/document-internationalization plugin */
documentInternationalization: {
/* Supported languages. Note that, the order is used in the page tree view. */
supportedLanguages: ['en', 'nl'],
/* Optionally change the languageField, like you can do in the original plugin */
languageField: 'locale', // Defaults to 'language'
}
};
In order to retrieve the right content for a specifc route, you need to make "catch all" route. How this is implemented depends on the framework you are using. Below are some examples for a Next.JS and React single page appication using react router.
In order to get the page data for the requested path you have to creat a client. Afterwards you can retrieve a list of all the pages with the resolved path and find the correct page metadata. With this metadata you can retrieve the data of the document yourself.
import { createPageTreeClient } from '@q42/sanity-plugin-page-tree/client';
const pageTreeClient = createPageTreeClient({
config: pageTreeConfig,
client: sanityClient,
});
async function getPageForPath(path: string) {
// You might want to cache or save this metadata in memory. For example for looking up urls for linked pages
const allPagesMetadata = await pageTreeClient.getAllPageMetadata();
const page = allPagesMetadata.find(page => page.path === path);
if (!page) {
// here you want to handle a 404
return;
}
return page;
}
For users using the App Router of Next.JS with Server Components, we can benefit from the "Request Memoization" feature. You can import the dedicated next client:
import { createNextPageTreeClient } from '@q42/sanity-plugin-page-tree/next';
This client provides you with some additional helper methods:
getPageMetadataById useful for retrieving the url when you have a reference to a pagegetPageMetadataByUrl useful for retrieving the id when you have the pathFor full examples, see the following projects:
MIT © Q42
For local development and testing you need to link and watch the library and link it to any of the studio example projects.
The basic studio example project, located in examples/studio, is a good starting point.
npm install in the root directory to install the dependencies.npm run link-watch in the root directory.examples/studio directory.npx yalc add @q42/sanity-plugin-page-tree && npx yalc link @q42/sanity-plugin-page-tree && npm installnpm run devThis plugin uses @sanity/plugin-kit with default configuration for build & watch scripts.
See Testing a plugin in Sanity Studio on how to run this plugin with hotreload in the studio.
FAQs
A Sanity plugin to make managing nested pages in a tree easier
The npm package @q42/sanity-plugin-page-tree receives a total of 978 weekly downloads. As such, @q42/sanity-plugin-page-tree popularity was classified as not popular.
We found that @q42/sanity-plugin-page-tree demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 18 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
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.