import { useMemo } from 'react' import { GetStaticPropsContext, InferGetStaticPropsType } from 'next' import getAllProducts from '@lib/bigcommerce/api/operations/get-all-products' import getSiteInfo from '@lib/bigcommerce/api/operations/get-site-info' import getAllPages from '@lib/bigcommerce/api/operations/get-all-pages' import rangeMap from '@lib/range-map' import { Layout } from '@components/core' import { Grid, Marquee, Hero } from '@components/ui' import { ProductCard } from '@components/product' export async function getStaticProps({ preview }: GetStaticPropsContext) { const { products: featuredProducts } = await getAllProducts({ variables: { field: 'featuredProducts', first: 6 }, }) const { products: bestSellingProducts } = await getAllProducts({ variables: { field: 'bestSellingProducts', first: 6 }, }) const { products: newestProducts } = await getAllProducts({ variables: { field: 'newestProducts', first: 12 }, }) const { categories, brands } = await getSiteInfo() const { pages } = await getAllPages() return { props: { featuredProducts, bestSellingProducts, newestProducts, categories, brands, pages, }, revalidate: 10, } } const nonNullable = (v: any) => v export default function Home({ featuredProducts, bestSellingProducts, newestProducts, categories, brands, }: InferGetStaticPropsType<typeof getStaticProps>) { const { featured, bestSelling } = useMemo(() => { // Create a copy of products that we can mutate const products = [...newestProducts] // If the lists of featured and best selling products don't have enough // products, then fill them with products from the products list, this // is useful for new commerce sites that don't have a lot of products return { featured: rangeMap( 6, (i) => featuredProducts[i] ?? products.shift() ).filter(nonNullable), bestSelling: rangeMap( 6, (i) => bestSellingProducts[i] ?? products.shift() ).filter(nonNullable), } // Props from getStaticProps won't change }, []) return ( <div className="mt-3"> <Grid> {featured.slice(0, 3).map(({ node }) => ( <ProductCard key={node.path} product={node} /> ))} </Grid> <Marquee variant="secondary"> {bestSelling.slice(0, 3).map(({ node }) => ( <ProductCard key={node.path} product={node} variant="slim" /> ))} </Marquee> <Hero headline="Release Details: The Yeezy BOOST 350 V2 ‘Natural'" description=" The Yeezy BOOST 350 V2 lineup continues to grow. We recently had the ‘Carbon’ iteration, and now release details have been locked in for this ‘Natural’ joint. Revealed by Yeezy Mafia earlier this year, the shoe was originally called ‘Abez’, which translated to ‘Tin’ in Hebrew. It’s now undergone a name change, and will be referred to as ‘Natural’." /> <Grid layout="B"> {featured.slice(3, 6).map(({ node }) => ( <ProductCard key={node.path} product={node} /> ))} </Grid> <Marquee> {bestSelling.slice(3, 6).map(({ node }) => ( <ProductCard key={node.path} product={node} variant="slim" /> ))} </Marquee> <div className="py-12 flex flex-row w-full px-12"> <div className="pr-3 w-48 relative"> <div className="sticky top-2"> <ul className="mb-10"> <li className="py-1 text-base font-bold tracking-wide"> All Categories </li> {categories.map((cat) => ( <li key={cat.path} className="py-1 text-accents-8"> <a href="#">{cat.name}</a> </li> ))} </ul> <ul className=""> <li className="py-1 text-base font-bold tracking-wide"> All Designers </li> {brands.flatMap(({ node }) => ( <li key={node.path} className="py-1 text-accents-8"> <a href="#">{node.name}</a> </li> ))} </ul> </div> </div> <div className="flex-1"> <Grid layout="normal"> {newestProducts.map(({ node }) => ( <ProductCard key={node.path} product={node} variant="simple" /> ))} </Grid> </div> </div> </div> ) } Home.Layout = Layout