/** * External dependencies */ import { useUser } from '@woocommerce/data'; /** * Internal dependencies */ import { getAdminSetting } from '~/utils/admin-settings'; import { IntroductionBanner } from './IntroductionBanner'; import { Campaigns } from './Campaigns'; import { Channels } from './Channels'; import { InstalledExtensions } from './InstalledExtensions'; import { DiscoverTools } from './DiscoverTools'; import { LearnMarketing } from './LearnMarketing'; import '~/marketing/data'; import { useRegisteredChannels, useRecommendedChannels, } from '~/marketing/hooks'; import './MarketingOverviewMultichannel.scss'; import { CenteredSpinner } from '../components'; export const MarketingOverviewMultichannel: React.FC = () => { const { loading: loadingRegistered, data: dataRegistered } = useRegisteredChannels(); const { loading: loadingRecommended, data: dataRecommended } = useRecommendedChannels(); const { currentUserCan } = useUser(); const shouldShowExtensions = getAdminSetting( 'allowMarketplaceSuggestions', false ) && currentUserCan( 'install_plugins' ); if ( loadingRegistered || loadingRecommended ) { return ; } return (
{ /* TODO: check wp_options and conditionally display introduction banner. */ } { dataRegistered.length >= 1 && } { ( dataRegistered.length >= 1 || dataRecommended.length >= 1 ) && ( ) } { shouldShowExtensions && }
); };