forked from crowetic/commerce
changes
This commit is contained in:
parent
eedfdc0a10
commit
a8814983a6
57
components/product/ProductCard/FUTURE_ProductCard.tsx
Normal file
57
components/product/ProductCard/FUTURE_ProductCard.tsx
Normal 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
25
framework/types.d.ts
vendored
Normal 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
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user