📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP

@vue-storefront/commercetools

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue-storefront/commercetools

1.4.4
latest
Version published
Weekly downloads
68
-62.84%
Maintainers
8
Weekly downloads
 
Created

Vue Storefront Next x Commercetools Module

How to install

  • Open nuxt.config.js
  • Inside buildModules, line before @vue-storefront/nuxt add:
['@vue-storefront/commercetools/nuxt', {
    api: {
        uri: 'https://api.commercetools.com/<your-api>/graphql',
        authHost: 'https://auth.sphere.io',
        projectKey: 'vsf-ct-dev',
        clientId: '<id>',
        clientSecret: '<secret>',
        scopes: [
          'create_anonymous_token:vsf-ct-dev',
          'manage_my_orders:vsf-ct-dev',
          'manage_my_profile:vsf-ct-dev',
          'manage_my_shopping_lists:vsf-ct-dev',
          'manage_my_payments:vsf-ct-dev',
          'view_products:vsf-ct-dev',
          'view_published_products:vsf-ct-dev'
        ]
      },
      locale: 'en',
      currency: 'USD',
      country: 'US',
      acceptLanguage: ['en', 'de'],
      countries: [
        { name: 'US',
          label: 'United States' },
        { name: 'AT',
          label: 'Austria' },
        { name: 'DE',
          label: 'Germany' },
        { name: 'NL',
          label: 'Netherlands' }
      ],
      currencies: [
        { name: 'EUR',
          label: 'Euro' },
        { name: 'USD',
          label: 'Dollar' }
      ],
      locales: [
        { name: 'en',
          label: 'English' },
        { name: 'de',
          label: 'German' }
      ]
    }]
}]

Generate token middleware

Commercetools nuxt module injects middleware that is responsible for createing/refreshing token if needed - when user refreshes page. In some rare case, you might want to disable this middleware. If so, add disableGenerateTokenMiddleware to the @vue-storefront/commercetools/nuxt's options module in buildModules:

['@vue-storefront/commercetools/nuxt', {
  // ...
  disableGenerateTokenMiddleware: true
  // ...
}]

Example config

export const config = {
  api: {
    uri: 'https://mysite.com/vsf-ct-dev/graphql',
    authHost: 'https://auth.com',
    projectKey: 'vsf-ct-dev',
    clientId: 'yourClientId',
    clientSecret: 'yourClientSecret',
    scopes: [
      'create_anonymous_token:vsf-ct-dev',
      'manage_my_orders:vsf-ct-dev',
      'manage_my_profile:vsf-ct-dev',
      'manage_my_shopping_lists:vsf-ct-dev',
      'manage_my_payments:vsf-ct-dev',
      'view_products:vsf-ct-dev',
      'view_published_products:vsf-ct-dev'
    ]
  },
  locale: 'en',
  acceptLanguage: ['en', 'de'],
  currency: 'USD',
  country: 'US',
  store: 'luxury-brand',
  countries: [
    { name: 'US',
      label: 'United States' },
    { name: 'AT',
      label: 'Austria' },
    { name: 'DE',
      label: 'Germany' },
    { name: 'NL',
      label: 'Netherlands' }
  ],
  currencies: [
    { name: 'EUR',
      label: 'Euro' },
    { name: 'USD',
      label: 'Dollar' }
  ],
  locales: [
    { name: 'en',
      label: 'English' },
    { name: 'de',
      label: 'German' }
  ],
  cookies: {
    currencyCookieName: 'vsf-currency',
    countryCookieName: 'vsf-country',
    localeCookieName: 'vsf-locale',
    storeCookieName: 'vsf-store'
  }
};

FAQs

Package last updated on 18 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts