@scayle/storefront-product-listing
1.3.2
Patch Changes
- Use absolute URL's in category breadcrumbs JSONLD returned by
useProductListingSeoData
1.3.1
Patch Changes
- Added
vue@>=3.5.13
topeerDependencies
.
1.3.0
Minor Changes
- Add
buildQueryFromCategoryFilters
utility.
1.2.0
Minor Changes
- Update
APISortOrder
andAPISortOption
names due to update to newest@scayle/storefront-nuxt
version.
1.1.3
Patch Changes
- Ensure the module meta has the correct package version
1.1.2
Patch Changes
- Update
useFiltersForListing
to automatically refresh filter data whenever the its parameter change. This will ensurefilteredProductCount
is up to date.
1.1.1
Patch Changes
- We've updated to
nuxt@3.14
1.1.0
Minor Changes
- Updates the parameter type of
useFiltersForListing
fromMaybeRefOrGetter
toRef
to enforce that the parameter is a mandatory reactive reference. Non-reactive parameter will not work as expected in the Boilerplate. - Updates the parameter type of
useProductsForListing
fromMaybeRefOrGetter
toRef
to enforce that the parameter is a mandatory reactive reference. Non-reactive parameter will not work as expected in the Boilerplate.
1.0.0
Major Changes
- This release introduces the
@scayle/storefront-product-listing
package, decoupling composables and utilities of the Product Listing Page (PLP) functionality from the SCAYLE Storefront Boilerplate for enhanced modularity and integration. This separation empowers developers with greater control over PLP updates and simplifies its integration into existing Storefront-based projects. - This release requires
@scayle/storefront-nuxt@8.x
or higher. Support for@scayle/storefront-nuxt@7.x
has been discontinued. Please update your dependencies accordingly. ThepeerDependency
range has been updated to^8.0.0
.
Minor Changes
- Compared to the original implementation within the SCAYLE Storefront Boilerplate, the
@scayle/storefront-product-detail
package has received some improvements and refactoring:- The
useAppliedFilters
composable has been added to thestorefront-product-listing
package. It now accepts afiltersPrefix
parameter, allowing you to specify a custom prefix for filter-related query parameters. - The
useProductListSort
composable has been added to thestorefront-product-listing
package. It now accepts asortingOptions
anddefaultSortingKey
parameter, to config the sorting options and set the initial sorting value. - The
useProductListFilter
composable has been added to thestorefront-product-listing
package. It acceptscurrentCategoryId
, which represents the active category, andProductListFilterOptions
for specifying options for the underlyinguseFilters
composable. - The
filters
utility has been added to thestorefront-product-listing
package. It provides utilities for filter query manipulation. - All exports are now defined in a single file, and everything is exposed via the
#storefront-product-listing
import. - The
useProductsByCategory
composable has been added to thestorefront-product-listing
package. It now accepts acategoryId
andProductsByCategoryOptions
object that has certain fetching products by category params(category
&categoryId
),fetchingOptions
,productsPerPage
,fetchProductsCacheTtl
,cacheKeyPrefix
,fetchingKey
,withParams
(for product) andquery
(current route query state). - The
useProductListingSeoData
composable has been added to thestorefront-product-listing
package. It accepts reactivecategory
,breadcrumbs
, an object of typeUrlParams
(containing abaseUrl
andfullPath
) which are used for building SEO data. - Product Listing-related test factories are now exposed externally.
They can be used as follows:
import { filtersFactory } from '@scayle/storefront-product-listing'
- Upgrade the
storefront-core
andstorefront-nuxt
packages to version 8 and update your implementation to reflect the changes in RPC composables:- The composables
useProductListFilter
anduseProductsByCategory
now return astatus
property instead offetching
. Thestatus
can have one of the following values:idle
,pending
,error
, orsuccess
. - The
fetch
method has been replaced byrefresh
. Update your logic accordingly to use the new method.
- The composables
- The
0.6.0
Minor Changes
- Renamed the composables
useProductListFilter
touseFiltersForListing
. - Composable
useProductListFilter
now allows configuration of the parametersincludeSellableForFree
,includeSoldOut
,orFiltersOperator
. - Removes the internal call to
useAppliedFilters
anduseProductListSort
which need to be explicitly passed touseProductsForListing
anduseFiltersForListing
- Renamed the composables
useProductsByCategory
touseProductsForListing
. - The configurable caching options
cacheKeyPrefix
andfetchProductsCacheTtl
have been removed from theuseProductsByCategory
composable. - Removed unnecessary parameter
category
and return valueactiveCategoryName
fromuseProductListingSeoData
. - The
productsPerPage
parameter in theuseProductsByCategory
composable is now required and no longer provides a default value. - Removed the
getClearedPriceQuery
utility function. Price filter resetting can now be achieved via thegetClearedFilterQueryByKey
function.
0.5.0
Minor Changes
- Allow Storefront Nuxt v8 as a peer dependency
0.4.2
Patch Changes
- The
useProductsByCategory
composable now sets the trackSearchAnalyticsEvent parameter by default if the current page evaluates to1
and theappliedFilter.term
is not empty. The default behavior can be overriden by passingtrackSearchAnalyticsEvent: false
as part ofProductsByCategoryOptions.params
. For more details, check the SCAYLE Search Analytics section in the SCAYLE Resource Center.
0.4.1
Patch Changes
- Resolved an issue where the default parameter values for
useProductsByCategory
likeproductsPerPage
orcacheKeyPrefix
were not being set correctly.
0.4.0
Minor Changes
- Fix computed
sortLinks
return type mismatch inUseProductListSortReturn
interface.
0.3.0
Minor Changes
- Fix
sortLinks
type by extending theSelectedSort
type withto
property which represents theRouteLocationRaw
type fromvue-router
.
0.2.0
Minor Changes
- Add and expose externally explicit return types/interfaces for all product listing composables.
0.1.4
Patch Changes
- Resolved reactivity issues in composables by ensuring they receive the full
route
object instead of just thequery
object. This allows for more reliable updates when the route changes.
0.1.3
Patch Changes
- Resolve an issue where
sortLinks
inuseProductListSort
caused broken URLs on the PLP. ThesortLinks
now include apath
attribute reflecting the current route path.
0.1.2
Patch Changes
- Update import of test factories to use new entry point
0.1.1
Patch Changes
- Resolved issue where sorting did not correctly route to the first page.
0.1.0
Minor Changes
- Introduce
@scayle/storefront-product-listing
package