import { FC, useState } from 'react' import cn from 'classnames' import Link from 'next/link' import Image from 'next/image' import s from './WishlistCard.module.css' import { Trash } from '@components/icons' import { Button, Text } from '@components/ui' import { useUI } from '@components/ui/context' import type { Product } from '@commerce/types' import usePrice from '@framework/product/use-price' import useAddItem from '@framework/cart/use-add-item' import useRemoveItem from '@framework/wishlist/use-remove-item' interface Props { product: Product } const WishlistCard: FC = ({ product }) => { const { price } = usePrice({ amount: product.prices?.price?.value, baseAmount: product.prices?.retailPrice?.value, currencyCode: product.prices?.price?.currencyCode!, }) // @ts-ignore Wishlist is not always enabled const removeItem = useRemoveItem({ wishlist: { includeProducts: true } }) const [loading, setLoading] = useState(false) const [removing, setRemoving] = useState(false) const addItem = useAddItem() const { openSidebar } = useUI() const handleRemove = async () => { setRemoving(true) try { // If this action succeeds then there's no need to do `setRemoving(true)` // because the component will be removed from the view await removeItem({ id: product.id! }) } catch (error) { setRemoving(false) } } const addToCart = async () => { setLoading(true) try { await addItem({ productId: String(product.id), variantId: String(product.variants[0].id), }) openSidebar() setLoading(false) } catch (err) { setLoading(false) } } return (
{product.images[0].alt

{product.name}

{price}
) } export default WishlistCard