gridsome-source-shopware6

0.1.0 • Public • Published

gridsome-source-shopware6

Shopware 6 source plugin for Gridsome

This plugin supports the Store API's.

  1. Install
  2. Usage
  3. Routes & Templates
  4. Page Query

Install

yarn:

yarn add gridsome-source-shopware6

npm:

npm install gridsome-source-shopware6

Usage

gridsome.config.js

module.exports = {
  plugins: [
    {
      use: 'gridsome-source-shopware6',
      options: {
          debug: false,
          storeUrl: '<https://my-store.com>',
          apiAccessToken: '<api-token>',
          types: ['product', 'currency', 'shipping-method', 'category'], // Optional, default is all types
          apiVersion: 'v3',
          timeout: 60000
      }
    }
  ]
}

Templates

Now you can create a template called ShopwareProduct.vue, and specify the route for it - Gridsome will automatically generate pages for all products.

gridsome.config.js

module.exports = {
  templates: {
      product: '/product/:handle'
  }
}

Page Query

Once you have specified the route for a type, you can query it by ID.

<page-query>
query Product ($id: ID!) {
  product (id: $id) {
    id
    translated {
      name
      description
    }
  }
}
</page-query>

Now this product will be available at this.$page.product:

<template>
  <Layout>
    <h2>{{ $page.product.translated.name }}</h2>
    <div v-html="$page.product.translated.description" />
  </Layout>
</template>

Package Sidebar

Install

npm i gridsome-source-shopware6

Weekly Downloads

3

Version

0.1.0

License

MIT

Unpacked Size

12.8 kB

Total Files

13

Last publish

Collaborators

  • sunnatecug