Setting up your product card
Your product card components needs to meet some specific requirements
Requirements
For both search and product listing pages, you need to set up your product card component.
We call the product data that you receive for each product card that you have to render display
.
That component will receive a display
of the type YourDisplay | null
.
YourDisplay
is a type definition of your specific display. Please ask Depict for this.
If display
is null
, it means that there’s no data for this product card yet, and you should display a product card as close to the dimensions as the one you’ll display when you’ll have data, we’ll call this a “placeholder”. The placeholder serves as a loading indicator for users as well as enabling scroll restoration when going back and minimizing content shift.
The productCard
component has to return a HTMLElement
or HTMLElement[]
.
Example expected output of your product card component
`display` is `null`
`display` is `HoudiniDisplay`
Provided Placeholder components
You can use the ImagePlaceholder
component to display a placeholder image while the product image is loading.
You can use the TextPlaceholder
component to display a placeholder text while the product title or price is loading.
Read the reference for more information.
Displaying color swatches
Code example
You probably have an existing product card which you just can add placeholder functionality for. Here’s an example of how it could look like:
Was this page helpful?