Product Shelf
Displays a list of products to be used as a section on the store.
The ProductShelf
is a compound of the following:
ProductShelfItems
: the product list.ProductShelfItem
: wraps the product inside a list item.ProductCard
: the proposed child of aProductShelf
.
Import
Import the component from @faststore/ui
import {
ProductShelf,
ProductShelfItems,
ProductShelfItem,
} from '@faststore/ui'
We highly recommend using the ProductCard as the direct child of the ProductShelfItem
.
import {
ProductCard,
ProductCardContent,
ProductCardImage,
} from '@faststore/ui'
Import Styles
import '@faststore/ui/src/components/organisms/ProductShelf/styles.scss'
Usage
Apple Magic Mouse
Original price:$999Sale Price:$950.044k Philips Monitor 27”
Original price:$490Sale Price:$420Echo Dot Smart Speaker
Original price:$310Sale Price:$280Aedle VK-1 L Headphone
Original price:$150Sale Price:$130Oculus VR Headset
Original price:$344Sale Price:$315Apple AirPods Pro
Original price:$249Sale Price:$229
Props
All ProductShelf
related components support all attributes also supported by their respective HTML tags. Besides those attributes, the following props are also supported:
Product Shelf
Name | Type | Description | Default |
---|---|---|---|
testId | string | ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). | fs-product-shelf |
Product Shelf Items
Name | Type | Description | Default |
---|---|---|---|
testId | string | ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). | fs-product-shelf-items |
Product Shelf Item
Name | Type | Description | Default |
---|---|---|---|
testId | string | ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). | fs-product-shelf-item |
Design Tokens
Nested Elements
Items
Local token | Default value/Global token linked |
---|---|
--fs-product-shelf-items-gap | var(--fs-grid-gap-1) |
--fs-product-shelf-items-padding-top | var(--fs-spacing-0) |
--fs-product-shelf-items-padding-bottom | var(--fs-spacing-3) |
Variants
You can use ProductCard variants to create ProductShelf
variations.
With Button
Apple Magic Mouse
Original price:$999Sale Price:$950.044k Philips Monitor 27”
Original price:$490Sale Price:$420Echo Dot Smart Speaker
Original price:$310Sale Price:$280Aedle VK-1 L Headphone
Original price:$150Sale Price:$130
Bordered
Apple Magic Mouse
Original price:$999Sale Price:$950.044k Philips Monitor 27”
Original price:$490Sale Price:$420Echo Dot Smart Speaker
Original price:$310Sale Price:$280Aedle VK-1 L Headphone
Original price:$150Sale Price:$130
Aspect Ratio
Apple Magic Mouse
Original price:$999Sale Price:$950.044k Philips Monitor 27”
Original price:$490Sale Price:$420Echo Dot Smart Speaker
Original price:$310Sale Price:$280Aedle VK-1 L Headphone
Original price:$150Sale Price:$130Oculus VR Headset
Original price:$344Sale Price:$315Apple AirPods Pro
Original price:$249Sale Price:$229Anker SoundCore Liberty Air
Original price:$643.71Sale Price:$486.34Fujifilm X-T1 Camera
Original price:$495.97Sale Price:$366.11SANDMARC Fisheye Lens
Original price:$946.73Sale Price:$636.05Apple AirTag
Original price:$679.29Sale Price:$426.14
With Carousel
Customization
data-fs-product-shelf
data-fs-product-shelf-items
data-fs-product-shelf-item
Best Practices
❌ Don'ts
- We don't recommend using Carousel inside
ProductShelf
when display 5 or less items. - We don't recommend using
ProductShelfItems
andProductShelfItem
when using Carousel component to avoid:validateDOMNesting(...): <li> cannot appear as a descendant of <li>
issue. See Carousel Code Example
Last updated on