1.2.0 • Published 5 years ago

@commercelayer/commercelayer-js-sdk v1.2.0

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

Commerce Layer JS SDK

A JavaScript Library wrapper that makes it quick and easy to interact with the Commerce Layer API.

What is Commerce Layer?

Commerce Layer is a headless platform that lets you easily build enterprise-grade ecommerce into any website, by using the language, CMS, and tools you already master and love.

Getting started

To get started with Commerce Layer JS SDK you need to install it and then get the credentials that will allow you to perform your API calls.

Installation

Commerce Layer JS SDK is available as an npm package:

// npm
npm install @commercelayer/js-sdk

// yarn
yarn add @commercelayer/js-sdk

Authentication

All requests to Commerce Layer API must be authenticated with an OAuth2 bearer token. Hence, before starting to use this SDK you need to get a valid access token. Check our documentation for more information about the available authorization flows.

Feel free to use Commerce Layer JS Auth, a JavaScript library that helps you wrap our authentication API.

Using ES6 import

You can use either the ES6 default or named import with the SDK as follow:

import CLayer from '@commercelayer/js-sdk'

CLayer.init({
  accessToken: 'your-access-token',
  host: 'https://yourdomain.commercelayer.io'
})

// or

import { initCLayer, Sku, ShippingCategory } from '@commercelayer/js-sdk'

initCLayer({
  accessToken: 'your-access-token',
  host: 'https://yourdomain.commercelayer.io'
})

In the following examples, we will use the latter solution (named import) and define only the functions associated with the specific resources we're going to access (SKUs and shipping categories). Check our API reference for the complete list of available resources and their attributes.

Use cases

The code snippets below show how to use the Commerce Layer JS SDK when performing the standard CRUD operations provided by our REST API on the SKU resource.

Create

How to create an SKU

  const name = 'Black Men T-shirt with White Logo (XL)'
  const code = 'TSHIRTMM000000FFFFFFXL'

  const shippingCategory = await ShippingCategory.findBy({ name: 'Merchandising'}) // selects the shipping category (it's a required relationship for the SKU resource)

  const attributes = {
    code,
    name,
    shippingCategory // assigns the relationship
  }

  const newSku = await Sku.create(attributes)

Check our API reference for more information on how to create an SKU.

Retrieve

How to fetch a single SKU

  // Fetches the SKU by ID
  const sku = await Sku.find('xYZkjABcde')

  // Fetches the SKU by code
  const sku = await Sku.findBy({ code: 'TSHIRTMM000000FFFFFFXLXX'})

  // Fetches the first SKU of the list
  const sku = await Sku.first()

  // Fetches the last SKU of the list
  const sku = await Sku.last()

Check our API reference for more information on how to retrieve an SKU.

How to fetch a collection of SKUs

  // LISTING RESULTS
  
  // Fetches all the SKUs
  const skus = await Sku.all()

  // Fetches the first 5 SKUs of the list
  const skus = await Sku.first(5)

  // Fetches the last 5 SKUs of the list
  const skus = await Sku.last(5)

  // SORTING RESULTS

  // Sorts the results by creation date in ascending order (default)
  const skus = await Sku.order({ createdAt: 'asc' }).all()

  // Sorts the results by creation date in descending order
  const skus = await Sku.order({ createdAt: 'desc' }).all()

  // SPARSE FIELDSETS

  // Requests the API to return only specific fields
  const skus = await Sku.select('name', 'metadata').all()
  
  // INCLUDING ASSOCIATIONS

  // Includes an association (prices)
  const skus = await Sku.includes('prices').all()

  // Includes an association (prices) and fetches the realted currently loaded collection
  const sku = await Sku.includes('prices').first()
  const prices = sku.prices().target()

  // Includes an association (prices) and fetches the realted currently loaded collection as an array
  const sku = await Sku.includes('prices').first()
  const prices = sku.prices().toArray()

  // Includes an association (prices) and checks if the related currently loaded collection is empty or not
  const sku = await Sku.includes('prices').first()
  const isPricesEmpty = sku.prices().empty() // boolean

  // Includes an association (prices) and calculates the size of the related currently loaded collection
  const sku = await Sku.includes('prices').first()
  const pricesSize = sku.prices().size()

  // FILTERING DATA

  // Filters all the SKUs fetching only the ones whose code starts with the string "TSHIRT"
  const skus = await Sku.where({ codeStart: 'TSHIRT'}).all()

  // Filters all the SKUs fetching only the ones whose code ends with the string "XLXX"
  const skus = await Sku.where({ codeEnd: 'XLXX'}).all()

  // Filters all the SKUs fetching only the ones whose name contains the string "White Logo"
  const skus = await Sku.where({ nameCont: 'White Logo'}).all()

  // Filters all the SKUs fetching only the ones created between two specific dates
  const skus = await Sku.where({ createdAtGt: '2018-01-01', createdAtLt: '2018-01-31'}).all() // filters combined according to an AND logic

  // Filters all the SKUs fetching only the ones created or updated after a specific date
  const skus = await Sku.where({ updatedAtOrCreatedAtGt: '2019-10-10' }).all() // attributes combined according to an OR logic

  // Filters all the SKUs fetching only the ones whose name contains the string "Black" and whose shipping category name starts with the string "MERCH"
  const skus = await Sku.where({ nameCont: 'Black', shippingCategoryNameStart: 'MERCH'}).all()

Check our API reference for more information on how to list all SKUs, sort the results, use sparse fieldsets, include associations, and filter data.

How to paginate a collection of SKUs

When you fetch a collection of resources, you get paginated results:

// Fetches the SKUs, setting the page number to 3 and the page size to 5
const skus = await Sku.perPage(5).page(3).all()

// Checks next page
  if(skus.hasNextPage()) {
    const nextSkus = await skus.nextPage()
    // ...
  }

// Checks previous page
  if(skus.hasPrevPage()) {
    const prevSkus = await skus.prevPage()
    // ...
  }

The default page number is 1. The default page size is 10. The maximum page size allowed is 25.

Check our API reference for more information on how pagination works.

How to build complex queries

Commerce Layer SDK lets you construct API requests through simple to use chained relation methods. This means that all the methods above can be combined to create queries of greater complexity:

  // Requests the API to return only specific fields of the first 15 SKUs of the list (5 per page)
  const skus = await Sku.select('name', 'metadata').perPage(5).first(15)

  // Fetches the last 20 SKUs whose code start with the string "TSHIRT" (5 per page), including an association (prices)
  const skus = await Sku.where({ codeStart: 'TSHIRT'}).includes('prices').perPage(5).last(20)

Update

How to update an existing SKU

  const sku = await Sku.find('xYZkjABcde') // fetches the SKU by ID

  const attributes = {
    description: 'Updated description.'
  }
  
  sku.update(attributes) // updates the SKU on the server

Check our API reference for more information on how to update an SKU.

Delete

How to delete an existing SKU

  const sku = await Sku.find('xYZkjABcde') // fetches the SKU by ID
  
  sku.destroy() // persisted deletion

Check our API reference for more information on how to delete an SKU.


License

This repository is published under the MIT license.

1.2.0

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago