@akinon/next 1.14.0 → 1.14.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.
Files changed (119) hide show
  1. package/.eslintrc.js +40 -40
  2. package/.prettierrc +13 -13
  3. package/CHANGELOG.md +6 -0
  4. package/api/auth.ts +231 -231
  5. package/api/cache.ts +44 -44
  6. package/api/client.ts +174 -174
  7. package/api/logout.ts +42 -42
  8. package/bin/pz-check-dependencies.js +98 -98
  9. package/bin/pz-install-plugins.js +33 -33
  10. package/bin/pz-install-theme.js +58 -58
  11. package/bin/pz-postbuild.js +1 -1
  12. package/bin/pz-postdev.js +1 -1
  13. package/bin/pz-postinstall.js +6 -6
  14. package/bin/pz-poststart.js +1 -1
  15. package/bin/pz-prebuild.js +4 -4
  16. package/bin/pz-predev.js +4 -4
  17. package/bin/pz-prestart.js +1 -1
  18. package/bin/run-script.js +44 -44
  19. package/components/accordion.tsx +52 -52
  20. package/components/button.tsx +46 -46
  21. package/components/client-root.tsx +19 -19
  22. package/components/icon.tsx +18 -18
  23. package/components/image.tsx +133 -133
  24. package/components/index.ts +17 -17
  25. package/components/input.tsx +110 -110
  26. package/components/lazy-component.tsx +33 -33
  27. package/components/loader-spinner.tsx +23 -23
  28. package/components/mobile-app-toggler.tsx +26 -26
  29. package/components/oauth-login.tsx +24 -24
  30. package/components/price.tsx +55 -55
  31. package/components/pz-providers.tsx +24 -24
  32. package/components/pz-root.tsx +21 -21
  33. package/components/radio.tsx +18 -18
  34. package/components/react-portal.tsx +45 -45
  35. package/components/redirect-three-d/content/index.tsx +74 -74
  36. package/components/redirect-three-d/index.tsx +17 -17
  37. package/components/trans.tsx +39 -39
  38. package/data/client/account.ts +208 -208
  39. package/data/client/api.ts +85 -85
  40. package/data/client/basket.ts +82 -82
  41. package/data/client/misc.ts +101 -101
  42. package/data/client/product.ts +89 -89
  43. package/data/client/user.ts +99 -99
  44. package/data/client/wishlist.ts +118 -118
  45. package/data/server/category.ts +132 -132
  46. package/data/server/flatpage.ts +21 -21
  47. package/data/server/form.ts +22 -22
  48. package/data/server/index.ts +10 -10
  49. package/data/server/landingpage.ts +24 -24
  50. package/data/server/list.ts +67 -67
  51. package/data/server/menu.ts +35 -35
  52. package/data/server/product.ts +86 -86
  53. package/data/server/seo.ts +48 -48
  54. package/data/server/special-page.ts +47 -47
  55. package/data/server/widget.ts +27 -27
  56. package/data/urls.ts +221 -221
  57. package/hocs/client/index.ts +1 -1
  58. package/hocs/client/with-segment-defaults.tsx +25 -25
  59. package/hocs/server/index.ts +1 -1
  60. package/hocs/server/with-segment-defaults.tsx +85 -85
  61. package/hooks/index.ts +10 -10
  62. package/hooks/use-captcha.tsx +76 -76
  63. package/hooks/use-common-product-attributes.ts +36 -36
  64. package/hooks/use-debounce.ts +20 -20
  65. package/hooks/use-localization.ts +78 -78
  66. package/hooks/use-media-query.ts +36 -36
  67. package/hooks/use-mobile-iframe-handler.ts +23 -23
  68. package/hooks/use-on-click-outside.tsx +28 -28
  69. package/hooks/use-router.ts +45 -45
  70. package/hooks/use-translation.ts +14 -14
  71. package/lib/cache.ts +215 -215
  72. package/localization/index.ts +5 -5
  73. package/localization/provider.tsx +58 -58
  74. package/middlewares/currency.ts +100 -100
  75. package/middlewares/default.ts +256 -256
  76. package/middlewares/index.ts +29 -29
  77. package/middlewares/locale.ts +68 -68
  78. package/middlewares/oauth-login.ts +79 -79
  79. package/middlewares/pretty-url.ts +104 -104
  80. package/middlewares/redirection-payment.ts +160 -160
  81. package/middlewares/three-d-redirection.ts +159 -159
  82. package/middlewares/url-redirection.ts +65 -65
  83. package/package.json +2 -2
  84. package/redux/hooks.ts +7 -7
  85. package/redux/middlewares/index.ts +50 -50
  86. package/redux/reducers/checkout.ts +184 -184
  87. package/redux/reducers/config.ts +28 -28
  88. package/redux/reducers/header.ts +59 -59
  89. package/redux/reducers/root.ts +61 -61
  90. package/sentry/index.ts +27 -27
  91. package/tailwind/rtl.js +137 -137
  92. package/types/commerce/account.ts +64 -64
  93. package/types/commerce/address.ts +94 -94
  94. package/types/commerce/basket.ts +43 -43
  95. package/types/commerce/category.ts +114 -114
  96. package/types/commerce/checkout.ts +143 -143
  97. package/types/commerce/flatpage.ts +7 -7
  98. package/types/commerce/form.ts +66 -66
  99. package/types/commerce/index.ts +12 -12
  100. package/types/commerce/landingpage.ts +7 -7
  101. package/types/commerce/misc.ts +127 -127
  102. package/types/commerce/order.ts +119 -119
  103. package/types/commerce/product.ts +109 -109
  104. package/types/commerce/widget.ts +28 -28
  105. package/types/gtm.ts +16 -16
  106. package/types/index.ts +274 -274
  107. package/types/metadata.ts +7 -7
  108. package/types/next-auth.d.ts +24 -24
  109. package/utils/app-fetch.ts +69 -69
  110. package/utils/deep-merge.js +24 -24
  111. package/utils/image-loader.ts +31 -31
  112. package/utils/index.ts +150 -150
  113. package/utils/localization.ts +29 -29
  114. package/utils/log.ts +138 -138
  115. package/utils/menu-generator.ts +27 -27
  116. package/utils/mobile-3d-iframe.ts +77 -77
  117. package/utils/server-translation.ts +57 -57
  118. package/utils/server-variables.ts +9 -9
  119. package/with-pz-config.js +94 -94
@@ -1,39 +1,39 @@
1
- 'use client';
2
-
3
- import { Fragment, useMemo } from 'react';
4
- import reactStringReplace from 'react-string-replace';
5
- import { useLocalization } from '@akinon/next/hooks';
6
-
7
- interface TransProps {
8
- i18nKey: string;
9
- components?: {
10
- [key: string]: React.ReactElement;
11
- };
12
- }
13
-
14
- export const Trans = ({ i18nKey, components }: TransProps) => {
15
- const { t } = useLocalization();
16
- const value = t(i18nKey);
17
-
18
- const replacedValue = useMemo(() => {
19
- if (!components) {
20
- return value;
21
- }
22
-
23
- let text;
24
-
25
- for (const [k] of Object.entries(components)) {
26
- text = reactStringReplace(
27
- text ?? value,
28
- new RegExp(`(<${k}/>|<${k} />)`),
29
- (_match, i) => (
30
- <Fragment key={`trans-${k}-${i}`}>{components[k]}</Fragment>
31
- )
32
- );
33
- }
34
-
35
- return text;
36
- }, [value, components]);
37
-
38
- return <>{replacedValue}</>;
39
- };
1
+ 'use client';
2
+
3
+ import { Fragment, useMemo } from 'react';
4
+ import reactStringReplace from 'react-string-replace';
5
+ import { useLocalization } from '@akinon/next/hooks';
6
+
7
+ interface TransProps {
8
+ i18nKey: string;
9
+ components?: {
10
+ [key: string]: React.ReactElement;
11
+ };
12
+ }
13
+
14
+ export const Trans = ({ i18nKey, components }: TransProps) => {
15
+ const { t } = useLocalization();
16
+ const value = t(i18nKey);
17
+
18
+ const replacedValue = useMemo(() => {
19
+ if (!components) {
20
+ return value;
21
+ }
22
+
23
+ let text;
24
+
25
+ for (const [k] of Object.entries(components)) {
26
+ text = reactStringReplace(
27
+ text ?? value,
28
+ new RegExp(`(<${k}/>|<${k} />)`),
29
+ (_match, i) => (
30
+ <Fragment key={`trans-${k}-${i}`}>{components[k]}</Fragment>
31
+ )
32
+ );
33
+ }
34
+
35
+ return text;
36
+ }, [value, components]);
37
+
38
+ return <>{replacedValue}</>;
39
+ };
@@ -1,208 +1,208 @@
1
- import { api } from './api';
2
- import { account, user } from '../urls';
3
- import { buildClientRequestUrl } from '../../utils';
4
- import {
5
- AccountChangeEmailFormType,
6
- AccountChangePasswordFormType,
7
- AccountOrderCancellation,
8
- AccountOrderCancellationReason,
9
- ContactFormType,
10
- Order,
11
- Quotations
12
- } from '../../types';
13
-
14
- interface GetOrdersResponse {
15
- count: number;
16
- results: Order[];
17
- }
18
-
19
- interface GetOrdersParams {
20
- limit?: number;
21
- page?: number;
22
- createdDate?: string;
23
- }
24
-
25
- export interface GetQuotationsResponse {
26
- count: number;
27
- results: Quotations[];
28
- }
29
-
30
- export type PasswordResetType = {
31
- password: string;
32
- repeatPassword: string;
33
- slug: string;
34
- };
35
-
36
- export type AccountProfileFormFilteredType = {
37
- first_name: string;
38
- last_name: string;
39
- phone: string;
40
- date_of_birth: string;
41
- gender: string;
42
- sms_allowed: boolean;
43
- email_allowed: boolean;
44
- };
45
-
46
- export type ContactFormSubject = [
47
- {
48
- id: string;
49
- is_order_needed: boolean;
50
- text: string;
51
- }
52
- ];
53
-
54
- interface LoyaltyTransactions {
55
- count: number;
56
- results: {
57
- amount: string;
58
- created_date: string;
59
- transaction: {
60
- created_date: string;
61
- order: string;
62
- };
63
- }[];
64
- }
65
-
66
- const accountApi = api.injectEndpoints({
67
- endpoints: (builder) => ({
68
- updatePassword: builder.mutation<void, AccountChangePasswordFormType>({
69
- query: (body) => ({
70
- url: buildClientRequestUrl(account.updatePassword, {
71
- contentType: 'application/json'
72
- }),
73
- method: 'POST',
74
- body
75
- })
76
- }),
77
- updateEmail: builder.mutation<void, AccountChangeEmailFormType>({
78
- query: (body) => ({
79
- url: buildClientRequestUrl(account.updateEmail, {
80
- contentType: 'application/json'
81
- }),
82
- method: 'POST',
83
- body
84
- })
85
- }),
86
- updateProfile: builder.mutation<void, AccountProfileFormFilteredType>({
87
- query: (body) => ({
88
- url: buildClientRequestUrl(account.updateProfile, {
89
- accept: 'application/json',
90
- contentType: 'application/json'
91
- }),
92
- method: 'PATCH',
93
- body
94
- }),
95
- invalidatesTags: ['Profile']
96
- }),
97
- getProfileInfo: builder.query<any, void>({
98
- query: () => buildClientRequestUrl(user.profiles),
99
- providesTags: ['Profile']
100
- }),
101
- getContactSubjects: builder.query<ContactFormSubject, void>({
102
- query: () => buildClientRequestUrl(account.getContactSubjects)
103
- }),
104
- getOrder: builder.query<any, string>({
105
- query: (id) => buildClientRequestUrl(account.orderId(id))
106
- }),
107
- getOrders: builder.query<GetOrdersResponse, GetOrdersParams>({
108
- query: ({ page, limit, createdDate } = {}) =>
109
- buildClientRequestUrl(account.getOrders({ page, limit, createdDate }))
110
- }),
111
- getQuotations: builder.query<GetQuotationsResponse, void>({
112
- query: () => buildClientRequestUrl(account.getQuotations)
113
- }),
114
- sendContact: builder.mutation<void, ContactFormType>({
115
- query: (body) => ({
116
- url: buildClientRequestUrl(account.sendContact, {
117
- contentType: 'application/json',
118
- responseType: 'text'
119
- }),
120
- method: 'POST',
121
- body
122
- })
123
- }),
124
- cancelOrder: builder.mutation<void, AccountOrderCancellation>({
125
- query: ({ id, ...body }) => ({
126
- url: buildClientRequestUrl(account.cancelOrder(id), {
127
- contentType: 'application/json'
128
- }),
129
- method: 'POST',
130
- body
131
- })
132
- }),
133
- bulkCancellation: builder.mutation<void, AccountOrderCancellation>({
134
- query: (body) => ({
135
- url: buildClientRequestUrl(account.bulkCancellationRequest, {
136
- contentType: 'application/json'
137
- }),
138
- method: 'POST',
139
- body
140
- })
141
- }),
142
- getCancellationReasons: builder.query<AccountOrderCancellationReason, void>(
143
- {
144
- query: () => buildClientRequestUrl(account.cancellationReasons)
145
- }
146
- ),
147
- passwordReset: builder.mutation<void, PasswordResetType>({
148
- query: ({ slug, password, repeatPassword }) => ({
149
- url: buildClientRequestUrl(account.passwordReset(slug), {
150
- useFormData: true
151
- }),
152
- method: 'POST',
153
- body: {
154
- new_password1: password,
155
- new_password2: repeatPassword
156
- }
157
- })
158
- }),
159
- getBasketOffers: builder.query<any, void>({
160
- query: () => buildClientRequestUrl('/account/basket-offers')
161
- }),
162
- getFutureBasketOffers: builder.query<any, void>({
163
- query: () => buildClientRequestUrl('/account/future-basket-offers')
164
- }),
165
- getExpiredBasketOffers: builder.query<any, void>({
166
- query: () => buildClientRequestUrl('/account/expired-basket-offers')
167
- }),
168
- getDiscountItems: builder.query<any, void>({
169
- query: () => buildClientRequestUrl('/account/discount-items')
170
- }),
171
- anonymize: builder.mutation<string, void>({
172
- query: () => ({
173
- url: buildClientRequestUrl(account.anonymize),
174
- method: 'PATCH'
175
- })
176
- }),
177
- getLoyaltyBalance: builder.query<{ balance: number }, void>({
178
- query: () => buildClientRequestUrl(account.loyaltyBalance)
179
- }),
180
- getLoyaltyTransactions: builder.query<LoyaltyTransactions, void>({
181
- query: () => buildClientRequestUrl(account.loyaltyTransactions)
182
- })
183
- }),
184
- overrideExisting: true
185
- });
186
-
187
- export const {
188
- useGetContactSubjectsQuery,
189
- useGetOrderQuery,
190
- useGetOrdersQuery,
191
- useGetQuotationsQuery,
192
- useSendContactMutation,
193
- useUpdateEmailMutation,
194
- useUpdatePasswordMutation,
195
- useUpdateProfileMutation,
196
- useGetProfileInfoQuery,
197
- useCancelOrderMutation,
198
- useBulkCancellationMutation,
199
- useGetCancellationReasonsQuery,
200
- useGetBasketOffersQuery,
201
- useGetFutureBasketOffersQuery,
202
- useGetExpiredBasketOffersQuery,
203
- useGetDiscountItemsQuery,
204
- usePasswordResetMutation,
205
- useAnonymizeMutation,
206
- useGetLoyaltyBalanceQuery,
207
- useGetLoyaltyTransactionsQuery
208
- } = accountApi;
1
+ import { api } from './api';
2
+ import { account, user } from '../urls';
3
+ import { buildClientRequestUrl } from '../../utils';
4
+ import {
5
+ AccountChangeEmailFormType,
6
+ AccountChangePasswordFormType,
7
+ AccountOrderCancellation,
8
+ AccountOrderCancellationReason,
9
+ ContactFormType,
10
+ Order,
11
+ Quotations
12
+ } from '../../types';
13
+
14
+ interface GetOrdersResponse {
15
+ count: number;
16
+ results: Order[];
17
+ }
18
+
19
+ interface GetOrdersParams {
20
+ limit?: number;
21
+ page?: number;
22
+ createdDate?: string;
23
+ }
24
+
25
+ export interface GetQuotationsResponse {
26
+ count: number;
27
+ results: Quotations[];
28
+ }
29
+
30
+ export type PasswordResetType = {
31
+ password: string;
32
+ repeatPassword: string;
33
+ slug: string;
34
+ };
35
+
36
+ export type AccountProfileFormFilteredType = {
37
+ first_name: string;
38
+ last_name: string;
39
+ phone: string;
40
+ date_of_birth: string;
41
+ gender: string;
42
+ sms_allowed: boolean;
43
+ email_allowed: boolean;
44
+ };
45
+
46
+ export type ContactFormSubject = [
47
+ {
48
+ id: string;
49
+ is_order_needed: boolean;
50
+ text: string;
51
+ }
52
+ ];
53
+
54
+ interface LoyaltyTransactions {
55
+ count: number;
56
+ results: {
57
+ amount: string;
58
+ created_date: string;
59
+ transaction: {
60
+ created_date: string;
61
+ order: string;
62
+ };
63
+ }[];
64
+ }
65
+
66
+ const accountApi = api.injectEndpoints({
67
+ endpoints: (builder) => ({
68
+ updatePassword: builder.mutation<void, AccountChangePasswordFormType>({
69
+ query: (body) => ({
70
+ url: buildClientRequestUrl(account.updatePassword, {
71
+ contentType: 'application/json'
72
+ }),
73
+ method: 'POST',
74
+ body
75
+ })
76
+ }),
77
+ updateEmail: builder.mutation<void, AccountChangeEmailFormType>({
78
+ query: (body) => ({
79
+ url: buildClientRequestUrl(account.updateEmail, {
80
+ contentType: 'application/json'
81
+ }),
82
+ method: 'POST',
83
+ body
84
+ })
85
+ }),
86
+ updateProfile: builder.mutation<void, AccountProfileFormFilteredType>({
87
+ query: (body) => ({
88
+ url: buildClientRequestUrl(account.updateProfile, {
89
+ accept: 'application/json',
90
+ contentType: 'application/json'
91
+ }),
92
+ method: 'PATCH',
93
+ body
94
+ }),
95
+ invalidatesTags: ['Profile']
96
+ }),
97
+ getProfileInfo: builder.query<any, void>({
98
+ query: () => buildClientRequestUrl(user.profiles),
99
+ providesTags: ['Profile']
100
+ }),
101
+ getContactSubjects: builder.query<ContactFormSubject, void>({
102
+ query: () => buildClientRequestUrl(account.getContactSubjects)
103
+ }),
104
+ getOrder: builder.query<any, string>({
105
+ query: (id) => buildClientRequestUrl(account.orderId(id))
106
+ }),
107
+ getOrders: builder.query<GetOrdersResponse, GetOrdersParams>({
108
+ query: ({ page, limit, createdDate } = {}) =>
109
+ buildClientRequestUrl(account.getOrders({ page, limit, createdDate }))
110
+ }),
111
+ getQuotations: builder.query<GetQuotationsResponse, void>({
112
+ query: () => buildClientRequestUrl(account.getQuotations)
113
+ }),
114
+ sendContact: builder.mutation<void, ContactFormType>({
115
+ query: (body) => ({
116
+ url: buildClientRequestUrl(account.sendContact, {
117
+ contentType: 'application/json',
118
+ responseType: 'text'
119
+ }),
120
+ method: 'POST',
121
+ body
122
+ })
123
+ }),
124
+ cancelOrder: builder.mutation<void, AccountOrderCancellation>({
125
+ query: ({ id, ...body }) => ({
126
+ url: buildClientRequestUrl(account.cancelOrder(id), {
127
+ contentType: 'application/json'
128
+ }),
129
+ method: 'POST',
130
+ body
131
+ })
132
+ }),
133
+ bulkCancellation: builder.mutation<void, AccountOrderCancellation>({
134
+ query: (body) => ({
135
+ url: buildClientRequestUrl(account.bulkCancellationRequest, {
136
+ contentType: 'application/json'
137
+ }),
138
+ method: 'POST',
139
+ body
140
+ })
141
+ }),
142
+ getCancellationReasons: builder.query<AccountOrderCancellationReason, void>(
143
+ {
144
+ query: () => buildClientRequestUrl(account.cancellationReasons)
145
+ }
146
+ ),
147
+ passwordReset: builder.mutation<void, PasswordResetType>({
148
+ query: ({ slug, password, repeatPassword }) => ({
149
+ url: buildClientRequestUrl(account.passwordReset(slug), {
150
+ useFormData: true
151
+ }),
152
+ method: 'POST',
153
+ body: {
154
+ new_password1: password,
155
+ new_password2: repeatPassword
156
+ }
157
+ })
158
+ }),
159
+ getBasketOffers: builder.query<any, void>({
160
+ query: () => buildClientRequestUrl('/account/basket-offers')
161
+ }),
162
+ getFutureBasketOffers: builder.query<any, void>({
163
+ query: () => buildClientRequestUrl('/account/future-basket-offers')
164
+ }),
165
+ getExpiredBasketOffers: builder.query<any, void>({
166
+ query: () => buildClientRequestUrl('/account/expired-basket-offers')
167
+ }),
168
+ getDiscountItems: builder.query<any, void>({
169
+ query: () => buildClientRequestUrl('/account/discount-items')
170
+ }),
171
+ anonymize: builder.mutation<string, void>({
172
+ query: () => ({
173
+ url: buildClientRequestUrl(account.anonymize),
174
+ method: 'PATCH'
175
+ })
176
+ }),
177
+ getLoyaltyBalance: builder.query<{ balance: number }, void>({
178
+ query: () => buildClientRequestUrl(account.loyaltyBalance)
179
+ }),
180
+ getLoyaltyTransactions: builder.query<LoyaltyTransactions, void>({
181
+ query: () => buildClientRequestUrl(account.loyaltyTransactions)
182
+ })
183
+ }),
184
+ overrideExisting: true
185
+ });
186
+
187
+ export const {
188
+ useGetContactSubjectsQuery,
189
+ useGetOrderQuery,
190
+ useGetOrdersQuery,
191
+ useGetQuotationsQuery,
192
+ useSendContactMutation,
193
+ useUpdateEmailMutation,
194
+ useUpdatePasswordMutation,
195
+ useUpdateProfileMutation,
196
+ useGetProfileInfoQuery,
197
+ useCancelOrderMutation,
198
+ useBulkCancellationMutation,
199
+ useGetCancellationReasonsQuery,
200
+ useGetBasketOffersQuery,
201
+ useGetFutureBasketOffersQuery,
202
+ useGetExpiredBasketOffersQuery,
203
+ useGetDiscountItemsQuery,
204
+ usePasswordResetMutation,
205
+ useAnonymizeMutation,
206
+ useGetLoyaltyBalanceQuery,
207
+ useGetLoyaltyTransactionsQuery
208
+ } = accountApi;
@@ -1,85 +1,85 @@
1
- import {
2
- createApi,
3
- fetchBaseQuery,
4
- retry,
5
- BaseQueryFn,
6
- FetchBaseQueryError,
7
- FetchBaseQueryMeta,
8
- FetchArgs,
9
- BaseQueryApi
10
- } from '@reduxjs/toolkit/query/react';
11
- import settings from 'settings';
12
- import { getCookie } from '../../utils';
13
- import { RootState } from '@theme/redux/store';
14
-
15
- interface CustomBaseQueryApi extends BaseQueryApi {
16
- getState: () => RootState;
17
- }
18
-
19
- const customBaseQuery: BaseQueryFn<
20
- string | FetchArgs,
21
- unknown,
22
- FetchBaseQueryError,
23
- {},
24
- FetchBaseQueryMeta
25
- > = async (args, api: CustomBaseQueryApi, extraOptions) => {
26
- const mutations = Object.entries(api.getState()?.api?.mutations ?? {}).map(
27
- (x) => x[1]
28
- );
29
-
30
- if (
31
- api.type === 'mutation' &&
32
- mutations.filter(
33
- (m) => m.status === 'pending' && m.endpointName === api.endpoint
34
- ).length > 1
35
- ) {
36
- api.abort('Mutation already in progress.');
37
- }
38
-
39
- const baseQuery = fetchBaseQuery({
40
- prepareHeaders: async (headers) => {
41
- const csrfCookie = getCookie('csrftoken');
42
- const activeLocale = getCookie('pz-locale');
43
- const localeApiValue = settings.localization.locales.find(
44
- (locale) => locale.value === activeLocale
45
- )?.apiValue;
46
- const activeCurrency = getCookie('pz-currency');
47
-
48
- headers.set('Accept-Language', `${localeApiValue}`);
49
- headers.set('x-currency', `${activeCurrency}`);
50
-
51
- if (csrfCookie) {
52
- headers.set('x-csrftoken', `${csrfCookie}`);
53
- }
54
- return headers;
55
- },
56
- credentials: 'include'
57
- });
58
- try {
59
- const result = await baseQuery(args, api, extraOptions);
60
- return result;
61
- } catch (error) {
62
- return { error };
63
- }
64
- };
65
-
66
- export const api = createApi({
67
- reducerPath: 'api',
68
- baseQuery: retry(customBaseQuery, { maxRetries: 3 }),
69
- tagTypes: [
70
- 'Basket',
71
- 'BasketB2b',
72
- 'DraftsB2b',
73
- 'Product',
74
- 'Checkout',
75
- 'Favorite',
76
- 'Addresses',
77
- 'Profile',
78
- 'StockAlert'
79
- ],
80
- endpoints: () => ({})
81
- });
82
-
83
- export const {
84
- util: { invalidateTags }
85
- } = api;
1
+ import {
2
+ createApi,
3
+ fetchBaseQuery,
4
+ retry,
5
+ BaseQueryFn,
6
+ FetchBaseQueryError,
7
+ FetchBaseQueryMeta,
8
+ FetchArgs,
9
+ BaseQueryApi
10
+ } from '@reduxjs/toolkit/query/react';
11
+ import settings from 'settings';
12
+ import { getCookie } from '../../utils';
13
+ import { RootState } from '@theme/redux/store';
14
+
15
+ interface CustomBaseQueryApi extends BaseQueryApi {
16
+ getState: () => RootState;
17
+ }
18
+
19
+ const customBaseQuery: BaseQueryFn<
20
+ string | FetchArgs,
21
+ unknown,
22
+ FetchBaseQueryError,
23
+ {},
24
+ FetchBaseQueryMeta
25
+ > = async (args, api: CustomBaseQueryApi, extraOptions) => {
26
+ const mutations = Object.entries(api.getState()?.api?.mutations ?? {}).map(
27
+ (x) => x[1]
28
+ );
29
+
30
+ if (
31
+ api.type === 'mutation' &&
32
+ mutations.filter(
33
+ (m) => m.status === 'pending' && m.endpointName === api.endpoint
34
+ ).length > 1
35
+ ) {
36
+ api.abort('Mutation already in progress.');
37
+ }
38
+
39
+ const baseQuery = fetchBaseQuery({
40
+ prepareHeaders: async (headers) => {
41
+ const csrfCookie = getCookie('csrftoken');
42
+ const activeLocale = getCookie('pz-locale');
43
+ const localeApiValue = settings.localization.locales.find(
44
+ (locale) => locale.value === activeLocale
45
+ )?.apiValue;
46
+ const activeCurrency = getCookie('pz-currency');
47
+
48
+ headers.set('Accept-Language', `${localeApiValue}`);
49
+ headers.set('x-currency', `${activeCurrency}`);
50
+
51
+ if (csrfCookie) {
52
+ headers.set('x-csrftoken', `${csrfCookie}`);
53
+ }
54
+ return headers;
55
+ },
56
+ credentials: 'include'
57
+ });
58
+ try {
59
+ const result = await baseQuery(args, api, extraOptions);
60
+ return result;
61
+ } catch (error) {
62
+ return { error };
63
+ }
64
+ };
65
+
66
+ export const api = createApi({
67
+ reducerPath: 'api',
68
+ baseQuery: retry(customBaseQuery, { maxRetries: 3 }),
69
+ tagTypes: [
70
+ 'Basket',
71
+ 'BasketB2b',
72
+ 'DraftsB2b',
73
+ 'Product',
74
+ 'Checkout',
75
+ 'Favorite',
76
+ 'Addresses',
77
+ 'Profile',
78
+ 'StockAlert'
79
+ ],
80
+ endpoints: () => ({})
81
+ });
82
+
83
+ export const {
84
+ util: { invalidateTags }
85
+ } = api;