@akinon/projectzero 1.106.0 → 1.107.0-rc.86
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 +233 -4
- package/app-template/.env.example +1 -0
- package/app-template/CHANGELOG.md +4955 -314
- package/app-template/README.md +25 -1
- package/app-template/package.json +20 -20
- package/app-template/public/locales/en/common.json +42 -1
- package/app-template/public/locales/tr/common.json +42 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +9 -82
- package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/page.tsx +12 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/loading.tsx +67 -0
- package/app-template/src/app/api/image-proxy/route.ts +1 -0
- package/app-template/src/app/api/similar-product-list/route.ts +1 -0
- package/app-template/src/app/api/similar-products/route.ts +1 -0
- package/app-template/src/assets/fonts/pz-icon.css +3 -0
- package/app-template/src/components/input.tsx +2 -1
- package/app-template/src/hooks/index.ts +2 -0
- package/app-template/src/hooks/use-product-cart.ts +77 -0
- package/app-template/src/hooks/use-stock-alert.ts +74 -0
- package/app-template/src/plugins.js +2 -1
- package/app-template/src/settings.js +6 -1
- package/app-template/src/utils/variant-validation.ts +41 -0
- package/app-template/src/views/basket/basket-content.tsx +106 -0
- package/app-template/src/views/basket/basket-item.tsx +16 -13
- package/app-template/src/views/basket/summary.tsx +10 -7
- package/app-template/src/views/guest-login/index.tsx +6 -1
- package/app-template/src/views/header/search/index.tsx +17 -5
- package/app-template/src/views/product/product-actions.tsx +165 -0
- package/app-template/src/views/product/product-info.tsx +61 -263
- package/app-template/src/views/product/product-share.tsx +56 -0
- package/app-template/src/views/product/product-variants.tsx +26 -0
- package/app-template/src/views/product/slider.tsx +86 -73
- package/commands/plugins.ts +29 -2
- package/dist/commands/plugins.js +23 -2
- package/package.json +1 -1
|
@@ -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
|
-
|
|
58
|
-
.unwrap()
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
(draftBasket)
|
|
65
|
-
|
|
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
|
});
|
|
@@ -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
|
|
61
|
+
message
|
|
57
62
|
});
|
|
58
63
|
});
|
|
59
64
|
} catch (error) {
|
|
@@ -4,11 +4,11 @@ import { useEffect, useRef, useState } from 'react';
|
|
|
4
4
|
import { useAppDispatch, useAppSelector } from '@akinon/next/redux/hooks';
|
|
5
5
|
import { closeSearch } from '@akinon/next/redux/reducers/header';
|
|
6
6
|
import clsx from 'clsx';
|
|
7
|
-
|
|
8
|
-
import { Icon } from '@theme/components';
|
|
7
|
+
import { Icon, Input } from '@theme/components';
|
|
9
8
|
import Results from './results';
|
|
10
9
|
import { ROUTES } from '@theme/routes';
|
|
11
10
|
import { useLocalization, useRouter } from '@akinon/next/hooks';
|
|
11
|
+
import PluginModule, { Component } from '@akinon/next/components/plugin-module';
|
|
12
12
|
|
|
13
13
|
export default function Search() {
|
|
14
14
|
const { t } = useLocalization();
|
|
@@ -41,6 +41,14 @@ export default function Search() {
|
|
|
41
41
|
};
|
|
42
42
|
}, [isSearchOpen, dispatch]);
|
|
43
43
|
|
|
44
|
+
const handleSearchTextChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
45
|
+
setSearchText(e.target.value);
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
const handleCloseSearch = () => {
|
|
49
|
+
dispatch(closeSearch());
|
|
50
|
+
};
|
|
51
|
+
|
|
44
52
|
return (
|
|
45
53
|
<>
|
|
46
54
|
<div
|
|
@@ -66,9 +74,9 @@ export default function Search() {
|
|
|
66
74
|
{t('common.search.results_for')}
|
|
67
75
|
</span>
|
|
68
76
|
<div className="flex items-center">
|
|
69
|
-
<
|
|
77
|
+
<Input
|
|
70
78
|
value={searchText}
|
|
71
|
-
onChange={
|
|
79
|
+
onChange={handleSearchTextChange}
|
|
72
80
|
onKeyDown={(e) => {
|
|
73
81
|
if (e.key === 'Enter' && searchText.trim() !== '') {
|
|
74
82
|
router.push(`${ROUTES.LIST}/?search_text=${searchText}`);
|
|
@@ -78,14 +86,18 @@ export default function Search() {
|
|
|
78
86
|
placeholder={t('common.search.placeholder')}
|
|
79
87
|
ref={inputRef}
|
|
80
88
|
/>
|
|
89
|
+
|
|
90
|
+
<PluginModule component={Component.HeaderImageSearchFeature} />
|
|
91
|
+
|
|
81
92
|
<Icon
|
|
82
93
|
name="close"
|
|
83
94
|
size={14}
|
|
84
|
-
onClick={
|
|
95
|
+
onClick={handleCloseSearch}
|
|
85
96
|
className="cursor-pointer"
|
|
86
97
|
/>
|
|
87
98
|
</div>
|
|
88
99
|
</div>
|
|
100
|
+
|
|
89
101
|
<Results searchText={searchText} />
|
|
90
102
|
</div>
|
|
91
103
|
</div>
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import clsx from 'clsx';
|
|
3
|
+
import { Button, Icon, Modal } from '@theme/components';
|
|
4
|
+
import { useLocalization } from '@akinon/next/hooks';
|
|
5
|
+
import PluginModule, { Component } from '@akinon/next/components/plugin-module';
|
|
6
|
+
import { validateVariantSelection } from '../../utils/variant-validation';
|
|
7
|
+
import { VariantType } from '@akinon/next/types';
|
|
8
|
+
|
|
9
|
+
interface Product {
|
|
10
|
+
pk: number;
|
|
11
|
+
name: string;
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
interface ProductActionsProps {
|
|
16
|
+
product: Product;
|
|
17
|
+
variants: VariantType[];
|
|
18
|
+
inStock: boolean;
|
|
19
|
+
isVariantLoading: boolean;
|
|
20
|
+
onAddToCart: () => void;
|
|
21
|
+
onAddToStockAlert: () => void;
|
|
22
|
+
onClearError: () => void;
|
|
23
|
+
isAddToCartLoading: boolean;
|
|
24
|
+
isAddToStockAlertLoading: boolean;
|
|
25
|
+
productError: React.ReactNode | null;
|
|
26
|
+
isModalOpen: boolean;
|
|
27
|
+
stockAlertResponseMessage: React.ReactNode | null;
|
|
28
|
+
onCloseModal: () => void;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export const ProductActions: React.FC<ProductActionsProps> = ({
|
|
32
|
+
product,
|
|
33
|
+
variants,
|
|
34
|
+
inStock,
|
|
35
|
+
isVariantLoading,
|
|
36
|
+
onAddToCart,
|
|
37
|
+
onAddToStockAlert,
|
|
38
|
+
onClearError,
|
|
39
|
+
isAddToCartLoading,
|
|
40
|
+
isAddToStockAlertLoading,
|
|
41
|
+
productError,
|
|
42
|
+
isModalOpen,
|
|
43
|
+
stockAlertResponseMessage,
|
|
44
|
+
onCloseModal
|
|
45
|
+
}) => {
|
|
46
|
+
const { t } = useLocalization();
|
|
47
|
+
|
|
48
|
+
const checkoutProviderProps = {
|
|
49
|
+
product,
|
|
50
|
+
clearBasket: true,
|
|
51
|
+
addBeforeClick: () => validateVariantSelection(variants).isValid,
|
|
52
|
+
openMiniBasket: false,
|
|
53
|
+
className: clsx([
|
|
54
|
+
'py-2.5',
|
|
55
|
+
'bg-black',
|
|
56
|
+
'relative',
|
|
57
|
+
'hover:bg-black',
|
|
58
|
+
'before:content-[""]',
|
|
59
|
+
'before:w-6',
|
|
60
|
+
'before:h-6',
|
|
61
|
+
'before:bg-white',
|
|
62
|
+
'before:absolute',
|
|
63
|
+
'before:rounded-r-[18px]',
|
|
64
|
+
'before:left-0',
|
|
65
|
+
'after:content-[""]',
|
|
66
|
+
'after:absolute',
|
|
67
|
+
'after:w-3',
|
|
68
|
+
'after:h-3',
|
|
69
|
+
'after:bg-[#d02c2f]',
|
|
70
|
+
'after:rounded-xl',
|
|
71
|
+
'after:left-1'
|
|
72
|
+
]),
|
|
73
|
+
onError: (error: any) => {
|
|
74
|
+
const formattedError = error?.data?.non_field_errors ||
|
|
75
|
+
Object.keys(error?.data || {}).map(
|
|
76
|
+
(key) => `${key}: ${error?.data[key].join(', ')}`
|
|
77
|
+
);
|
|
78
|
+
// This would need to be handled by parent component
|
|
79
|
+
console.error('Checkout error:', formattedError);
|
|
80
|
+
}
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
const handleMainActionClick = () => {
|
|
84
|
+
onClearError();
|
|
85
|
+
|
|
86
|
+
if (inStock) {
|
|
87
|
+
onAddToCart();
|
|
88
|
+
} else {
|
|
89
|
+
onAddToStockAlert();
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
return (
|
|
94
|
+
<>
|
|
95
|
+
{productError && (
|
|
96
|
+
<div className="mt-4 text-xs text-center text-error">
|
|
97
|
+
{productError}
|
|
98
|
+
</div>
|
|
99
|
+
)}
|
|
100
|
+
|
|
101
|
+
<Button
|
|
102
|
+
disabled={isAddToCartLoading || isAddToStockAlertLoading || isVariantLoading}
|
|
103
|
+
className={clsx(
|
|
104
|
+
'fixed bottom-0 right-0 w-1/2 h-14 z-[20] flex items-center justify-center fill-primary-foreground',
|
|
105
|
+
'hover:fill-primary sm:relative sm:w-full sm:mt-3 sm:font-semibold sm:h-12'
|
|
106
|
+
)}
|
|
107
|
+
onClick={handleMainActionClick}
|
|
108
|
+
data-testid="product-add-to-cart"
|
|
109
|
+
>
|
|
110
|
+
{isVariantLoading ? (
|
|
111
|
+
<Icon
|
|
112
|
+
name="spinner"
|
|
113
|
+
size={20}
|
|
114
|
+
className="animate-spin mr-4 fill-primary"
|
|
115
|
+
/>
|
|
116
|
+
) : inStock ? (
|
|
117
|
+
<span>{t('product.add_to_cart')}</span>
|
|
118
|
+
) : (
|
|
119
|
+
<>
|
|
120
|
+
<Icon name="bell" size={20} className="mr-4" />
|
|
121
|
+
<span>{t('product.add_stock_alert')}</span>
|
|
122
|
+
</>
|
|
123
|
+
)}
|
|
124
|
+
</Button>
|
|
125
|
+
|
|
126
|
+
<PluginModule
|
|
127
|
+
component={Component.AkifastCheckoutButton}
|
|
128
|
+
props={{
|
|
129
|
+
...checkoutProviderProps,
|
|
130
|
+
isPdp: true
|
|
131
|
+
}}
|
|
132
|
+
/>
|
|
133
|
+
|
|
134
|
+
<PluginModule
|
|
135
|
+
component={Component.OneClickCheckoutButtons}
|
|
136
|
+
props={checkoutProviderProps}
|
|
137
|
+
/>
|
|
138
|
+
|
|
139
|
+
<Modal
|
|
140
|
+
portalId="stock-alert-modal"
|
|
141
|
+
open={isModalOpen}
|
|
142
|
+
setOpen={onCloseModal}
|
|
143
|
+
showCloseButton={false}
|
|
144
|
+
className="w-5/6 md:max-w-md"
|
|
145
|
+
>
|
|
146
|
+
<div className="flex flex-col items-center justify-center gap-4 px-6 py-9">
|
|
147
|
+
<Icon name="bell" size={48} />
|
|
148
|
+
<h2 className="text-xl font-semibold">
|
|
149
|
+
{t('product.stock_alert.title')}
|
|
150
|
+
</h2>
|
|
151
|
+
<div className="max-w-40 text-xs text-center leading-4">
|
|
152
|
+
<p>{stockAlertResponseMessage}</p>
|
|
153
|
+
</div>
|
|
154
|
+
<Button
|
|
155
|
+
onClick={onCloseModal}
|
|
156
|
+
appearance="outlined"
|
|
157
|
+
className="font-semibold px-10 h-12"
|
|
158
|
+
>
|
|
159
|
+
{t('product.stock_alert.close_button')}
|
|
160
|
+
</Button>
|
|
161
|
+
</div>
|
|
162
|
+
</Modal>
|
|
163
|
+
</>
|
|
164
|
+
);
|
|
165
|
+
};
|