1.0.0 • Published 5 years ago
sanity-plugin-snipcart-bestsellers v1.0.0
sanity-plugin-snipcart-bestsellers
A dashboard widget for viewing top sellers from Snipcart. This plugin is a part of the Steel headless commerce sudo framework.
Installation
Be sure to have dashboard installed in your studio by running...
sanity install @sanity/dashboardThen install the widget...
sanity install snipcart-bestsellersConfiguration
The plugin can be configured by creating a file called dashboardConfig.js in the root of your studio. You'll then need to add the following object to the parts array in your projects sanity.json...
{
"implements": "part:@sanity/dashboard/config",
"path": "./dashboardConfig.js"
}You'll then need to add some boilerplate to dashboardConfig.js along with options for the plugin...
export default {
widgets: [
{
name: 'snipcart-bestsellers',
options:
{
apiKey: string, // SNIPCART SECRET API KEY
limit: number, //DEFAULTS TO FIVE
}
}
]
}Options
| Option | Type | Description |
|---|---|---|
| apiKey | string | a secret api key from Snipcart. Check the docs. |
| limit | number | the number of products to be returned |
License
MIT © Jacob Størdahl See LICENSE
1.0.0
5 years ago