@tinloof/sanity-studio
A collection of studio plugins, fields, and components to boost your Sanity studio.
Installation
npm install @tinloof/sanity-studio
Table of contents
Pages
Pages is a plugin that wraps Presentation to display your website pages in a sitemap-like navigation and make it possible to create new ones.
Basic usage
1. Configure Pages:
import {pages} from "@tinloof/sanity-studio";
export default defineConfig({
plugins: [
pages({
previewUrl: {
previewMode: {
enable: "/api/draft",
},
},
}),
],
});
2. Add a pathname
field to page schemas using the definePage
helper:
import {definePathname} from "@tinloof/sanity-studio";
export default defineType({
type: "document",
name: "modularPage",
fields: [
definePathname({
name: "pathname",
}),
],
});
Documents with a defined pathname
field value are now recognized as pages and are automatically grouped into directories in the pages navigator.
Like Sanity's native slug
type, the pathname
supports a source
option which can be used to generate the pathname from another field on the document, eg. the title:
import {definePathname} from "@tinloof/sanity-studio";
export default defineType({
type: "document",
name: "modularPage",
fields: [
definePathname({
name: "pathname",
options: {
source: "title",
},
}),
],
});
The source
can also be a function (which can be asynchronous), returning the generated pathname.
Enabling page creation
Use the creatablePages
option to define which schema types can be used to create pages.
When a page is created, it will automatically have the current folder in its pathname.
import {pages} from "@tinloof/sanity-studio";
export default defineConfig({
plugins: [
pages({
creatablePages: ["page"],
previewUrl: {
previewMode: {
enable: "/api/draft",
},
},
}),
],
});
Enabling internationalization
The i18n
option can be used to support filtering pages by a locale
field and display internationalized URLs.
When page creation is enabled, the currently selected locale
is also used as an initial value to create new pages.
Pathnames are automatically validated to be unique accros locales.
import {pages} from "@tinloof/sanity-studio";
const i18nConfig = {
locales: [
{id: "en", title: "English"},
{id: "fr", title: "French"},
],
defaultLocaleId: "en",
};
export default defineConfig({
plugins: [
pages({
i18n: i18nConfig,
previewUrl: {
previewMode: {
enable: "/api/draft",
},
},
}),
],
});
export default defineType({
type: "document",
name: "page",
fields: [
definePathname({
name: "pathname",
options: {
i18n: {
enabled: true,
defaultLocaleId: i18nConfig.defaultLocaleId,
},
},
}),
defineField({
type: "string",
name: "locale",
hidden: true,
}),
],
});
Filtering pages based on user roles
The filterBasedOnRoles
option can be used to filter pages based on the current user's roles.
import {pages} from "@tinloof/sanity-studio";
export default defineConfig({
plugins: [
pages({
previewUrl: {
previewMode: {
enable: "/api/draft",
},
},
filterBasedOnRoles: [
{role: "all", filter: "!(_id match 'singleton*')"},
{role: "contributor", filter: "_type == 'blog.post'"},
],
}),
],
});
This allows you to build upon the base filter, pathname.current != null
, to filter pages based on the current user's roles.
Setting role: "all"
will set the filter to all roles while anything else will filter based on the current user's roles.
Support documents without a locale
By default, when internationalization is enabled, only pages whose locale
field matches the currently selected locale will be shown in the list. If you have page types that are not translated but you still want them to show up in the list, you can set the requireLocale
option to false in your i18n
config:
const i18nConfig = {
locales: [
{id: "en", title: "English"},
{id: "fr", title: "French"},
],
defaultLocaleId: "en",
requireLocale: false,
};
Now all documents with a pathname
field will show up in the list regardless of the filtered locale, even if they don't have a locale
field (or their locale
is null
).
Lock folder renaming
By default, folders can be renamed. Set the folder.canUnlock
option to false
to disable this.
import {definePathname} from "@tinloof/sanity-studio";
export default defineType({
type: "document",
name: "modularPage",
fields: [
definePathname({
name: "pathname",
options: {
folder: {
canUnlock: false,
},
},
}),
],
});
Customizing pages previews
Documents can have their preview customized on the pages navigator using the List Previews API:
export default {
name: "movie",
type: "document",
fields: [
{
title: "Title",
name: "title",
type: "string",
},
{
type: "image",
name: "image",
title: "Image",
},
],
preview: {
select: {
title: "title",
media: "image",
},
prepare({title, image}) {
return {
title,
media: image,
};
},
},
};
Customizing folders
By default, folders will have a folder icon and use the pathname/prefix capitalized as the title. You can customize this for individual folders using the folders
config option on the plugin:
export default defineConfig({
plugins: [
pages({
previewUrl: {
previewMode: {
enable: "/api/draft",
},
},
folders: {
"/news": {
title: "Articles",
icon: NewspaperIcon,
},
},
}),
],
});
Automatically navigate on pathname change
By default, the pathname
field comes with a "Preview" button which is used to navigate to the page within the Presentation iframe when the pathname changes. You can optionally disable this manual button and have the Presentation tool automatically navigate to the new pathname as it changes:
import {definePathname} from "@tinloof/sanity-studio";
export default defineType({
type: "document",
name: "modularPage",
fields: [
definePathname({
name: "pathname",
options: {
autoNavigate: true,
},
}),
],
});
The Presentation tool will now automatically navigate to the new pathname as the user types, with a 1 second debounce.
Sections
The defineSection
field lets you easily define a new section schema. Used in combination with the SectionsArrayInput
component, it will render a useful section picker in your Sanity documents.
1. Create a new section schema
export const bannerSection = defineSection({
name: "block.banner",
title: "Banner",
type: "object",
options: {
variants: [
{
assetUrl: "/images/blocks/hero.png",
},
],
},
fields: [
defineField({
name: "bannerSection",
type: "string",
}),
],
});
2. Create a sections list array
import {bannerSection} from "@/sanity/schemas/sections/banner";
export const sections = [bannerSection];
3. Add a section picker to your document
Here, the SectionsArrayInput
component is used to render a useful section picker in your Sanity documents.
import { sections } = "@/sanity/schemas/sections/index";
import { SectionsArrayInput } from "@tinloof/sanity-studio";
export default defineType({
name: "page",
type: "document",
fields: [
defineField({
name: 'sectionPicker',
title: 'Section Picker',
type: 'array',
of: sections.map((section) => ({
type: section.name,
})),
components: {
input: SectionsArrayInput,
},
}),
]
})
export const sections = [bannerSection];
4. Add sections to your Sanity schema
import {sections} from "@sanity/schemas/index";
import page from "@/sanity/schemas/page";
const schemas = [page, ...sections];
export default schemas;
documentI18n
The documentI18n
plugin is an opinionated thin wrapper around Sanity's Document Internationalization that makes it possible to add internationalization without having to specify schema types.
documentI18n
enables internationalization on any schema with a locale
field.
Check the with-i18n
example for instructions on usage.
localizedItem
The localizedItem
utility helps create localized document lists in your Sanity Studio's structure. It creates a nested list structure that groups documents by locale, with an "All" option to view all documents regardless of locale.
Basic usage
import { localizedItem } from '@tinloof/sanity-studio';
import { StructureResolver } from 'sanity/structure';
import { BookIcon } from '@sanity/icons';
const locales = [
{ id: 'en', title: 'English' },
{ id: 'fr', title: 'French' },
];
export const structure: StructureResolver = (S) => {
return S.list()
.title('Content')
.items([
localizedItem(S, 'blog.post', 'Blog posts', locales, BookIcon),
]);
Parameters
S
: The Sanity Structure Builder instance
name
: The document type name (string)
title
: The display title for the list (string)
locales
: An array of locale objects with id
and title
properties
icon
: (Optional) Icon to show instead of the default Sanity folder icon to assist with readability
Example with additional locale properties
You can include additional properties
const locales = [
{id: "en", title: "English", countryCode: "US", isDefault: true},
{id: "fr", title: "French", countryCode: "FR"},
];
localizedItem(S, "blog.post", "Blog posts", locales, BookIcon);
The utility will create a nested structure with:
- A top-level item with the provided title
- An "All" option showing all documents of the specified type
- Individual locale options that filter documents by their
locale
field
iconSchema
Builds upon a string field with an options list to show a preview of the icon select as well as other options.
Basic usage
import {iconSchema} from "@tinloof/sanity-studio";
import {defineType} from "sanity";
export default defineType({
type: "document",
name: "page",
fields: [
{
type: "string",
name: "title",
},
{
...iconSchema,
options: {
list: [
{title: "Calendar", value: "calendar"},
{title: "Chat", value: "chat"},
{title: "Clock", value: "clock"},
],
path: "/icons/select",
backgroundColor: "black",
},
},
],
});
Parameters
options.list
: Uses the default string option list type of {title: string, value: string}[]
options.path
: Path where icons are located
options.backgroundColor
: Color value to plug into the CSS style backgroundColor
. Read here for possible values.
Disable creation plugin
Plugin to disable the creation of doucments with the disableCreation
option set to true. The plugin does this by:
- limiting the document's action to (these options can be overidden):
- publish
- restore
- discard changes
- removing document type from create button found on the top left of the Studio
Basic usage
sanity.config.ts;
import {disableCreation} from "@tinloof/sanity-studio";
import schemas from "@/sanity/schemas";
export default defineConfig({
name: "studio",
title: "Studio",
projectId: "12345678",
dataset: "production",
schema: {
types: schemas,
},
plugins: [disableCreation({schemas: ["home", "header", "footer"]})],
});
Parameters
schemas
: String array of document types
overrideDocumentActions
: The document actions to override, defaults to publish, discardChanges, restore
Important notice
When using this plugin, make sure you are placing it after the stucutureTool()
.
plugins: [
structureTool(),
visionTool(),
disableCreation({
schemaTypes: schemaTypes as SchemaTypeDefinition[],
}),
],
Input with characters count
This is a custom component which shows a characters count below a string input. Requires you to specify the minimum and maximum length of the string in order to render and also show tone states.
Basic usage
Add as a input
under components
and include the options minLength
and maxLength
.
{
type: 'object',
name: 'seo',
fields: [
{
type: 'string',
name: 'title',
components: {
input: InputWithCharacterCount,
},
options: {
maxLength: 100,
minLength: 10,
},
},
],
},
Parameters
minLength
: Number, minimum length of string
maxLength
: Number, maximum length of string
Examples
Check the /examples
folder.
License
MIT © Tinloof
Develop & test
This 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.