Skip to main content

Cart integration

How to integrate the Bambuser player with your native shopping cart

One more elegant improvement you can introduce to your live shopping experience is to integrate the player cart with your native cart.
This is done by providing more details to the products that were added through the Bambuser Live Video Shopping dashboard initially.
What is more, you need to handle the player cart-related events in order to activate the player cart, therefore sync with your native cart.

Requirements

Your e-commerce app/platform has available methods/API endpoint for:

  • Fetching product details
  • Adding products to the cart
  • Updating items in the cart
  • Checking your cart status (optional)

Implementation

To make use of the player cart feature, you need to handle some cart-related events. You will find the list of required events and configurations with details and examples below.

Required events to be handled

  • PROVIDE_PRODUCT_DATA
  • ADD_TO_CART
  • UPDATE_ITEM_IN_CART
  • CHECKOUT
  • SYNC CART STATE

Required configs to be set:

  • locale
  • currency

img

All events below have to be wrapped inside onBambuserLiveShoppingReady()

window.onBambuserLiveShoppingReady = player => {
// `player` object contains Bambuser Player API methods and constants

// Configurations
player.configure({
currency: 'USD',
locale: 'en-US',
});

// Handle player events here
// See the examples below
};

Providing more data to player products

Event name: player.EVENT.PROVIDE_PRODUCT_DATA

trigger
  • When the viewer opens the player

When adding products‍ in the Bambuser Dashboard, we only store the product's title, thumbnail, brand, and a product reference. However, to use the player cart feature, you need to hydrate this product with more product details such as:

  • More product images
  • Variations (color, size)
  • Prices

In order to do that, you will first have to write a method that fetches the product details from your inventory. Then you can use a player API method called updateProduct(...) in order to hydrate products in the show with extra information.

img

Event payload
PropertyDescriptionType
event.productsContains all show's products added through the Bambuser dashboard.
Each product object includes:
  • url : URL of the product
  • ref : Product reference
  • id : Bambuser generated ID for each product in the player. This id is passed as the first argument of the player.updateProduct() method
Array

Example code
player.on(player.EVENT.PROVIDE_PRODUCT_DATA, (event) => {
event.products.forEach(async ({ ref: sku, url, id: bambuserId }) => {
const yourProduct = await yourGetProductMethod(sku);

player.updateProduct(bambuserId, (productFactory) =>
productFactory

// -> The .product() method takes a function
// returning a product detail object
.product((productDetailFactory) =>
productDetailFactory

// Name of the product
.name(yourProduct.name)

// Brand name to display for the product
.brandName(yourProduct.brand)

// (Optional) Short product introductory text
.introduction(yourProduct.shortDescription)

// (Optional) Description for the product
// Supports text as well as HTML string
.description(yourProduct.description)

// sku (or any other identifier for your product)
// NOTE: Should be the same as your product reference
// defined in Bambuser Dashboard
.sku(yourProduct.productId)

// Describes which index in the variations list below
// contains the default variation
// (e.g. if variations contain colors, and you want to display
// the white version of a shirt, send the index for the white variation)
.defaultVariationIndex(0)

// -> The .variations() method takes a function
// returning an array of variations
.variations((variationFactory) =>
yourProduct.colors.map((variation) =>
// VariationFactory contains a factory returning a new instance of a variation
variationFactory()
// -> (Optional) The .attributes() method takes a function
// defines color attribute for the variation
.attributes((attributeFactory) =>
attributeFactory
// Color name in the variation dropdown selector,
.colorName(variation.colorName)

// (Optional) Color Hex code e.g. '#7d58ee'
.colorHexCode(variation.colorHexCode)
)
// List of image urls for the variation
// ordered the same as you want it displayed
.imageUrls(variation.images)

// Name of the variation
// Shown if colorName is not provided as attribute.
.name(variation.name)

// sku (or any other identifier for your product)
// specific down to this variation
.sku(variation.variationId)

// -> The .sizes() method takes a function that
// returns an array of sizes
.sizes((sizeFactory) =>
variation.sizes.map((size) =>
// s contains a factory returning a new instance of a variation
sizeFactory()
// Name of the size
// (used in dropdowns)
.name(size.name)

// Set whether this combination of
// variation and size is in stock
.inStock(size.quantityInStock > 0)

// sku (or any other identifier for your product)
// specific down to this size (used for add-to-cart)
.sku(size.sizeId)

// -> The price method contains a new chain
// defines price for the variation and size combo
.price((priceFactory) =>
priceFactory
// currency to show price in
// Optional - overrides the default currency
.currency(size.currency)

// current price as a number
.current(size.current)

// (Optional) original price
// Used in case the current is a sale price
.original(size.original)
)
)
)
)
)
)
);
});
});

Find more details on Player API Reference‍.


Handle Add To Cart event

Event name: player.EVENT.ADD_TO_CART

trigger
  • When a viewer clicks on Add to Cart button inside the player

In the player, the viewer will be able to add products to the player cart.

To reflect this event to you native cart, you will need to use your own method to add the product to the cart in the player.EVENT.ADD_TO_CART event handler.

When callback(true), the product will be added to the player cart.

When callback(false), an appropriate error message will appear in the player. You can also modify your own error messages.

Event payload
ContentDescriptionType
addedItem.skuContains your reference to the productString
callbackTo inform the player cart if the process of handling the event was successful or unsuccessfulFunction

Example code
player.on(player.EVENT.ADD_TO_CART, (addedItem, callback) => {

yourAddToCartMethod(addedItem.sku)
.then(() => {
callback(true); // item successfully added to cart
})
.catch(error => {
if (error.type === 'out-of-stock') {
// Unsuccessful due to 'out of stock'
callback({
success: false,
reason: 'out-of-stock',
});
} else {
// Unsuccessful due to other problems
callback(false);
}
});
});

Customizing cart operations error

Sometimes you might want to customize your own error messages for ADD_TO_CART and UPDATE_ITEM_IN_CART callbacks. You can do this by passing the below object as the argument when invoking callback method:

Usage Example

  callback({
success: false,
reason: "custom-error",
message: "This is my custom error message", //edit this by your choice
});

Handle Update Cart event

Event name: player.EVENT.UPDATE_ITEM_IN_CART

trigger
  • Whenever the viewer modifies quantity from the player cart
  • Whenever the viewer adds a product to the cart that is already in the player cart

In addition to adding items to the cart, a viewer can also increase or decrease the quantity of a previously added item, or even remove the item from the cart.

To reflect this event to you native cart, you will need to use your own method to update the product to the native cart within the EVENT.UPDATE_ITEM_IN_CART event handler.

When callback(true), the product will be added to the Bambuser cart.

When callback(false), an appropriate error message will appear in the player. You can also modify your own error messages.

Event payload
PropertyDescriptionType
updatedItem.skucontains your reference to the productString
updatedItem.quantitynumber of products with above sku currently in the player cartInteger
updatedItem.previousQuantitynumber of products with above sku previously in the player cartInteger
callbackTo inform the player cart if the process of handling the event was successful or unsuccessfulFunction

Example code
// The user wants to change the quantity of an item in cart
player.on(player.EVENT.UPDATE_ITEM_IN_CART, (updatedItem, callback) => {

if (updatedItem.quantity > 0) {
yourUpdateCartMethod({
sku: updatedItem.sku,
quantity: updatedItem.quantity,
})
.then(() => {
// cart update was successful
callback(true);
})
.catch(function(error) {
if (error.type === 'out-of-stock') {
callback({
success: false,
reason: 'out-of-stock',
});
} else {
callback(false);
}
});
}

// user wants to remove the product from the cart
if (updatedItem.quantity === 0) {
yourMethodToDeleteItemFromCart(updatedItem.sku)
.then(() => {
// successfully deleted item
callback(true);
})
.catch(() => {
// failed to delete item
callback(false);
});
}
})

Customizing cart operations error

Sometimes you might want to customize your own error messages for ADD_TO_CART and UPDATE_ITEM_IN_CART callbacks. You can do this by passing the below object as the argument when invoking callback method:

Usage Example

  callback({
success: false,
reason: "custom-error",
message: "This is my custom error message", //edit this by your choice
});

Handle Go to Checkout event

Event name: player.EVENT.CHECKOUT

trigger
  • Whenever a viewer clicks the "Checkout" button inside the player cart

When the viewer is happy with their shopping cart, they can click the Checkout button inside the player cart.

To handle that, you should specify the location of your website cart inside EVENT.CHECKOUT.

Example code
player.on(player.EVENT.CHECKOUT, () => {
player.showCheckout(window.location.origin + "/cart");
})

Sync the player cart

Event name: player.EVENT.SYNC_CART_STATE

trigger
  • Whenever the viewer navigates back to the player

Currently, the update cart does not support anything more than emptying the player cart.

Example code
player.on(player.EVENT.SYNC_CART_STATE, () => {

// Use your method to check if the user has checkout
if (isOnSiteCartEmpty()) {
// Emptying the in-player cart
player.updateCart({
items: [],
});
}
});

For Shopify

Shopify stores have a standard product model and API endpoints. We have a guide and a ready-to-use sample integration code that works across almost all Shopify stores.

To learn more, check out the Shopify integration guide.

Cart integration FAQ

There are many possibilities that would lead to this behavior. We recommend checking for console errors when you initiate the player. Some most common reasons are:

  • Events are not wrapped inside onBambuserLiveShoppingReady() method
  • Products inside the Bambuser dashboard does not have valid product reference
  • Products are not successfully hydrated with additional data
  • First argument of the updateProduct() is not a Bambuser generated ID.