The Categories List Component is a Vue.js component designed to display a list of categories in a flexible and customizable manner. It can adapt to different data sources and configurations, rendering category items with images and titles.
The model object should have the following properties:
id: String A unique identifier for the component. This is used for the component’s id attribute and can be used for styling or targeting the component with JavaScript.
cssClass: String Optional CSS class(es) for the outer container. This allows for additional styling.
header: String Optional header text to be displayed at the top of the list. This text is rendered as an <h2> element.
alignment: Number Controls the alignment of the header text. Possible values are:
1: Left alignment (justify-content-start)
2: Center alignment (justify-content-center)
3: Right alignment (justify-content-end)
categoryIds: Array An array of category IDs used to fetch category data.
model: The component receives a model object as a prop, containing configuration and data used for rendering.
2.
Data:
fontstyle: Default font style, currently not used.
fontweight: Default font weight, currently not used.
colors: Array for storing colors, currently not used.
title: Default title, currently not used.
navigations: Stores the list of navigational categories.
categories: Stores the list of categories fetched from the backend.
categoryTitle: Title for the current category if available.
3.
Methods:
getImage(category): Returns the URL for the category image, or a default image if none is available.
getAlignmentClass(alignment): Returns a CSS class based on the alignment value for the header.
4.
Mounted Lifecycle Hook:
mounted(): Fetches category data based on the URL and the component's model configuration. Updates categoryTitle, categories, or navigations as needed.
Steps to Create Your Own Categories List Component#
1.
Define the Vue Component:
Use Vue.component() or app.component() to register the component.
2.
Create the Template:
Structure the HTML to include sections for navigations and categories.
Use Vue.js directives (v-if, v-for, :class, etc.) for dynamic rendering.
3.
Implement JavaScript Logic:
Define props for the model object.
Initialize data and implement methods for data retrieval and utility functions.