Documentation
Feedback
Guides
VTEX IO Apps

VTEX IO Apps
Basic components
Product List
Official extension
Version: 0.31.0
Latest version: 0.37.2

This page is about version 0.31.0 of the app, which is not the most recent version. The latest stable version is 0.37.2.

{"base64":"  ","img":{"width":110,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/all_contributors-0-orange.svg?style=flat-square"}}

The Product List component displays all items in the user's cart and informs the user when some of them are unavailable.

:warning: Currently, the Product List only works with the Minicart v2.

{"base64":"  ","img":{"width":2876,"height":1574,"type":"png","mime":"image/png","wUnits":"px","hUnits":"px","length":1086200,"url":"https://user-images.githubusercontent.com/52087100/83676314-de434880-a5b0-11ea-8590-3b823d72ef29.png"}}

Configuration

  1. Add the Product List app to your theme's dependencies in manifest.json. For example:

_10
"dependencies": {
_10
"vtex.product-list": "0.x"
_10
}

  1. Add the product-list block to the minicart-product-list block (exported by the Minicart app). For example:

_10
"minicart-product-list#example": {
_10
"blocks": ["product-list"]
_10
}

Once you added the product-list to the minicart-product-list, no further actions are required, as the block works with a default implementation behind the scenes. In other words, the Product List component is ready to be rendered.

Advanced Configuration

Currently, the product-list default implementation is as follows:


_204
{
_204
"product-list": {
_204
"blocks": [
_204
"product-list-content-desktop",
_204
"product-list-content-mobile"
_204
]
_204
},
_204
"product-list-content-desktop": {
_204
"children": ["flex-layout.row#list-row.desktop"]
_204
},
_204
"flex-layout.row#list-row.desktop": {
_204
"children": [
_204
"flex-layout.col#image.desktop",
_204
"flex-layout.col#main-container.desktop"
_204
],
_204
"props": {
_204
"fullWidth": true,
_204
"paddingBottom": "7",
_204
"paddingTop": "6",
_204
"colSizing": "auto",
_204
"preserveLayoutOnMobile": "true"
_204
}
_204
},
_204
"flex-layout.col#image.desktop": {
_204
"children": ["product-list-image"],
_204
"props": {
_204
"marginRight": "6"
_204
}
_204
},
_204
"flex-layout.col#main-container.desktop": {
_204
"children": [
_204
"flex-layout.row#sub-container.desktop",
_204
"flex-layout.row#message.desktop"
_204
],
_204
"props": {
_204
"width": "grow"
_204
}
_204
},
_204
"flex-layout.row#sub-container.desktop": {
_204
"children": [
_204
"flex-layout.col#product-description",
_204
"flex-layout.col#quantity.desktop",
_204
"flex-layout.row#price-remove"
_204
],
_204
"props": {
_204
"preserveLayoutOnMobile": "true",
_204
"colSizing": "auto"
_204
}
_204
},
_204
"flex-layout.col#quantity.desktop": {
_204
"children": [
_204
"flex-layout.row#quantity-selector.desktop",
_204
"flex-layout.row#unit-price.desktop"
_204
],
_204
"props": {
_204
"marginLeft": "8"
_204
}
_204
},
_204
"flex-layout.row#price-remove": {
_204
"children": [
_204
"flex-layout.col#price.desktop",
_204
"flex-layout.col#remove-button.desktop"
_204
],
_204
"props": {
_204
"colSizing": "auto"
_204
}
_204
},
_204
"flex-layout.row#quantity-selector.desktop": {
_204
"children": ["quantity-selector"],
_204
"props": {
_204
"preventHorizontalStretch": "true"
_204
}
_204
},
_204
"flex-layout.row#unit-price.desktop": {
_204
"children": ["unit-price#desktop"],
_204
"props": {
_204
"marginTop": "3",
_204
"preventHorizontalStretch": "true"
_204
}
_204
},
_204
"unit-price#desktop": {
_204
"props": {
_204
"textAlign": "center"
_204
}
_204
},
_204
"flex-layout.col#price.desktop": {
_204
"children": ["price#desktop"],
_204
"props": {
_204
"blockClass": "priceWrapper",
_204
"marginLeft": "6",
_204
"preventHorizontalStretch": "true",
_204
"verticalAlign": "middle"
_204
}
_204
},
_204
"price#desktop": {
_204
"props": {
_204
"textAlign": "right"
_204
}
_204
},
_204
"flex-layout.col#remove-button.desktop": {
_204
"children": ["remove-button"],
_204
"props": {
_204
"marginLeft": "6",
_204
"verticalAlign": "middle"
_204
}
_204
},
_204
"flex-layout.row#message.desktop": {
_204
"children": ["message#desktop"],
_204
"props": {
_204
"marginTop": "4"
_204
}
_204
},
_204
"message#desktop": {
_204
"props": {
_204
"layout": "cols"
_204
}
_204
},
_204
"product-list-content-mobile": {
_204
"children": ["flex-layout.row#list-row.mobile"]
_204
},
_204
"flex-layout.row#list-row.mobile": {
_204
"children": [
_204
"flex-layout.col#image.mobile",
_204
"flex-layout.col#main-container.mobile"
_204
],
_204
"props": {
_204
"fullWidth": true,
_204
"paddingBottom": "6",
_204
"paddingTop": "5",
_204
"colSizing": "auto",
_204
"preserveLayoutOnMobile": "true"
_204
}
_204
},
_204
"flex-layout.col#image.mobile": {
_204
"children": ["product-list-image"],
_204
"props": {
_204
"marginRight": "5"
_204
}
_204
},
_204
"flex-layout.col#main-container.mobile": {
_204
"children": [
_204
"flex-layout.row#top.mobile",
_204
"flex-layout.row#quantity-selector.mobile",
_204
"flex-layout.row#unit-price.mobile",
_204
"flex-layout.row#price.mobile",
_204
"flex-layout.row#message.mobile"
_204
],
_204
"props": {
_204
"width": "grow"
_204
}
_204
},
_204
"flex-layout.row#top.mobile": {
_204
"children": [
_204
"flex-layout.col#product-description",
_204
"flex-layout.col#remove-button.mobile"
_204
],
_204
"props": {
_204
"colSizing": "auto",
_204
"preserveLayoutOnMobile": "true"
_204
}
_204
},
_204
"flex-layout.row#quantity-selector.mobile": {
_204
"children": ["quantity-selector"],
_204
"props": {
_204
"marginTop": "5",
_204
"preventHorizontalStretch": "true"
_204
}
_204
},
_204
"flex-layout.row#unit-price.mobile": {
_204
"children": ["unit-price"],
_204
"props": {
_204
"marginTop": "3"
_204
}
_204
},
_204
"flex-layout.row#price.mobile": {
_204
"children": ["price#mobile"],
_204
"props": {
_204
"marginTop": "5",
_204
"preventHorizontalStretch": "true"
_204
}
_204
},
_204
"price#mobile": {
_204
"props": {
_204
"textAlign": "left"
_204
}
_204
},
_204
"flex-layout.col#remove-button.mobile": {
_204
"children": ["remove-button"],
_204
"props": {
_204
"marginLeft": "3"
_204
}
_204
},
_204
"flex-layout.row#message.mobile": {
_204
"children": ["message#mobile"],
_204
"props": {
_204
"marginTop": "3"
_204
}
_204
},
_204
"message#mobile": {
_204
"props": {
_204
"layout": "rows"
_204
}
_204
}
_204
}

By default implementation we mean that whenever you declare the product-list block in your store you're actually telling your theme to render the json above behind the scenes.

Therefore, in order to customize the product-list configuration, you can simply copy the code above, paste it and then change it as you wish.

Block nameDescription
product-list
{"base64":"  ","img":{"width":69,"height":20,"type":"svg","mime":"image/svg+xml","wUnits":"px","hUnits":"px","url":"https://img.shields.io/badge/-Mandatory-red"}}
Top level block that must be declared in the minicart-product-list block to render a default detailed list with all products added to the shopping cart.
product-list-content-desktopCreates the product list layout for desktop devices.
product-list-content-mobileCreates the product list layout for mobile devices.
messageRenders a message text about the product availability.
product-nameRenders the product names.
product-referenceRenders the product reference information.
priceRenders the product prices.
unit-priceRenders the price for each product unit added to the cart.
product-list-imageRenders the product images.
product-brandRenders the product brands.
product-variationsRenders the product variations.
product-quantity-labelRenders a product label that displays a sua quantidade de unidades added to the cart.
quantity-selectorRenders a selector that allows users to add a chosen number of a product in their cart.
remove-buttonRenders a button that allows users to remove a product from the list.

product-list props

Prop nameTypeDescriptionDefault value
itemCountModeenumQuantity badge behavior when displaying the number of total items added in Minicart. Possible values are: total (quantity badge displays the number of items added to the cart), distinct (quantity badge only displays the number of different products added to the cart), totalAvailable (quantity badge displays the number of available items added to the cart), and distinctAvailable (quantity badge only displays the number of different and available products added to the cart).distinct
lazyRenderHeightnumberThe height (px) of each item's loading element.100
lazyRenderOffsetnumberThe distance (px) to the bottom of the viewport that each item should be at the moment of it's render.300

message props

Prop nameTypeDescriptionDefault value
layoutenumAvailability message position on the list. Possible values are: rows (displaying the message in the product row) or cols (displaying in the product column).cols

price props

Prop nameTypeDescriptionDefault value
textAlignstringProduct price position on the list.left
showListPricebooleanWhether the product prices should be displayed on the list (true) or not (false).true

unit-price props

Prop nameTypeDescriptionDefault value
textAlignstringProduct unit prices position on the list.left
unitPriceTypeenumDefines whether the price type should be displayed. Possible values are: sellingPrice or priceprice
unitPriceDisplayenumDefines when the unit price should be displayed. Possible values are: always (unit price is always displayed) or default (unit price is only displayed when the number of products is greater than one).default
displayUnitListPriceenumDefines whether the product list price should be displayed or not. Possible values are: showWhenDifferent (list price is displayed when it is different from the regular price) ornotShow (list price is never displayed).notShow

product-list-image props

Prop nameTypeDescriptionDefault value
widthnumberProduct image width (in pixels).96

product-reference props

Prop nameTypeDescriptionDefault value
identifierLabelstringText label to be displayed to the left of the product reference value.undefined
identifierOptionenumDesired product reference data i.e. product identifier to be displayed. Possible options are: ProductId, ProductSkuItemId, ProductReferenceId, and ProductSkuReferenceId.ProductReferenceId

remove-button props

Prop nameTypeDescriptionDefault value
variationenumVariation for the button visual proeminence based on the VTEX Styleguide. Possible values are: primary, secondary, tertiary, inverted-tertiary, danger and danger-tertiary.danger
displayModeenumDefines how the remove button should be displayed. Possible values are: icon-button (to render an icon button) and text-button (to render a text message button). If you desire to create a modal in the remove button, use the icon-button value.icon-button

quantity-selector props

Prop nameTypeDescriptionDefault value
modeenumMode of the quantity selector input. Possible values are default and stepper. On the default mode, the quantity stepper will initially render a dropdown component, and after the quantity exceeds 10, it will switch to an input. In the stepper mode it will always render a numeric stepper component.default
quantitySelectorStepenumDefines how the number of products that have unitMultiplier will works. Possible values are: singleUnit (the quantity will be not affected with the unitMultiplier) and unitMultiplier (the quantity will be affected with the unitMultiplier).unitMultiplier

Customization

In order to apply CSS customizations in this and other blocks, follow the instructions given in the recipe on Using CSS Handles for store customization.

CSS Handles
availabilityMessageContainer
availabilityMessageTextContainer
availabilityMessageText
productBrandName
productImageAnchor
productImageContainer
productImage
productListAvailableItemsMessage
productListItem
productListUnavailableItemsMessage
productName
productPriceContainer
productPriceCurrency
productPrice
productQuantityLabel
productIdentifier
productIdentifierValue
productIdentifierLabelValue
productVariationsContainer
productVariationsItem
quantityDropdownContainer
quantityDropdownMobileContainer
quantityInputContainer
quantityInputMobileContainer
quantitySelectorContainer
quantitySelectorWrapper
quantitySelectorButton
quantitySelectorDecrease
quantitySelectorIncrease
removeButtonContainer
removeButton
unitPriceContainer
unitListPrice
unitPriceMeasurementUnit
unitPricePerUnitCurrency
See also
VTEX App Store
VTEX IO Apps