53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { useContext, useEffect, useState } from '@wordpress/element';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import ProductList from '../product-list/product-list';
|
|
import { fetchDiscoverPageData, ProductGroup } from '../../utils/functions';
|
|
import ProductLoader from '../product-loader/product-loader';
|
|
import { MarketplaceContext } from '../../contexts/marketplace-context';
|
|
import './discover.scss';
|
|
|
|
export default function Discover(): JSX.Element | null {
|
|
const [ productGroups, setProductGroups ] = useState<
|
|
Array< ProductGroup >
|
|
>( [] );
|
|
const marketplaceContextValue = useContext( MarketplaceContext );
|
|
const { isLoading, setIsLoading } = marketplaceContextValue;
|
|
|
|
// Get the content for this screen
|
|
useEffect( () => {
|
|
setIsLoading( true );
|
|
|
|
fetchDiscoverPageData()
|
|
.then( ( products: Array< ProductGroup > ) => {
|
|
setProductGroups( products );
|
|
} )
|
|
.finally( () => {
|
|
setIsLoading( false );
|
|
} );
|
|
}, [] );
|
|
|
|
if ( isLoading ) {
|
|
return <ProductLoader />;
|
|
}
|
|
|
|
const groupsList = productGroups.flatMap( ( group ) => group );
|
|
return (
|
|
<div className="woocommerce-marketplace__discover">
|
|
{ groupsList.map( ( groups ) => (
|
|
<ProductList
|
|
key={ groups.id }
|
|
title={ groups.title }
|
|
products={ groups.items }
|
|
groupURL={ groups.url }
|
|
/>
|
|
) ) }
|
|
</div>
|
|
);
|
|
}
|