@akinon/projectzero 1.91.0 → 1.92.0-rc.11

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.
@@ -259,23 +259,25 @@ export const AddressForm = (props: Props) => {
259
259
  {/* TODO: Fix select and textarea components */}
260
260
 
261
261
  <Select
262
- className="w-full border-gray-500 text-sm mt-2"
262
+ className="w-full border-gray-500 text-sm"
263
263
  options={countryOptions}
264
264
  {...register('country')}
265
265
  error={errors.country}
266
266
  data-testid="address-form-country"
267
267
  label={t('account.address_book.form.country.title')}
268
+ labelClassName="mb-3"
268
269
  required
269
270
  />
270
271
 
271
272
  {city && (
272
273
  <Select
273
- className="w-full border-gray-500 text-sm mt-2"
274
+ className="w-full border-gray-500 text-sm"
274
275
  options={cityOptions}
275
276
  {...register('city')}
276
277
  error={errors.city}
277
278
  data-testid="address-form-city"
278
279
  label={t('account.address_book.form.province.title')}
280
+ labelClassName="mb-3"
279
281
  required
280
282
  />
281
283
  )}
@@ -283,24 +285,26 @@ export const AddressForm = (props: Props) => {
283
285
  <div className="flex gap-4">
284
286
  <div className="flex-1">
285
287
  <Select
286
- className="w-full border-gray-500 text-sm mt-2"
288
+ className="w-full border-gray-500 text-sm"
287
289
  options={townshipOptions}
288
290
  {...register('township')}
289
291
  error={errors.township}
290
292
  data-testid="address-form-township"
291
293
  label={t('account.address_book.form.township.title')}
294
+ labelClassName="mb-3"
292
295
  required
293
296
  />
294
297
  </div>
295
298
  {district && (
296
299
  <div className="flex-1">
297
300
  <Select
298
- className="w-full border-gray-500 text-sm mt-2"
301
+ className="w-full border-gray-500 text-sm"
299
302
  options={districtOptions}
300
303
  {...register('district')}
301
304
  error={errors.district}
302
305
  data-testid="address-form-district"
303
306
  label={t('account.address_book.form.district.title')}
307
+ labelClassName="mb-3"
304
308
  required
305
309
  />
306
310
  </div>
@@ -31,13 +31,13 @@ export const ContentHeader = (props: Props) => {
31
31
  </h3>
32
32
  <Select
33
33
  onChange={handleChange}
34
- className="w-full mb-4 md:mb-0 md:w-56 md:mr-4 text-xs"
34
+ className="w-full mb-4 md:mb-0 md:w-56 text-xs"
35
35
  options={orders}
36
36
  data-testid="account-orders-header-select"
37
37
  ></Select>
38
38
  <Button
39
39
  className={clsx(
40
- 'w-full md:w-56',
40
+ 'w-full md:w-56 md:ms-4',
41
41
  isButtonDisabled &&
42
42
  'hover:bg-black hover:text-white disabled:opacity-75'
43
43
  )}
@@ -0,0 +1,106 @@
1
+ 'use client';
2
+
3
+ import { useLocalization } from '@akinon/next/hooks';
4
+ import { Basket } from '@akinon/next/types';
5
+ import { Button, LoaderSpinner, Link } from '@theme/components';
6
+ import { BasketItem, Summary } from '@theme/views/basket';
7
+ import { ROUTES } from '@theme/routes';
8
+ import PluginModule, { Component } from '@akinon/next/components/plugin-module';
9
+ import { useEffect, useState } from 'react';
10
+ import { pushCartView } from '@theme/utils/gtm';
11
+
12
+ interface BasketContentProps {
13
+ initialBasket: Basket;
14
+ multiBasket: boolean;
15
+ }
16
+
17
+ export function BasketContent({
18
+ initialBasket,
19
+ multiBasket
20
+ }: BasketContentProps) {
21
+ const { t } = useLocalization();
22
+ const [basket, setBasket] = useState<Basket>(initialBasket);
23
+
24
+ useEffect(() => {
25
+ if (basket) {
26
+ const products = basket.basketitem_set.map((basketItem) => ({
27
+ ...basketItem.product
28
+ }));
29
+ pushCartView(products);
30
+ }
31
+ }, [basket]);
32
+
33
+ const handleBasketUpdate = (updatedBasket: Basket) => {
34
+ setBasket(updatedBasket);
35
+ };
36
+
37
+ if (!basket) {
38
+ return (
39
+ <div className="flex justify-center w-full">
40
+ <LoaderSpinner />
41
+ </div>
42
+ );
43
+ }
44
+
45
+ return (
46
+ <div className="max-w-screen-xl p-4 flex flex-col text-primary-800 lg:p-8 xl:flex-row xl:mx-auto">
47
+ {basket.basketitem_set && basket.basketitem_set.length > 0 ? (
48
+ <>
49
+ <div className="flex-1 xl:mr-16">
50
+ <div className="flex items-center justify-between py-2 border-b border-gray-200 lg:py-3">
51
+ <h2 className="text-xl lg:text-2xl font-light">
52
+ {t('basket.my_cart')}
53
+ </h2>
54
+ <Link
55
+ href={ROUTES.HOME}
56
+ className="text-xs hover:text-secondary-500"
57
+ >
58
+ {t('basket.back_to_shopping')}
59
+ </Link>
60
+ </div>
61
+ <ul>
62
+ {multiBasket ? (
63
+ <PluginModule
64
+ component={Component.MultiBasket}
65
+ props={{
66
+ BasketItem,
67
+ onBasketUpdate: handleBasketUpdate
68
+ }}
69
+ />
70
+ ) : (
71
+ basket.basketitem_set.map((basketItem, index) => (
72
+ <BasketItem
73
+ key={index}
74
+ basketItem={basketItem}
75
+ onBasketUpdate={handleBasketUpdate}
76
+ />
77
+ ))
78
+ )}
79
+ </ul>
80
+ </div>
81
+ <Summary basket={basket} onBasketUpdate={handleBasketUpdate} />
82
+ </>
83
+ ) : (
84
+ <div className="flex flex-col items-center container max-w-screen-sm py-4 px-4 xs:py-6 xs:px-6 sm:py-8 sm:px-8 lg:max-w-screen-xl">
85
+ <h1
86
+ className="w-full text-xl font-light text-secondary text-center sm:text-2xl"
87
+ data-testid="basket-empty"
88
+ >
89
+ {t('basket.empty.title')}
90
+ </h1>
91
+
92
+ <div className="w-full text-sm text-black-800 text-center my-4 mb-2 sm:text-base">
93
+ <p>{t('basket.empty.content_first')}</p>
94
+ <p>{t('basket.empty.content_second')}.</p>
95
+ </div>
96
+
97
+ <Link href={ROUTES.HOME} passHref>
98
+ <Button className="px-10 mt-2" appearance="filled">
99
+ {t('basket.empty.button')}
100
+ </Button>
101
+ </Link>
102
+ </div>
103
+ )}
104
+ </div>
105
+ );
106
+ }
@@ -3,7 +3,7 @@ import {
3
3
  useUpdateQuantityMutation
4
4
  } from '@akinon/next/data/client/basket';
5
5
  import { useAppDispatch } from '@akinon/next/redux/hooks';
6
- import { BasketItem as BasketItemType } from '@akinon/next/types';
6
+ import { Basket, BasketItem as BasketItemType } from '@akinon/next/types';
7
7
  import { Price, Button, Icon, Modal, Select, Link } from '@theme/components';
8
8
  import { useState } from 'react';
9
9
  import { useAddFavoriteMutation } from '@akinon/next/data/client/wishlist';
@@ -19,11 +19,12 @@ import { pushRemoveFromCart } from '@theme/utils/gtm';
19
19
  interface Props {
20
20
  basketItem?: BasketItemType;
21
21
  namespace?: string;
22
+ onBasketUpdate?: (basket: Basket) => void;
22
23
  }
23
24
 
24
25
  export const BasketItem = (props: Props) => {
25
26
  const { t } = useLocalization();
26
- const { basketItem, namespace } = props;
27
+ const { basketItem, namespace, onBasketUpdate } = props;
27
28
  const [updateQuantityMutation] = useUpdateQuantityMutation();
28
29
  const dispatch = useAppDispatch();
29
30
  const [isRemoveBasketModalOpen, setRemoveBasketModalOpen] = useState(false);
@@ -49,19 +50,21 @@ export const BasketItem = (props: Props) => {
49
50
  requestParams.namespace = namespace;
50
51
  }
51
52
 
52
- await updateQuantityMutation(requestParams)
53
- .unwrap()
54
- .then((data) =>
55
- dispatch(
56
- basketApi.util.updateQueryData(
57
- 'getBasket',
58
- undefined,
59
- (draftBasket) => {
60
- Object.assign(draftBasket, data.basket);
61
- }
62
- )
53
+ try {
54
+ const response = await updateQuantityMutation(requestParams).unwrap();
55
+ dispatch(
56
+ basketApi.util.updateQueryData(
57
+ 'getBasket',
58
+ undefined,
59
+ (draftBasket) => {
60
+ Object.assign(draftBasket, response.basket);
61
+ }
63
62
  )
64
63
  );
64
+ onBasketUpdate?.(response.basket);
65
+ } catch (error) {
66
+ console.error('Error updating quantity:', error);
67
+ }
65
68
  };
66
69
 
67
70
  const deleteProduct = async (productPk?: number) => {
@@ -18,6 +18,7 @@ import clsx from 'clsx';
18
18
 
19
19
  interface Props {
20
20
  basket: Basket;
21
+ onBasketUpdate?: (basket: Basket) => void;
21
22
  }
22
23
 
23
24
  const voucherCodeFormSchema = (t) =>
@@ -27,7 +28,7 @@ const voucherCodeFormSchema = (t) =>
27
28
 
28
29
  export const Summary = (props: Props) => {
29
30
  const { t } = useLocalization();
30
- const { basket } = props;
31
+ const { basket, onBasketUpdate } = props;
31
32
  const router = useRouter();
32
33
  const {
33
34
  register,
@@ -53,7 +54,7 @@ export const Summary = (props: Props) => {
53
54
  const removeVoucherCode = () => {
54
55
  removeVoucherCodeMutation()
55
56
  .unwrap()
56
- .then((basket) =>
57
+ .then((basket) => {
57
58
  dispatch(
58
59
  basketApi.util.updateQueryData(
59
60
  'getBasket',
@@ -62,8 +63,9 @@ export const Summary = (props: Props) => {
62
63
  Object.assign(draftBasket, basket);
63
64
  }
64
65
  )
65
- )
66
- )
66
+ );
67
+ onBasketUpdate?.(basket);
68
+ })
67
69
  .catch((error: Error) => {
68
70
  setError('voucherCode', { message: error.data.non_field_errors });
69
71
  });
@@ -74,7 +76,7 @@ export const Summary = (props: Props) => {
74
76
  voucher_code: data.voucherCode
75
77
  })
76
78
  .unwrap()
77
- .then((basket) =>
79
+ .then((basket) => {
78
80
  dispatch(
79
81
  basketApi.util.updateQueryData(
80
82
  'getBasket',
@@ -83,8 +85,9 @@ export const Summary = (props: Props) => {
83
85
  Object.assign(draftBasket, basket);
84
86
  }
85
87
  )
86
- )
87
- )
88
+ );
89
+ onBasketUpdate?.(basket);
90
+ })
88
91
  .catch((error: Error) => {
89
92
  setError('voucherCode', { message: error.data.non_field_errors });
90
93
  });
@@ -76,7 +76,7 @@ export default function ActionMenu() {
76
76
  : 'bg-secondary-500 text-white'
77
77
  )}
78
78
  >
79
- {totalQuantity}
79
+ <span data-testid="header-basket-count">{totalQuantity}</span>
80
80
  </Badge>
81
81
  ),
82
82
  miniBasket: <MiniBasket />
@@ -69,45 +69,65 @@ export default async () => {
69
69
  }
70
70
 
71
71
  const definedPlugins = [
72
+ {
73
+ name: 'Akifast',
74
+ value: 'pz-akifast'
75
+ },
76
+ {
77
+ name: 'Apple Pay',
78
+ value: 'pz-apple-pay'
79
+ },
80
+ {
81
+ name: 'B2B',
82
+ value: 'pz-b2b'
83
+ },
72
84
  {
73
85
  name: 'Basket Gift Pack',
74
86
  value: 'pz-basket-gift-pack'
75
87
  },
76
88
  {
77
- name: 'Click & Collect',
78
- value: 'pz-click-collect'
89
+ name: 'BKM Express',
90
+ value: 'pz-bkm'
79
91
  },
80
92
  {
81
93
  name: 'Checkout Gift Pack',
82
94
  value: 'pz-checkout-gift-pack'
83
95
  },
84
96
  {
85
- name: 'One Click Checkout',
86
- value: 'pz-one-click-checkout'
97
+ name: 'Click & Collect',
98
+ value: 'pz-click-collect'
99
+ },
100
+ {
101
+ name: 'Credit Payment',
102
+ value: 'pz-credit-payment'
87
103
  },
88
104
  {
89
105
  name: 'Garanti Pay',
90
106
  value: 'pz-gpay'
91
107
  },
92
108
  {
93
- name: 'Pay On Delivery',
94
- value: 'pz-pay-on-delivery'
109
+ name: 'Masterpass',
110
+ value: 'pz-masterpass'
95
111
  },
96
112
  {
97
- name: 'Otp',
98
- value: 'pz-otp'
113
+ name: 'Multi Basket',
114
+ value: 'pz-multi-basket'
99
115
  },
100
116
  {
101
- name: 'BKM Express',
102
- value: 'pz-bkm'
117
+ name: 'One Click Checkout',
118
+ value: 'pz-one-click-checkout'
103
119
  },
104
120
  {
105
- name: 'Credit Payment',
106
- value: 'pz-credit-payment'
121
+ name: 'Otp',
122
+ value: 'pz-otp'
107
123
  },
108
124
  {
109
- name: 'Multi Basket',
110
- value: 'pz-multi-basket'
125
+ name: 'Pay On Delivery',
126
+ value: 'pz-pay-on-delivery'
127
+ },
128
+ {
129
+ name: 'Saved Card',
130
+ value: 'pz-saved-card'
111
131
  },
112
132
  {
113
133
  name: 'Tabby Payment Extension',
@@ -116,6 +136,10 @@ export default async () => {
116
136
  {
117
137
  name: 'Tamara Payment Extension',
118
138
  value: 'pz-tamara-extension'
139
+ },
140
+ {
141
+ name: 'Flow Payment',
142
+ value: 'pz-flow-payment'
119
143
  }
120
144
  ];
121
145
 
@@ -84,45 +84,65 @@ exports.default = () => __awaiter(void 0, void 0, void 0, function* () {
84
84
  process.exit(1);
85
85
  }
86
86
  const definedPlugins = [
87
+ {
88
+ name: 'Akifast',
89
+ value: 'pz-akifast'
90
+ },
91
+ {
92
+ name: 'Apple Pay',
93
+ value: 'pz-apple-pay'
94
+ },
95
+ {
96
+ name: 'B2B',
97
+ value: 'pz-b2b'
98
+ },
87
99
  {
88
100
  name: 'Basket Gift Pack',
89
101
  value: 'pz-basket-gift-pack'
90
102
  },
91
103
  {
92
- name: 'Click & Collect',
93
- value: 'pz-click-collect'
104
+ name: 'BKM Express',
105
+ value: 'pz-bkm'
94
106
  },
95
107
  {
96
108
  name: 'Checkout Gift Pack',
97
109
  value: 'pz-checkout-gift-pack'
98
110
  },
99
111
  {
100
- name: 'One Click Checkout',
101
- value: 'pz-one-click-checkout'
112
+ name: 'Click & Collect',
113
+ value: 'pz-click-collect'
114
+ },
115
+ {
116
+ name: 'Credit Payment',
117
+ value: 'pz-credit-payment'
102
118
  },
103
119
  {
104
120
  name: 'Garanti Pay',
105
121
  value: 'pz-gpay'
106
122
  },
107
123
  {
108
- name: 'Pay On Delivery',
109
- value: 'pz-pay-on-delivery'
124
+ name: 'Masterpass',
125
+ value: 'pz-masterpass'
110
126
  },
111
127
  {
112
- name: 'Otp',
113
- value: 'pz-otp'
128
+ name: 'Multi Basket',
129
+ value: 'pz-multi-basket'
114
130
  },
115
131
  {
116
- name: 'BKM Express',
117
- value: 'pz-bkm'
132
+ name: 'One Click Checkout',
133
+ value: 'pz-one-click-checkout'
118
134
  },
119
135
  {
120
- name: 'Credit Payment',
121
- value: 'pz-credit-payment'
136
+ name: 'Otp',
137
+ value: 'pz-otp'
122
138
  },
123
139
  {
124
- name: 'Multi Basket',
125
- value: 'pz-multi-basket'
140
+ name: 'Pay On Delivery',
141
+ value: 'pz-pay-on-delivery'
142
+ },
143
+ {
144
+ name: 'Saved Card',
145
+ value: 'pz-saved-card'
126
146
  },
127
147
  {
128
148
  name: 'Tabby Payment Extension',
@@ -131,6 +151,10 @@ exports.default = () => __awaiter(void 0, void 0, void 0, function* () {
131
151
  {
132
152
  name: 'Tamara Payment Extension',
133
153
  value: 'pz-tamara-extension'
154
+ },
155
+ {
156
+ name: 'Flow Payment',
157
+ value: 'pz-flow-payment'
134
158
  }
135
159
  ];
136
160
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akinon/projectzero",
3
- "version": "1.91.0",
3
+ "version": "1.92.0-rc.11",
4
4
  "private": false,
5
5
  "description": "CLI tool to manage your Project Zero Next project",
6
6
  "bin": {