3.0.0 • Published 3 years ago

sanity-plugin-snipcart-orders v3.0.0

Weekly downloads
20
License
MIT
Repository
github
Last release
3 years ago

sanity-plugin-snipcart-orders

A dashboard widget for displaying recent orders 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/dashboard

Then install the widget...

sanity install snipcart-orders

Configuration

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-orders',
      options: 
      {
        apiKey: string, // SNIPCART SECRET API KEY
        limit: number, //DEFAULTS TO FIVE
      }
    }
  ]
}

Options

OptionTypeDescription
apiKeystringa secret api key from Snipcart. Check the docs.
limitnumberthe number of orders to be returned

License

MIT © Jacob Størdahl See LICENSE

3.0.0

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago