/** * 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 ; } const groupsList = productGroups.flatMap( ( group ) => group ); return (
{ groupsList.map( ( groups ) => ( ) ) }
); }