@scayle/storefront-product-listing 1.6.2 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @scayle/storefront-product-listing
2
2
 
3
+ ## 1.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Export `defaultSortingOptions` and `DEFAULT_SORTING_KEY` from the `useProductListSort` composable.
8
+ This change enhances consumer flexibility, allowing for more granular adjustments to custom sorting options.
9
+
10
+ ## 1.6.3
11
+
12
+ ### Patch Changes
13
+
14
+ - Validate the `id` parameter passed to `getAllShopCategoriesForId` before calling Storefront API. This ensures that we will not send a useless request to Storefront API when we know the `id` is invalid.
15
+
3
16
  ## 1.6.2
4
17
 
5
18
  ### Patch Changes
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@scayle/storefront-product-listing",
3
3
  "configKey": "product-listing",
4
- "version": "1.6.2",
4
+ "version": "1.7.0",
5
5
  "compatibility": {
6
6
  "bridge": false,
7
7
  "nuxt": ">=3.13"
package/dist/module.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import { defineNuxtModule, createResolver, addImportsDir } from '@nuxt/kit';
2
2
 
3
3
  const PACKAGE_NAME = "@scayle/storefront-product-listing";
4
- const PACKAGE_VERSION = "1.6.2";
4
+ const PACKAGE_VERSION = "1.7.0";
5
5
  const module = defineNuxtModule({
6
6
  meta: {
7
7
  name: PACKAGE_NAME,
@@ -20,6 +20,38 @@ export interface ProductListSortOptions {
20
20
  sortingOptions?: SelectedSort[];
21
21
  defaultSortingKey?: string;
22
22
  }
23
+ export declare const defaultSortingOptions: ({
24
+ key: string;
25
+ sortingKey: string;
26
+ direction: "desc";
27
+ label: string;
28
+ by?: undefined;
29
+ } | {
30
+ key: string;
31
+ by: "new";
32
+ direction: "desc";
33
+ label: string;
34
+ sortingKey?: undefined;
35
+ } | {
36
+ key: string;
37
+ by: "price";
38
+ direction: "desc";
39
+ label: string;
40
+ sortingKey?: undefined;
41
+ } | {
42
+ key: string;
43
+ by: "price";
44
+ direction: "asc";
45
+ label: string;
46
+ sortingKey?: undefined;
47
+ } | {
48
+ key: string;
49
+ by: "reduction";
50
+ direction: "desc";
51
+ label: string;
52
+ sortingKey?: undefined;
53
+ })[];
54
+ export declare const DEFAULT_SORTING_KEY = "top_seller";
23
55
  /**
24
56
  * Custom composable to handle product list sorting.
25
57
  *
@@ -30,5 +62,5 @@ export interface ProductListSortOptions {
30
62
  *
31
63
  * @returns Computed properties and methods related to sorting
32
64
  */
33
- export declare function useProductListSort(route: RouteLocationNormalizedLoadedGeneric, { sortingOptions, defaultSortingKey }?: ProductListSortOptions): UseProductListSortReturn;
65
+ export declare function useProductListSort(route: RouteLocationNormalizedLoadedGeneric, { sortingOptions, defaultSortingKey, }?: ProductListSortOptions): UseProductListSortReturn;
34
66
  export {};
@@ -1,44 +1,46 @@
1
1
  import { APISortOption, APISortOrder } from "@scayle/storefront-nuxt";
2
2
  import { computed } from "vue";
3
- export function useProductListSort(route, { sortingOptions, defaultSortingKey } = {
4
- sortingOptions: [
5
- {
6
- key: "top_seller",
7
- sortingKey: "scayle:v1:recommended",
8
- direction: APISortOrder.DESCENDING,
9
- label: "sorting_select.top_seller"
10
- },
11
- {
12
- key: "date_newest",
13
- by: APISortOption.DATE_ADDED,
14
- direction: APISortOrder.DESCENDING,
15
- label: "sorting_select.date_newest"
16
- },
17
- {
18
- key: "price_desc",
19
- by: APISortOption.PRICE,
20
- direction: APISortOrder.DESCENDING,
21
- label: "sorting_select.price_desc"
22
- },
23
- {
24
- key: "price_asc",
25
- by: APISortOption.PRICE,
26
- direction: APISortOrder.ASCENDING,
27
- label: "sorting_select.price_asc"
28
- },
29
- {
30
- key: "reduction_desc",
31
- by: APISortOption.REDUCTION,
32
- direction: APISortOrder.DESCENDING,
33
- label: "sorting_select.reduction_desc"
34
- }
35
- ],
36
- defaultSortingKey: "top_seller"
37
- }) {
3
+ export const defaultSortingOptions = [
4
+ {
5
+ key: "top_seller",
6
+ sortingKey: "scayle:v1:recommended",
7
+ direction: APISortOrder.DESCENDING,
8
+ label: "sorting_select.top_seller"
9
+ },
10
+ {
11
+ key: "date_newest",
12
+ by: APISortOption.DATE_ADDED,
13
+ direction: APISortOrder.DESCENDING,
14
+ label: "sorting_select.date_newest"
15
+ },
16
+ {
17
+ key: "price_desc",
18
+ by: APISortOption.PRICE,
19
+ direction: APISortOrder.DESCENDING,
20
+ label: "sorting_select.price_desc"
21
+ },
22
+ {
23
+ key: "price_asc",
24
+ by: APISortOption.PRICE,
25
+ direction: APISortOrder.ASCENDING,
26
+ label: "sorting_select.price_asc"
27
+ },
28
+ {
29
+ key: "reduction_desc",
30
+ by: APISortOption.REDUCTION,
31
+ direction: APISortOrder.DESCENDING,
32
+ label: "sorting_select.reduction_desc"
33
+ }
34
+ ];
35
+ export const DEFAULT_SORTING_KEY = "top_seller";
36
+ export function useProductListSort(route, {
37
+ sortingOptions = defaultSortingOptions,
38
+ defaultSortingKey = DEFAULT_SORTING_KEY
39
+ } = {}) {
38
40
  const selectedSort = computed(() => {
39
- const sort = route.query.sort && sortingOptions?.find((option) => option.key === route.query.sort);
41
+ const sort = sortingOptions.find(({ key }) => key === route.query.sort);
40
42
  if (!sort) {
41
- return sortingOptions?.find((option) => option.key === defaultSortingKey);
43
+ return sortingOptions?.find(({ key }) => key === defaultSortingKey);
42
44
  }
43
45
  return sort;
44
46
  });
@@ -1,4 +1,16 @@
1
+ import {
2
+ ErrorResponse,
3
+ HttpStatusCode,
4
+ HttpStatusMessage
5
+ } from "@scayle/storefront-nuxt";
1
6
  export const getAllShopCategoriesForId = async function getAllShopCategoriesForId2({ id, properties }, context) {
7
+ if (typeof id !== "number" || isNaN(id)) {
8
+ return new ErrorResponse(
9
+ HttpStatusCode.BAD_REQUEST,
10
+ HttpStatusMessage.BAD_REQUEST,
11
+ "Invalid category id"
12
+ );
13
+ }
2
14
  const { runtimeConfiguration, sapiClient, log, cached } = context;
3
15
  const fetchAllCategories = async () => {
4
16
  const categories = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/storefront-product-listing",
3
- "version": "1.6.2",
3
+ "version": "1.7.0",
4
4
  "description": "Collection of essential composables and utilities to work with product listing",
5
5
  "author": "SCAYLE Commerce Engine",
6
6
  "license": "MIT",
@@ -33,9 +33,9 @@
33
33
  },
34
34
  "scripts": {
35
35
  "build": "nuxt-module-build build",
36
- "dev": "nuxi dev playground",
37
- "dev:build": "nuxi build playground",
38
- "prep": "nuxt-module-build prepare && nuxi prepare playground",
36
+ "dev": "nuxt dev playground",
37
+ "dev:build": "nuxt build playground",
38
+ "prep": "nuxt-module-build prepare && nuxt prepare playground",
39
39
  "lint": "eslint .",
40
40
  "lint:ci": "eslint . --format gitlab",
41
41
  "lint:fix": "eslint . --fix",
@@ -59,30 +59,31 @@
59
59
  "vue": "^3.5.13"
60
60
  },
61
61
  "devDependencies": {
62
- "@arethetypeswrong/cli": "0.18.1",
62
+ "@arethetypeswrong/cli": "0.18.2",
63
63
  "@nuxt/kit": "3.16.2",
64
64
  "@nuxt/module-builder": "1.0.1",
65
65
  "@nuxt/schema": "3.16.2",
66
66
  "@nuxt/test-utils": "3.18.0",
67
- "@scayle/eslint-config-storefront": "4.5.2",
68
- "@scayle/storefront-api": "18.7.0",
69
- "@scayle/storefront-nuxt": "8.27.0",
70
- "@types/node": "22.15.21",
67
+ "@scayle/eslint-config-storefront": "4.5.5",
68
+ "@scayle/storefront-api": "18.9.0",
69
+ "@scayle/storefront-nuxt": "8.29.0",
70
+ "@types/node": "22.15.32",
71
+ "@vitest/coverage-v8": "3.2.3",
71
72
  "@vue/test-utils": "2.4.6",
72
- "@vueuse/core": "13.2.0",
73
+ "@vueuse/core": "13.3.0",
73
74
  "dprint": "0.50.0",
74
- "eslint-formatter-gitlab": "6.0.0",
75
- "eslint": "9.27.0",
75
+ "eslint-formatter-gitlab": "6.0.1",
76
+ "eslint": "9.29.0",
76
77
  "fishery": "2.3.1",
77
- "happy-dom": "17.4.7",
78
+ "happy-dom": "18.0.1",
78
79
  "nuxt": "3.16.2",
79
80
  "publint": "0.2.12",
80
81
  "schema-dts": "1.1.5",
81
82
  "typescript": "5.8.3",
82
83
  "unbuild": "3.5.0",
83
- "vitest": "3.1.4",
84
+ "vitest": "3.2.3",
84
85
  "vue-router": "4.5.1",
85
86
  "vue-tsc": "2.2.10",
86
- "vue": "3.5.14"
87
+ "vue": "3.5.16"
87
88
  }
88
89
  }