0.0.22-studio-v3.3 • Published 2 years ago

@snorreeb/sanity-plugin-dashboard-widget-document-list v0.0.22-studio-v3.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

dashboard-widget-document-list

NOTE

This is the Sanity Studio v3 version of dashboard-widget-document-list.

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 dashboard-widget-document-list

or

yarn add 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 { catsWidget } from "sanity-plugin-dashboard-widget-document-list";

export default createConfig({
  // ...
  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

Make sure to run npm run build once, then run

npm run link-watch

In another shell, cd to your test studio and run:

npx yalc add dashboard-widget-document-list --link && yarn install

Now, changes in this repo will be automatically built and pushed to the studio, triggering hotreload. Yalc avoids issues with react-hooks that are typical when using yarn/npm link.

About build & watch

This plugin uses @sanity/plugin-sdk with default configuration for build & watch scripts.

0.0.21

2 years ago

0.0.20

2 years ago

0.0.19

2 years ago

0.0.18

2 years ago

0.0.17

2 years ago

0.0.16

2 years ago

0.0.15

2 years ago

0.0.14

2 years ago

0.0.13

2 years ago