Related Products
Related Products Component Documentation
Overview
RelatedProducts
component is a component designed to display a carousel of related products. This component allows users to view and interact with a list of products that are related to a specific item, enhancing the shopping experience by showcasing additional options. It includes functionalities for handling product data, displaying products in a carousel, and managing user interactions.Model Documentation
Model Structure
RelatedProducts
component relies on a data model that includes:componentId
: The unique ID for the component.carouselId
: The ID for the carousel element, derived from componentId
.filter
: A filter string used to fetch products based on criteria.defaultVariant
: The default product variant used in related product queries.relatedProducts
: An array of related product objects.hasRelatedProducts
: A boolean indicating whether there are related products to display.flag
: A boolean flag for carousel initialization control.lists
: Additional list-related data (not used in the current implementation).isUserLoggedIn
: A boolean indicating whether the user is logged in.loadingKey
: A key used to track loading states for adding products to the cart.Example Model
Component Structure
RelatedProducts
component consists of the following parts:1.
2.
3.
4.
5.
HTML Template
relatedProducts
to render each product using the productlistitem
component.
JavaScript
RelatedProducts
component. It includes:addToCart(product, i)
: Adds a product to the cart and handles loading state.isLoading(i)
: Checks if a specific product is in the loading state.calculateCurrency(price)
: Formats the product price.hasDiscount(price, initialPrice)
: Determines if a product has a discount.getImageLink(imageLink)
: Returns the product image link or a placeholder if not available.carouselInitialization()
: Initializes the carousel with custom options.getAlignmentClass(alignment)
: Returns alignment classes based on the provided alignment value.fetchRelatedProducts()
: Fetches related products based on the association type.processRelatedProducts(e)
: Processes and updates the list of related products.filterAndProcessRelatedProducts(e)
: Filters and processes products based on specific criteria.processProductVariants(p)
: Processes product variants to set initial quantities and units.
Explanation
mounted()
to fetch related products, updated()
to initialize the carousel when related products are available.tiny-slider
library for creating a responsive carousel with various options.Usage
RelatedProducts
component, register it with your Vue application and include it in your template. Pass the necessary model
data to configure the component.Modified at 2024-08-27 10:25:08