163 lines
6.9 KiB
TypeScript
163 lines
6.9 KiB
TypeScript
import React from "react";
|
||
import { useFavorites } from "@/contexts/FavoritesContext";
|
||
|
||
interface CatalogProductCardProps {
|
||
image: string;
|
||
discount: string;
|
||
price: string;
|
||
oldPrice: string;
|
||
title: string;
|
||
brand: string;
|
||
articleNumber?: string;
|
||
brandName?: string;
|
||
artId?: string;
|
||
productId?: string;
|
||
offerKey?: string;
|
||
currency?: string;
|
||
priceElement?: React.ReactNode;
|
||
onAddToCart?: (e: React.MouseEvent) => void | Promise<void>;
|
||
isInCart?: boolean;
|
||
}
|
||
|
||
const CatalogProductCard: React.FC<CatalogProductCardProps> = ({
|
||
image,
|
||
discount,
|
||
price,
|
||
oldPrice,
|
||
title,
|
||
brand,
|
||
articleNumber,
|
||
brandName,
|
||
artId,
|
||
productId,
|
||
offerKey,
|
||
currency = 'RUB',
|
||
priceElement,
|
||
onAddToCart,
|
||
isInCart = false,
|
||
}) => {
|
||
const { addToFavorites, removeFromFavorites, isFavorite, favorites } = useFavorites();
|
||
|
||
const displayImage = image || 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEwIiBoZWlnaHQ9IjE5MCIgdmlld0JveD0iMCAwIDIxMCAxOTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIyMTAiIGhlaWdodD0iMTkwIiBmaWxsPSIjRjNGNEY2Ii8+CjxwYXRoIGQ9Ik04NSA5NUw5NSA4NUwxMjUgMTE1TDE0MCA5NUwxNjUgMTIwSDE2NVY5MEg0NVY5MEw4NSA5NVoiIGZpbGw9IiNEMUQ1REIiLz4KPGNpcmNsZSBjeD0iNzUiIGN5PSI3NSIgcj0iMTAiIGZpbGw9IiNEMUQ1REIiLz4KPHRleHQgeD0iMTA1IiB5PSIxNTAiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSIxMiIgZmlsbD0iIzlDQTNBRiIgdGV4dC1hbmNob3I9Im1pZGRsZSI+Tm8gaW1hZ2U8L3RleHQ+Cjwvc3ZnPgo=';
|
||
|
||
const cardUrl = articleNumber && brandName
|
||
? `/card?article=${encodeURIComponent(articleNumber)}&brand=${encodeURIComponent(brandName)}${artId ? `&artId=${artId}` : ''}`
|
||
: '/card';
|
||
|
||
const isItemFavorite = isFavorite(productId, offerKey, articleNumber, brandName || brand);
|
||
|
||
const handleFavoriteClick = (e: React.MouseEvent) => {
|
||
e.preventDefault();
|
||
e.stopPropagation();
|
||
const numericPrice = parseFloat(price.replace(/[^\d.,]/g, '').replace(',', '.')) || 0;
|
||
if (isItemFavorite) {
|
||
const favoriteItem = favorites.find((fav: any) => {
|
||
if (productId && fav.productId === productId) return true;
|
||
if (offerKey && fav.offerKey === offerKey) return true;
|
||
if (fav.article === articleNumber && fav.brand === (brandName || brand)) return true;
|
||
return false;
|
||
});
|
||
if (favoriteItem) {
|
||
removeFromFavorites(favoriteItem.id);
|
||
}
|
||
} else {
|
||
addToFavorites({
|
||
productId,
|
||
offerKey,
|
||
name: title,
|
||
brand: brandName || brand,
|
||
article: articleNumber || '',
|
||
price: numericPrice,
|
||
currency,
|
||
image
|
||
});
|
||
}
|
||
};
|
||
|
||
const handleBuyClick = (e: React.MouseEvent) => {
|
||
e.preventDefault();
|
||
e.stopPropagation();
|
||
if (onAddToCart) {
|
||
onAddToCart(e);
|
||
} else {
|
||
window.location.href = cardUrl;
|
||
}
|
||
};
|
||
|
||
return (
|
||
<div className="w-layout-vflex flex-block-15-copy" data-article-card="visible" itemScope itemType="https://schema.org/Product">
|
||
<div
|
||
className={`favcardcat${isItemFavorite ? ' favorite-active' : ''}`}
|
||
onClick={handleFavoriteClick}
|
||
style={{ cursor: 'pointer', color: isItemFavorite ? '#ff4444' : '#ccc' }}
|
||
>
|
||
<div className="icon-setting w-embed">
|
||
<svg width="currentwidth" height="currentheight" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||
<path d="M13.5996 3.5C15.8107 3.5 17.5 5.1376 17.5 7.19629C17.5 8.46211 16.9057 9.65758 15.7451 11.0117C14.8712 12.0314 13.7092 13.1034 12.3096 14.3311L10.833 15.6143L10.832 15.6152L10 16.3369L9.16797 15.6152L9.16699 15.6143L7.69043 14.3311C6.29084 13.1034 5.12883 12.0314 4.25488 11.0117C3.09428 9.65758 2.50003 8.46211 2.5 7.19629C2.5 5.1376 4.18931 3.5 6.40039 3.5C7.6497 3.50012 8.85029 4.05779 9.62793 4.92188L10 5.33398L10.3721 4.92188C11.1497 4.05779 12.3503 3.50012 13.5996 3.5Z" fill="currentColor" ></path>
|
||
</svg>
|
||
</div>
|
||
</div>
|
||
<div className="div-block-4">
|
||
<img
|
||
src={displayImage}
|
||
loading="lazy"
|
||
width="Auto"
|
||
height="Auto"
|
||
alt={title}
|
||
className="image-5"
|
||
itemProp="image"
|
||
/>
|
||
<div
|
||
className="text-block-7"
|
||
style={{
|
||
background: discount ? undefined : 'transparent',
|
||
color: discount ? undefined : 'transparent',
|
||
border: discount ? undefined : 'none',
|
||
}}
|
||
>
|
||
{discount || ''}
|
||
</div>
|
||
</div>
|
||
<div className="div-block-3">
|
||
<div className="w-layout-hflex flex-block-16">
|
||
{priceElement ? (
|
||
<div className="text-block-8">{priceElement}</div>
|
||
) : (
|
||
<div className="text-block-8" itemProp="offers" itemScope itemType="https://schema.org/Offer">
|
||
<span itemProp="price">{price}</span>
|
||
<meta itemProp="priceCurrency" content={currency} />
|
||
</div>
|
||
)}
|
||
<div className="text-block-9">{oldPrice}</div>
|
||
</div>
|
||
<div className="w-layout-hflex flex-block-122">
|
||
<div className="w-layout-vflex">
|
||
<div className="text-block-10" itemProp="name">{title}</div>
|
||
<div className="text-block-11" itemProp="brand" itemScope itemType="https://schema.org/Brand">
|
||
<span itemProp="name">{brand}</span>
|
||
</div>
|
||
</div>
|
||
<a
|
||
href="#"
|
||
className="button-icon w-inline-block"
|
||
onClick={handleBuyClick}
|
||
style={{ cursor: isInCart ? 'default' : 'pointer', opacity: isInCart ? 0.5 : 1, filter: isInCart ? 'grayscale(1)' : 'none' }}
|
||
aria-label={isInCart ? 'В корзине' : 'Купить'}
|
||
tabIndex={0}
|
||
>
|
||
<div className="div-block-26">
|
||
<div className="icon-setting w-embed">
|
||
<svg width="currentWidht" height="currentHeight" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||
<path d="M10.1998 22.2C8.8798 22.2 7.81184 23.28 7.81184 24.6C7.81184 25.92 8.8798 27 10.1998 27C11.5197 27 12.5997 25.92 12.5997 24.6C12.5997 23.28 11.5197 22.2 10.1998 22.2ZM3 3V5.4H5.39992L9.71977 14.508L8.09982 17.448C7.90783 17.784 7.79984 18.18 7.79984 18.6C7.79984 19.92 8.8798 21 10.1998 21H24.5993V18.6H10.7037C10.5357 18.6 10.4037 18.468 10.4037 18.3L10.4397 18.156L11.5197 16.2H20.4594C21.3594 16.2 22.1513 15.708 22.5593 14.964L26.8552 7.176C26.9542 6.99286 27.004 6.78718 26.9997 6.57904C26.9955 6.37089 26.9373 6.16741 26.8309 5.98847C26.7245 5.80952 26.5736 5.66124 26.3927 5.55809C26.2119 5.45495 26.0074 5.40048 25.7992 5.4H8.05183L6.92387 3H3ZM22.1993 22.2C20.8794 22.2 19.8114 23.28 19.8114 24.6C19.8114 25.92 20.8794 27 22.1993 27C23.5193 27 24.5993 25.92 24.5993 24.6C24.5993 23.28 23.5193 22.2 22.1993 22.2Z" fill="currentColor"></path>
|
||
</svg>
|
||
</div>
|
||
</div>
|
||
</a>
|
||
</div>
|
||
<meta itemProp="sku" content={articleNumber || ''} />
|
||
</div>
|
||
</div>
|
||
);
|
||
};
|
||
|
||
export default CatalogProductCard;
|