forked from crowetic/commerce
54 lines
1.8 KiB
TypeScript
54 lines
1.8 KiB
TypeScript
import type { GetStaticPropsContext } from 'next'
|
|
import { getConfig } from '@bigcommerce/storefront-data-hooks/api'
|
|
import getAllPages from '@bigcommerce/storefront-data-hooks/api/operations/get-all-pages'
|
|
import useWishlist from '@bigcommerce/storefront-data-hooks/wishlist/use-wishlist'
|
|
import { Layout } from '@components/core'
|
|
import { Heart } from '@components/icons'
|
|
import { Container, Text } from '@components/ui'
|
|
import { WishlistCard } from '@components/wishlist'
|
|
|
|
export async function getStaticProps({
|
|
preview,
|
|
locale,
|
|
}: GetStaticPropsContext) {
|
|
const config = getConfig({ locale })
|
|
const { pages } = await getAllPages({ config, preview })
|
|
return {
|
|
props: { pages },
|
|
}
|
|
}
|
|
|
|
export default function Wishlist() {
|
|
const { data, isEmpty } = useWishlist({ includeProducts: true })
|
|
|
|
return (
|
|
<Container>
|
|
<div className="mt-3 mb-20">
|
|
<Text variant="pageHeading">My Wishlist</Text>
|
|
<div className="group flex flex-col">
|
|
{isEmpty ? (
|
|
<div className="flex-1 px-12 py-24 flex flex-col justify-center items-center ">
|
|
<span className="border border-dashed border-secondary rounded-full flex items-center justify-center w-16 h-16 bg-primary p-12 rounded-lg text-primary">
|
|
<Heart className="absolute" />
|
|
</span>
|
|
<h2 className="pt-6 text-2xl font-bold tracking-wide text-center">
|
|
Your wishlist is empty
|
|
</h2>
|
|
<p className="text-accents-6 px-10 text-center pt-2">
|
|
Biscuit oat cake wafer icing ice cream tiramisu pudding cupcake.
|
|
</p>
|
|
</div>
|
|
) : (
|
|
data &&
|
|
data.items?.map((item) => (
|
|
<WishlistCard key={item.id} item={item} />
|
|
))
|
|
)}
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
)
|
|
}
|
|
|
|
Wishlist.Layout = Layout
|