4
0
forked from crowetic/commerce
This commit is contained in:
Belen Curcio 2021-01-06 17:01:32 -03:00
parent eedfdc0a10
commit a8814983a6
2 changed files with 82 additions and 0 deletions

View File

@ -0,0 +1,57 @@
import { FC } from 'react'
import cn from 'classnames'
import Image from 'next/image'
import s from './ProductCard.module.css'
// import WishlistButton from '@components/wishlist/WishlistButton'
interface Props {
className?: string
product: Product
variant?: 'slim' | 'simple'
}
const ProductCard: FC<Props> = ({ className, product, variant }) => {
const defaultImageProps = {
layout: 'responsive',
}
return (
<a className={cn(s.root, { [s.simple]: variant === 'simple' }, className)}>
{variant === 'slim' ? (
<div className="relative overflow-hidden box-border">
<div className="absolute inset-0 flex items-center justify-end mr-8 z-20">
<span className="bg-black text-white inline-block p-3 font-bold text-xl break-words">
{product.name}
</span>
{/* Image */}
</div>
</div>
) : (
<>
<div className={s.squareBg} />
<div className="flex flex-row justify-between box-border w-full z-20 absolute">
<div className="absolute top-0 left-0 pr-16 max-w-full">
<h3 className={s.productTitle}>
<span>{product.name}</span>
</h3>
<span className={s.productPrice}>{product.price}</span>
</div>
</div>
<div className={s.imageContainer}>
{/* Image */}
<Image
quality="85"
src={product.images[0].src}
alt={product.name}
className={s.productImage}
{...defaultImageProps}
/>
</div>
</>
)}
</a>
)
}
export default ProductCard

25
framework/types.d.ts vendored Normal file
View File

@ -0,0 +1,25 @@
interface Product {
id: string | number
name: string
description: string
images: Images[]
slug: string
price: string
variantId: string
}
interface Images {
src: string
alt?: string
}
interface NextImage {
src: string
width: number | string
height: number | string
layout?: 'fixed' | 'intrinsic' | 'responsive' | undefined
priority?: boolean
loading?: 'eager' | 'lazy'
sizes?: string
alt?: string
}