Type Alias: AddItemToCart()
AddItemToCart = (
cartItem
) =>Promise
<void
>
Function
Adds an item to the shopping cart.
This method allows you to programmatically add a configured product to the cart, including all its selected options, pricing information, and quantity. It's the digital equivalent of placing a physical product in a shopping basket, ensuring all the customizations and pricing details are accurately captured.
Business value:
- Enables seamless e-commerce integration with your configurator
- Allows for one-click add-to-cart functionality from custom interfaces
- Supports automated ordering processes or bulk-add operations
- Maintains all configuration details for manufacturing or fulfillment
Parameters
cartItem
Complete definition of the item to add, including product details, pricing context, and quantity
Returns
Promise
<void
>
A promise that resolves when the item has been successfully added to the cart
Example
// Add a configured desk to the cart
const cartItem = {
productId: 'prod_desk_123',
productName: 'Executive Desk',
variantCode: 'Width-a9&Material-b5&Color-c3',
quantity: 2,
companyId: 'company_456',
priceType: 'SALE',
sku: 'DESK-EX-001',
isModular: false,
// other required properties...
};
await window.mimeeqApp.actions.addItemToCart(cartItem);
console.log('Product added to cart successfully');
Throws
Will throw an error if the item cannot be added or if required information is missing
Emits
mimeeq-basket-updated When the item is successfully added to the cart, providing updated cart state