forked from crowetic/commerce
71 lines
2.2 KiB
TypeScript
71 lines
2.2 KiB
TypeScript
import { useEffect } from 'react'
|
|
import { useRouter } from 'next/router'
|
|
import type { GetStaticPropsContext } from 'next'
|
|
|
|
import { Heart } from '@components/icons'
|
|
import { Layout } from '@components/common'
|
|
import { Text, Container } from '@components/ui'
|
|
import { defaultPageProps } from '@lib/defaults'
|
|
import { getConfig } from '@framework/api'
|
|
import { useCustomer } from '@framework/customer'
|
|
import { WishlistCard } from '@components/wishlist'
|
|
import useWishlist from '@framework/wishlist/use-wishlist'
|
|
import getAllPages from '@framework/common/get-all-pages'
|
|
|
|
export async function getStaticProps({
|
|
preview,
|
|
locale,
|
|
}: GetStaticPropsContext) {
|
|
// Disabling page if Feature is not available
|
|
if (!process.env.COMMERCE_WISHLIST_ENABLED) {
|
|
return {
|
|
notFound: true,
|
|
}
|
|
}
|
|
|
|
const config = getConfig({ locale })
|
|
const { pages } = await getAllPages({ config, preview })
|
|
return {
|
|
props: {
|
|
pages,
|
|
...defaultPageProps,
|
|
},
|
|
}
|
|
}
|
|
|
|
export default function Wishlist() {
|
|
const { data: customer } = useCustomer()
|
|
const { data, isLoading, isEmpty } = useWishlist()
|
|
const router = useRouter()
|
|
|
|
return (
|
|
<Container>
|
|
<div className="mt-3 mb-20">
|
|
<Text variant="pageHeading">My Wishlist</Text>
|
|
<div className="group flex flex-col">
|
|
{isLoading || isEmpty ? (
|
|
<div className="flex-1 px-12 py-24 flex flex-col justify-center items-center ">
|
|
<span className="border border-dashed border-secondary 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} product={item as any} />
|
|
))
|
|
)}
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
)
|
|
}
|
|
|
|
Wishlist.Layout = Layout
|