@akinon/next 2.0.25-beta.0 → 2.0.25-rc.1

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,10 +1,37 @@
1
1
  # @akinon/next
2
2
 
3
- ## 2.0.25-beta.0
3
+ ## 2.0.25-rc.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - cbbbfd75: ZERO-4376: Bootstrap beta cycle (next-main pre-release motor)
7
+ - 804d2bd: ZERO-4536: Add akinon.net domain to CSP frame-ancestors directive
8
+
9
+ ## 2.0.25-rc.0
10
+
11
+ ### Patch Changes
12
+
13
+ - 0cf9ea23: BRDG-16491: Prevent redirect when iframe payment is active
14
+ - 324f97d5: ZERO-4219: replace masterpass-rest-complete with masterpass-rest-callback
15
+ - 51ea0688: ZERO-4377: Fix checkout card type state being cleared after valid bin number responses.
16
+ - ZERO-4160: Enhance oauth-login middleware with improved request handling and logging
17
+ - b55acb768: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
18
+ - 760258c1: ZERO-4160: Enhance oauth-login middleware to handle fetch errors and improve response handling
19
+ - 143be2b9d: ZERO-3457: Crop styles are customizable and logic improved for rendering similar products modal
20
+ - 7889b08f: ZERO-4276: Enhance route generation by adding .env loading and custom skip segments support
21
+ - 9f8cd3bc5: ZERO-3449: AI Search Active Filters & Crop Style changes have been implemented
22
+ - d51fa68: ZERO-4399: add card rewards to pz-masterpass-rest
23
+ - bfafa3f4: ZERO-4160: Refactor oauth-login middleware to use fetchCommerce for API calls and improve cookie handling
24
+ - 57d7eb30: ZERO-4276: Refactor route generation logic by removing environment loading and simplifying skip segments handling
25
+ - d99a6a7d5: ZERO-3457_1: Fixed the settings prop and made sure everything is customizable.
26
+ - 9db81a71: ZERO-4365: Remove brand `@theme/*` alias imports from library packages
27
+ - 591e345e: ZERO-3855: Enhance credit card payment handling in checkout middlewares
28
+ - 4de5303c5: ZERO-2504: add cookie filter to api client request
29
+ - 95b139dc1: ZERO-3795: Remove duplicate entry for SavedCard in PluginComponents map
30
+ - 1d00f2d0: BRDG-16664: Set secure flag for CSRF token cookies in useCaptcha and default middleware
31
+ - 4ac7b2a1: ZERO-4219: fix masterpass-rest callback route format and double-encoded error cookie
32
+ - 4998a963: ZERO-4168: Add server-side payload optimization
33
+ - 3909d322: Edit the duplicate Plugin.SimilarProducts in the plugin-module.
34
+ - e18836b2: ZERO-4160: Restore scope in Sentry addon configuration in akinon.json
8
35
 
9
36
  ## 2.0.24
10
37
 
@@ -6,6 +6,7 @@ const findBaseDir = require('../utils/find-base-dir');
6
6
 
7
7
  const generateRoutes = () => {
8
8
  const baseDir = findBaseDir();
9
+
9
10
  const srcDir = path.join(baseDir, 'src');
10
11
  const appDir = path.join(srcDir, 'app');
11
12
 
@@ -34,8 +35,10 @@ const generateRoutes = () => {
34
35
  '[segment]',
35
36
  '[url]',
36
37
  '[theme]',
37
- '[member_type]'
38
+ '[member_type]',
39
+ '[clienttype]'
38
40
  ];
41
+
39
42
  const skipCatchAllRoutes = ['[...prettyurl]', '[...not_found]'];
40
43
 
41
44
  const walkDirectory = (dir, basePath = '') => {
@@ -116,7 +116,6 @@ const PluginComponents = new Map([
116
116
  ]
117
117
  ],
118
118
  [Plugin.SavedCard, [Component.SavedCard, Component.IyzicoSavedCard]],
119
- [Plugin.SavedCard, [Component.SavedCard]],
120
119
  [Plugin.FlowPayment, [Component.FlowPayment]],
121
120
  [
122
121
  Plugin.VirtualTryOn,
@@ -738,7 +738,6 @@ export const checkoutApi = api.injectEndpoints({
738
738
  },
739
739
  async onQueryStarted(arg, { dispatch, queryFulfilled }) {
740
740
  dispatch(setPaymentStepBusy(true));
741
- dispatch(setCardType(arg));
742
741
  await queryFulfilled;
743
742
  dispatch(setPaymentStepBusy(false));
744
743
  }
@@ -8,6 +8,8 @@ import { parse } from 'lossless-json';
8
8
  import logger from '../../utils/log';
9
9
  import { headers as nHeaders } from 'next/headers';
10
10
  import { ServerVariables } from '../../utils/server-variables';
11
+ import { optimizeCategoryResponse } from '../../utils/payload-optimizer';
12
+ import settings from 'settings';
11
13
 
12
14
  function getCategoryDataHandler(
13
15
  pk: number,
@@ -81,7 +83,7 @@ function getCategoryDataHandler(
81
83
  };
82
84
  }
83
85
 
84
- export const getCategoryData = ({
86
+ export const getCategoryData = async ({
85
87
  pk,
86
88
  searchParams,
87
89
  headers,
@@ -105,6 +107,16 @@ export const getCategoryData = ({
105
107
  compressed: true
106
108
  }
107
109
  );
110
+
111
+ if (settings.payloadOptimization?.enabled && result?.data) {
112
+ try {
113
+ return { ...result, data: optimizeCategoryResponse(result.data, settings.payloadOptimization) };
114
+ } catch (e) {
115
+ logger.error('Payload optimization failed for category', { pk, error: (e as Error).message });
116
+ }
117
+ }
118
+
119
+ return result;
108
120
  };
109
121
 
110
122
  function getCategoryBySlugDataHandler(
@@ -7,6 +7,8 @@ import appFetch, { FetchResponseType } from '../../utils/app-fetch';
7
7
  import { parse } from 'lossless-json';
8
8
  import logger from '../../utils/log';
9
9
  import { ServerVariables } from '../../utils/server-variables';
10
+ import { optimizeCategoryResponse } from '../../utils/payload-optimizer';
11
+ import settings from 'settings';
10
12
 
11
13
  const getListDataHandler = (
12
14
  locale,
@@ -78,4 +80,14 @@ export const getListData = async ({
78
80
  compressed: true
79
81
  }
80
82
  );
83
+
84
+ if (settings.payloadOptimization?.enabled && result) {
85
+ try {
86
+ return optimizeCategoryResponse(result, settings.payloadOptimization);
87
+ } catch (e) {
88
+ logger.error('Payload optimization failed for list', { error: (e as Error).message });
89
+ }
90
+ }
91
+
92
+ return result;
81
93
  };
@@ -5,6 +5,8 @@ import appFetch from '../../utils/app-fetch';
5
5
  import { normalizeSearchParams } from '../../utils/normalize-search-params';
6
6
  import { ServerVariables } from '../../utils/server-variables';
7
7
  import logger from '../../utils/log';
8
+ import { optimizeProductResponse } from '../../utils/payload-optimizer';
9
+ import settings from 'settings';
8
10
 
9
11
  type GetProduct = {
10
12
  pk: number | string;
@@ -166,5 +168,13 @@ export const getProductData = async ({
166
168
  throw error;
167
169
  }
168
170
 
171
+ if (settings.payloadOptimization?.enabled && result?.data) {
172
+ try {
173
+ return { ...result, data: optimizeProductResponse(result.data, settings.payloadOptimization) };
174
+ } catch (e) {
175
+ logger.error('Payload optimization failed for product', { pk, error: (e as Error).message });
176
+ }
177
+ }
178
+
169
179
  return result;
170
180
  };
@@ -5,6 +5,9 @@ import { generateCommerceSearchParams } from '../../utils';
5
5
  import { normalizeSearchParams } from '../../utils/normalize-search-params';
6
6
  import appFetch from '../../utils/app-fetch';
7
7
  import { ServerVariables } from '../../utils/server-variables';
8
+ import { optimizeCategoryResponse } from '../../utils/payload-optimizer';
9
+ import logger from '../../utils/log';
10
+ import settings from 'settings';
8
11
 
9
12
  const getSpecialPageDataHandler = (
10
13
  pk: number,
@@ -57,4 +60,14 @@ export const getSpecialPageData = async ({
57
60
  compressed: true
58
61
  }
59
62
  );
63
+
64
+ if (settings.payloadOptimization?.enabled && result) {
65
+ try {
66
+ return optimizeCategoryResponse(result, settings.payloadOptimization);
67
+ } catch (e) {
68
+ logger.error('Payload optimization failed for special-page', { pk, error: (e as Error).message });
69
+ }
70
+ }
71
+
72
+ return result;
60
73
  };
@@ -4,6 +4,9 @@ import { CacheOptions, WidgetResultType, WidgetSchemaType } from '../../types';
4
4
  import appFetch from '../../utils/app-fetch';
5
5
  import { widgets } from '../urls';
6
6
  import { ServerVariables } from '../../utils/server-variables';
7
+ import { optimizeWidgetResponse } from '../../utils/payload-optimizer';
8
+ import logger from '../../utils/log';
9
+ import settings from 'settings';
7
10
 
8
11
  const getWidgetDataHandler =
9
12
  (
@@ -53,7 +56,7 @@ export const getWidgetData = async <T>({
53
56
  cacheOptions?: CacheOptions;
54
57
  headers?: Record<string, string>;
55
58
  }): Promise<WidgetResultType<T>> => {
56
- return Cache.wrap(
59
+ const result = await Cache.wrap(
57
60
  CacheKey.Widget(slug),
58
61
  locale,
59
62
  getWidgetDataHandler(slug, locale, currency, headers),
@@ -62,6 +65,16 @@ export const getWidgetData = async <T>({
62
65
  ...cacheOptions
63
66
  }
64
67
  );
68
+
69
+ if (settings.payloadOptimization?.enabled && result) {
70
+ try {
71
+ return optimizeWidgetResponse(result, settings.payloadOptimization) as WidgetResultType<T>;
72
+ } catch (e) {
73
+ logger.error('Payload optimization failed for widget', { slug, error: (e as Error).message });
74
+ }
75
+ }
76
+
77
+ return result as WidgetResultType<T>;
65
78
  };
66
79
 
67
80
  const getCollectionWidgetDataHandler =
package/data/urls.ts CHANGED
@@ -183,7 +183,11 @@ export const product = {
183
183
  breadcrumbUrl: (menuitemmodel: string) =>
184
184
  `/menus/generate_breadcrumb/?item=${menuitemmodel}&generator_name=menu_item`,
185
185
  bundleProduct: (productPk: string, queryString: string) =>
186
- `/bundle-product/${productPk}/?${queryString}`
186
+ `/bundle-product/${productPk}/?${queryString}`,
187
+ similarProducts: (params?: string) =>
188
+ `/similar-products${params ? `?${params}` : ''}`,
189
+ similarProductsList: (params?: string) =>
190
+ `/similar-product-list${params ? `?${params}` : ''}`
187
191
  };
188
192
 
189
193
  export const wishlist = {
@@ -39,7 +39,7 @@ export const useCaptcha = () => {
39
39
  };
40
40
 
41
41
  if (csrfToken) {
42
- setCookie('csrftoken', csrfToken);
42
+ setCookie('csrftoken', csrfToken, { secure: true });
43
43
  }
44
44
 
45
45
  const onCaptchaChange = useCallback(async (response) => {