npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sanity-plugin-dashboard-widget-document-list

v1.0.1

Published

> **NOTE**

Downloads

24,346

Readme

sanity-plugin-dashboard-widget-document-list

This is a Sanity Studio v3 plugin. For the v2 version, please refer to the v2-branch.

What is it?

Dashboard widget for the Sanity Content Studio which displays a list of documents.

Install

npm install --save sanity-plugin-dashboard-widget-document-list

or

yarn add sanity-plugin-dashboard-widget-document-list

Ensure that you have followed install and usage instructions for @sanity/dashboard.

Usage

Add dashboard-widget-document-list as a widget to @sanity/dashboard plugin in sanity.config.ts (or .js):

import { dashboardTool } from "@sanity/dashboard";
import { documentListWidget } from "sanity-plugin-dashboard-widget-document-list";

export default defineConfig({
  // ...
  plugins: [
     dashboardTool({
             widgets: [
                 documentListWidget(),
             ],
         }
     ),
  ] 
})

Note: If a document in the result (as returned by the backend) has a draft, that draft is rendered instead of the published document.

Options

There are some options available, as specified by DocumentListConfig:

title (string)

Widget title

documentListWidget({
    title: 'Some documents'
})

order (string)

Field and direction to order by when docs are rendered

documentListWidget({
    title: 'Last edited',
    order: '_updatedAt desc'
})

limit (number)

Number of docs rendered

documentListWidget({
    title: 'Last edited',
    order: '_updatedAt desc',
    limit: 3
})

types (array)

Array of strings signifying which document (schema) types are fetched

documentListWidget({
    title: 'Last edited',
    order: '_updatedAt desc',
    types: ['book', 'author']
})

query (string) and params (object)

Customized GROQ query with params for maximum control. If you use the query option, the types, order, and limit options will cease to function. You're on your own.

documentListWidget({
    title: 'Published books by title',
    query: '*[_type == "book" && published == true] | order(title asc) [0...10]'
})
documentListWidget({
    title: 'My favorite documents',
    query: '*[_id in $ids]',
    params: {
      ids: ['ab2', 'c5z', '654']
    }
})

createButtonText (string)

You can override the button default button text (Create new ${types[0]}) by setting createButtonText to a string of your choice. This doesn't support dynamic variables.

documentListWidget({
    title: 'Blog posts',
    query: '*[_type == "post"]',
    createButtonText: 'Create new blog post'
})

showCreateButton (boolean)

You can disable the create button altogether by passing a showCreateButton boolean:

documentListWidget({
    showCreateButton: false
})

Widget size

You can change the width of the plugin using layout.width:

documentListWidget({
    layout: { width: "small" } 
})

License

MIT-licensed. See LICENSE.

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.

Release new version

Run "CI & Release" workflow. Make sure to select the main branch and check "Release new version".

Semantic release will only release on configured branches, so it is safe to run release on any branch.