@akinon/projectzero 1.105.0 → 1.106.0-rc.85

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 (42) hide show
  1. package/CHANGELOG.md +234 -4
  2. package/app-template/.env.example +1 -0
  3. package/app-template/CHANGELOG.md +4964 -315
  4. package/app-template/README.md +25 -1
  5. package/app-template/package.json +20 -19
  6. package/app-template/public/locales/en/checkout.json +6 -0
  7. package/app-template/public/locales/en/common.json +42 -1
  8. package/app-template/public/locales/tr/checkout.json +6 -0
  9. package/app-template/public/locales/tr/common.json +42 -1
  10. package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +9 -82
  11. package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/page.tsx +12 -1
  12. package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/loading.tsx +67 -0
  13. package/app-template/src/app/api/image-proxy/route.ts +1 -0
  14. package/app-template/src/app/api/similar-product-list/route.ts +1 -0
  15. package/app-template/src/app/api/similar-products/route.ts +1 -0
  16. package/app-template/src/assets/fonts/pz-icon.css +3 -0
  17. package/app-template/src/components/accordion.tsx +22 -19
  18. package/app-template/src/components/file-input.tsx +27 -7
  19. package/app-template/src/components/input.tsx +2 -1
  20. package/app-template/src/components/price.tsx +1 -1
  21. package/app-template/src/components/types/index.ts +24 -1
  22. package/app-template/src/hooks/index.ts +2 -0
  23. package/app-template/src/hooks/use-product-cart.ts +77 -0
  24. package/app-template/src/hooks/use-stock-alert.ts +74 -0
  25. package/app-template/src/plugins.js +2 -1
  26. package/app-template/src/settings.js +6 -1
  27. package/app-template/src/utils/variant-validation.ts +41 -0
  28. package/app-template/src/views/basket/basket-content.tsx +106 -0
  29. package/app-template/src/views/basket/basket-item.tsx +16 -13
  30. package/app-template/src/views/basket/summary.tsx +10 -7
  31. package/app-template/src/views/checkout/steps/payment/options/store-credit.tsx +121 -0
  32. package/app-template/src/views/checkout/summary.tsx +10 -0
  33. package/app-template/src/views/guest-login/index.tsx +6 -1
  34. package/app-template/src/views/header/search/index.tsx +17 -5
  35. package/app-template/src/views/product/product-actions.tsx +165 -0
  36. package/app-template/src/views/product/product-info.tsx +61 -263
  37. package/app-template/src/views/product/product-share.tsx +56 -0
  38. package/app-template/src/views/product/product-variants.tsx +26 -0
  39. package/app-template/src/views/product/slider.tsx +86 -73
  40. package/commands/plugins.ts +63 -16
  41. package/dist/commands/plugins.js +57 -16
  42. package/package.json +1 -1
@@ -29,7 +29,13 @@ export interface PaginationProps {
29
29
  isLoading?: boolean;
30
30
  }
31
31
 
32
- export type FileInputProps = React.HTMLProps<HTMLInputElement>;
32
+ export interface FileInputProps extends React.HTMLProps<HTMLInputElement> {
33
+ fileClassName?: string;
34
+ fileNameWrapperClassName?: string;
35
+ fileInputClassName?: string;
36
+ onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
37
+ buttonClassName?: string;
38
+ }
33
39
 
34
40
  export type RadioProps = React.HTMLProps<HTMLInputElement>;
35
41
 
@@ -92,3 +98,20 @@ export interface BadgeProps {
92
98
  children: ReactNode;
93
99
  className?: string;
94
100
  }
101
+
102
+ export type AccordionProps = {
103
+ isCollapse?: boolean;
104
+ collapseClassName?: string;
105
+ title?: string;
106
+ subTitle?: string;
107
+ icons?: string[];
108
+ iconSize?: number;
109
+ iconColor?: string;
110
+ children?: ReactNode;
111
+ headerClassName?: string;
112
+ className?: string;
113
+ titleClassName?: string;
114
+ subTitleClassName?: string;
115
+ dataTestId?: string;
116
+ contentClassName?: string;
117
+ };
@@ -1 +1,3 @@
1
+ export * from './use-contract';
2
+ export * from './use-fav-button';
1
3
  export * from './use-add-product-to-basket';
@@ -0,0 +1,77 @@
1
+ import { useState } from 'react';
2
+ import { useAddProductToBasket } from './index';
3
+ import { pushAddToCart } from '@theme/utils/gtm';
4
+ import { validateVariantSelection } from '../utils/variant-validation';
5
+ import { VariantType } from '@akinon/next/types';
6
+
7
+ interface Product {
8
+ pk: number;
9
+ [key: string]: any;
10
+ }
11
+
12
+ interface UseProductCartProps {
13
+ product: Product;
14
+ variants: VariantType[];
15
+ }
16
+
17
+ interface AddToCartError {
18
+ data?: {
19
+ non_field_errors?: string[];
20
+ [key: string]: string[];
21
+ };
22
+ }
23
+
24
+ export const useProductCart = ({ product, variants }: UseProductCartProps) => {
25
+ const [productError, setProductError] = useState<React.ReactNode | null>(null);
26
+ const [addProduct, { isLoading: isAddToCartLoading }] = useAddProductToBasket();
27
+
28
+ const formatError = (error: AddToCartError) => {
29
+ if (error?.data?.non_field_errors) {
30
+ return error.data.non_field_errors;
31
+ }
32
+
33
+ if (error?.data) {
34
+ return Object.keys(error.data).map(
35
+ (key) => `${key}: ${error.data[key].join(', ')}`
36
+ );
37
+ }
38
+
39
+ return 'An error occurred';
40
+ };
41
+
42
+ const addProductToCart = async () => {
43
+ const validation = validateVariantSelection(variants);
44
+
45
+ if (!validation.isValid) {
46
+ setProductError(validation.errorMessage);
47
+ return false;
48
+ }
49
+
50
+ try {
51
+ await addProduct({
52
+ product: product.pk,
53
+ quantity: 1,
54
+ attributes: {}
55
+ });
56
+
57
+ pushAddToCart(product);
58
+ setProductError(null);
59
+ return true;
60
+ } catch (error) {
61
+ const formattedError = formatError(error as AddToCartError);
62
+ setProductError(formattedError);
63
+ return false;
64
+ }
65
+ };
66
+
67
+ const clearProductError = () => {
68
+ setProductError(null);
69
+ };
70
+
71
+ return {
72
+ addProductToCart,
73
+ productError,
74
+ clearProductError,
75
+ isAddToCartLoading
76
+ };
77
+ };
@@ -0,0 +1,74 @@
1
+ import React, { useState } from 'react';
2
+ import { useAddStockAlertMutation } from '@akinon/next/data/client/wishlist';
3
+ import { Trans } from '@akinon/next/components/trans';
4
+ import { useLocalization } from '@akinon/next/hooks';
5
+
6
+ interface UseStockAlertProps {
7
+ productPk: number;
8
+ userEmail?: string;
9
+ }
10
+
11
+ export const useStockAlert = ({ productPk, userEmail }: UseStockAlertProps) => {
12
+ const { t } = useLocalization();
13
+ const [isModalOpen, setIsModalOpen] = useState(false);
14
+ const [stockAlertResponseMessage, setStockAlertResponseMessage] = useState<React.ReactNode | null>(null);
15
+ const [productError, setProductError] = useState<React.ReactNode | null>(null);
16
+
17
+ const [addStockAlert, { isLoading: isAddToStockAlertLoading }] = useAddStockAlertMutation();
18
+
19
+ const handleSuccess = () => {
20
+ setStockAlertResponseMessage(React.createElement(
21
+ Trans,
22
+ {
23
+ i18nKey: "product.stock_alert.success_description",
24
+ components: {
25
+ Email: React.createElement('span', {}, userEmail)
26
+ }
27
+ }
28
+ ));
29
+ setIsModalOpen(true);
30
+ setProductError(null);
31
+ };
32
+
33
+ const handleError = (err: any) => {
34
+ if (err.status !== 401) {
35
+ setStockAlertResponseMessage(
36
+ t('product.stock_alert.error_description').toString()
37
+ );
38
+ setIsModalOpen(true);
39
+ }
40
+ };
41
+
42
+ const addProductToStockAlertList = async () => {
43
+ try {
44
+ await addStockAlert({
45
+ productPk,
46
+ email: userEmail
47
+ })
48
+ .unwrap()
49
+ .then(handleSuccess)
50
+ .catch(handleError);
51
+ } catch (error: any) {
52
+ setProductError(error?.data?.non_field_errors || null);
53
+ }
54
+ };
55
+
56
+ const closeModal = () => {
57
+ setIsModalOpen(false);
58
+ };
59
+
60
+ const clearError = () => {
61
+ setProductError(null);
62
+ };
63
+
64
+ return {
65
+ addProductToStockAlertList,
66
+ isModalOpen,
67
+ setIsModalOpen,
68
+ stockAlertResponseMessage,
69
+ productError,
70
+ isAddToStockAlertLoading,
71
+ closeModal,
72
+ clearError
73
+ };
74
+ };
@@ -15,5 +15,6 @@ module.exports = [
15
15
  'pz-saved-card',
16
16
  'pz-tabby-extension',
17
17
  'pz-tamara-extension',
18
- 'pz-hepsipay'
18
+ 'pz-hepsipay',
19
+ 'pz-similar-products'
19
20
  ];
@@ -1,6 +1,10 @@
1
1
  const { LocaleUrlStrategy } = require('@akinon/next/localization');
2
2
  const { ROUTES } = require('@theme/routes');
3
3
 
4
+ /* IMPORTANT *
5
+ * In order to use one locale in the locales array and hide the default locale in the URL, you need to set the localeUrlStrategy to LocaleUrlStrategy.ShowAllLocales.
6
+ */
7
+
4
8
  const commerceUrl = encodeURI(process.env.SERVICE_BACKEND_URL ?? 'default');
5
9
 
6
10
  /** @type {import('@akinon/next/types').Settings} */
@@ -14,6 +18,7 @@ module.exports = {
14
18
  { translationKey: 'size', key: 'size' }
15
19
  ],
16
20
  localization: {
21
+ // If there is one locale in the locales array, the default locale will be hidden in the URL.
17
22
  locales: [
18
23
  {
19
24
  label: 'EN',
@@ -41,7 +46,7 @@ module.exports = {
41
46
  }
42
47
  ],
43
48
  defaultLocaleValue: 'en',
44
- localeUrlStrategy: LocaleUrlStrategy.HideDefaultLocale,
49
+ localeUrlStrategy: LocaleUrlStrategy.HideDefaultLocale, // If there is one locale in the locales array, the default locale will be hidden in the URL and localeUrlStrategy should be set to LocaleUrlStrategy.ShowAllLocales.
45
50
  redirectToDefaultLocale: true,
46
51
  defaultCurrencyCode: 'usd'
47
52
  },
@@ -0,0 +1,41 @@
1
+ import React from 'react';
2
+ import { Trans } from '@akinon/next/components/trans';
3
+ import { VariantType } from '@akinon/next/types';
4
+
5
+ export const isVariantSelectionComplete = (variants: VariantType[]): boolean => {
6
+ return variants?.every((variant) =>
7
+ variant?.options.some((opt) => opt.is_selected)
8
+ );
9
+ };
10
+
11
+ export const getUnselectedVariant = (variants: VariantType[]): VariantType | undefined => {
12
+ return variants.find((variant) =>
13
+ variant.options.every((opt) => !opt.is_selected)
14
+ );
15
+ };
16
+
17
+ export const createVariantErrorMessage = (unselectedVariant: VariantType) => {
18
+ const TransComponent = Trans as any;
19
+ return React.createElement(
20
+ TransComponent,
21
+ {
22
+ i18nKey: "product.please_select_variant",
23
+ components: {
24
+ VariantName: React.createElement('span', {}, unselectedVariant.attribute_name)
25
+ }
26
+ }
27
+ );
28
+ };
29
+
30
+ export const validateVariantSelection = (variants: VariantType[]) => {
31
+ const unselectedVariant = getUnselectedVariant(variants);
32
+
33
+ if (unselectedVariant) {
34
+ return {
35
+ isValid: false,
36
+ errorMessage: createVariantErrorMessage(unselectedVariant)
37
+ };
38
+ }
39
+
40
+ return { isValid: true, errorMessage: null };
41
+ };
@@ -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);
@@ -54,19 +55,21 @@ export const BasketItem = (props: Props) => {
54
55
  requestParams.namespace = namespace;
55
56
  }
56
57
 
57
- await updateQuantityMutation(requestParams)
58
- .unwrap()
59
- .then((data) =>
60
- dispatch(
61
- basketApi.util.updateQueryData(
62
- 'getBasket',
63
- undefined,
64
- (draftBasket) => {
65
- Object.assign(draftBasket, data.basket);
66
- }
67
- )
58
+ try {
59
+ const response = await updateQuantityMutation(requestParams).unwrap();
60
+ dispatch(
61
+ basketApi.util.updateQueryData(
62
+ 'getBasket',
63
+ undefined,
64
+ (draftBasket) => {
65
+ Object.assign(draftBasket, response.basket);
66
+ }
68
67
  )
69
68
  );
69
+ onBasketUpdate?.(response.basket);
70
+ } catch (error) {
71
+ console.error('Error updating quantity:', error);
72
+ }
70
73
  };
71
74
 
72
75
  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
  });
@@ -0,0 +1,121 @@
1
+ import clsx from 'clsx';
2
+ import {
3
+ useGetCheckoutLoyaltyBalanceQuery,
4
+ usePayWithLoyaltyBalanceMutation
5
+ } from '@akinon/next/data/client/checkout';
6
+ import { useAppSelector } from '@akinon/next/redux/hooks';
7
+ import { useMemo, useState } from 'react';
8
+ import { useLocalization } from '@akinon/next/hooks';
9
+ import { twMerge } from 'tailwind-merge';
10
+ import { Icon, Price } from '@theme/components';
11
+ import { Trans } from '@akinon/next/components';
12
+ import { LoaderSpinner } from '@theme/components';
13
+
14
+ export const StoreCredits = () => {
15
+ const { t } = useLocalization();
16
+
17
+ const [payWithLoyaltyBalance, { isLoading: isPayWithLoyaltyBalanceLoading }] =
18
+ usePayWithLoyaltyBalanceMutation();
19
+
20
+ const { loyaltyBalance, preOrder } = useAppSelector(
21
+ (state) => state.checkout
22
+ );
23
+
24
+ const { isLoading: isLoyaltyBalanceLoading } =
25
+ useGetCheckoutLoyaltyBalanceQuery(undefined, {
26
+ refetchOnMountOrArgChange: true,
27
+ skip: !preOrder?.payment_option
28
+ });
29
+
30
+ const isLoyaltyBalanceUsed = useMemo(() => {
31
+ return parseFloat(preOrder?.loyalty_money ?? '0') > 0;
32
+ }, [preOrder?.loyalty_money]);
33
+
34
+ const [isLoading, setIsLoading] = useState(false);
35
+
36
+ const handleClick = async () => {
37
+ if (isLoading) return;
38
+ setIsLoading(true);
39
+
40
+ try {
41
+ await payWithLoyaltyBalance(isLoyaltyBalanceUsed ? '0' : loyaltyBalance);
42
+ } finally {
43
+ setIsLoading(false);
44
+ }
45
+ };
46
+
47
+ if (preOrder?.is_guest) {
48
+ return null;
49
+ }
50
+
51
+ if (isLoyaltyBalanceLoading) {
52
+ return (
53
+ <div className="mb-3 px-4 py-3 xs:px-0">
54
+ <LoaderSpinner />
55
+ </div>
56
+ );
57
+ }
58
+
59
+ if (parseFloat(loyaltyBalance) <= 0) {
60
+ return null;
61
+ }
62
+ return (
63
+ <div
64
+ className={twMerge(
65
+ 'hidden flex-col w-full mb-4 border border-solid border-gray-400 px-0 md:p-4',
66
+ isPayWithLoyaltyBalanceLoading && 'pointer-events-none opacity-30',
67
+ parseFloat(loyaltyBalance) > 0 && 'block'
68
+ )}
69
+ >
70
+ <div className="flex w-full items-center">
71
+ <button onClick={handleClick}>
72
+ <span
73
+ className={clsx(
74
+ 'flex h-5 w-5 items-center justify-center rounded border border-solid border-primary',
75
+ isLoyaltyBalanceUsed ? 'bg-primary' : 'bg-white'
76
+ )}
77
+ >
78
+ <Icon
79
+ name={isLoyaltyBalanceUsed ? 'check' : ''}
80
+ size={10}
81
+ className={clsx({ 'text-white': isLoyaltyBalanceUsed })}
82
+ />
83
+ </span>
84
+ </button>
85
+
86
+ <div className="w-full pl-4">
87
+ <p className="cursor-pointer text-sm" onClick={handleClick}>
88
+ {t('checkout.payment.store_credit.use_my_store_credits')}
89
+ </p>
90
+ <p className="flex text-sm text-[#606060]">
91
+ {t('checkout.payment.store_credit.available_balance')}:
92
+ <Price
93
+ value={loyaltyBalance}
94
+ currencyCode={preOrder?.currency_type_label}
95
+ className="pe-1 font-bold"
96
+ />
97
+ </p>
98
+ </div>
99
+ </div>
100
+
101
+ {isLoyaltyBalanceUsed && parseFloat(preOrder?.unpaid_amount) > 0 && (
102
+ <p className="my-4 text-[15px] font-light italic text-[#707070] max-xs:text-xs">
103
+ <Trans
104
+ i18nKey="checkout.payment.store_credit.insufficient_balance"
105
+ components={{
106
+ Amount: (
107
+ <div className="inline-flex">
108
+ <Price
109
+ value={preOrder?.unpaid_amount}
110
+ currencyCode={preOrder?.currency_type_label}
111
+ className="text-primary"
112
+ />
113
+ </div>
114
+ )
115
+ }}
116
+ />
117
+ </p>
118
+ )}
119
+ </div>
120
+ );
121
+ };
@@ -8,6 +8,7 @@ import PluginModule, { Component } from '@akinon/next/components/plugin-module';
8
8
  import { twMerge } from 'tailwind-merge';
9
9
  import { Image } from '@akinon/next/components/image';
10
10
  import { Trans } from '@akinon/next/components/trans';
11
+ import { StoreCredits } from './steps/payment/options/store-credit';
11
12
 
12
13
  export const Summary = () => {
13
14
  const { t } = useLocalization();
@@ -38,6 +39,7 @@ export const Summary = () => {
38
39
  'flex flex-col w-full mb-4 border border-solid border-gray-400'
39
40
  }}
40
41
  />
42
+ <StoreCredits />
41
43
  <div className="flex flex-col w-full border border-solid border-gray-400">
42
44
  <div className="flex justify-between items-center flex-row border-b border-solid border-gray-400 px-4 py-2 sm:px-5 sm:py-4 sm:min-h-15">
43
45
  <span className="text-black-800 text-xl font-light sm:text-2xl">
@@ -118,6 +120,14 @@ export const Summary = () => {
118
120
  <Price value={preOrder?.shipping_amount} />
119
121
  </span>
120
122
  </div>
123
+ {parseFloat(preOrder?.loyalty_money) > 0 && (
124
+ <div className="flex items-center justify-between w-full text-xs text-black-800 py-1 px-4 sm:px-5">
125
+ <span>{t('checkout.summary.loyalty_money_total')}</span>
126
+ <span>
127
+ <Price value={preOrder?.loyalty_money} />
128
+ </span>
129
+ </div>
130
+ )}
121
131
  <div className="flex items-center justify-between w-full text-xs text-black-800 py-1 px-4 sm:px-5">
122
132
  <span>{t('checkout.summary.discounts_total')}</span>
123
133
  <span>
@@ -51,9 +51,14 @@ const GuestLogin = () => {
51
51
  ).unwrap();
52
52
 
53
53
  Object.keys(response?.errors || {}).forEach((key) => {
54
+ const errorValue = response?.errors[key];
55
+ const message = Array.isArray(errorValue)
56
+ ? errorValue.join(', ')
57
+ : errorValue || '';
58
+
54
59
  setError(key as keyof GuestLoginFormParams, {
55
60
  type: 'custom',
56
- message: response?.errors[key]?.join(', ')
61
+ message
57
62
  });
58
63
  });
59
64
  } catch (error) {