|
|
import { useI18n } from '@wordpress/react-i18n'; |
|
|
import clsx from 'clsx'; |
|
|
import { useTranslate } from 'i18n-calypso'; |
|
|
import { useRef, useState } from 'react'; |
|
|
import { useSelector } from 'react-redux'; |
|
|
import DocumentHead from 'calypso/components/data/document-head'; |
|
|
import QueryPlugins from 'calypso/components/data/query-plugins'; |
|
|
import QueryProductsList from 'calypso/components/data/query-products-list'; |
|
|
import QuerySitePurchases from 'calypso/components/data/query-site-purchases'; |
|
|
import { JetpackConnectionHealthBanner } from 'calypso/components/jetpack/connection-health'; |
|
|
import MainComponent from 'calypso/components/main'; |
|
|
import PageViewTracker from 'calypso/lib/analytics/page-view-tracker'; |
|
|
import useScrollAboveElement from 'calypso/lib/use-scroll-above-element'; |
|
|
import Categories from 'calypso/my-sites/plugins/categories'; |
|
|
import { useCategories } from 'calypso/my-sites/plugins/categories/use-categories'; |
|
|
import { MarketplaceFooter } from 'calypso/my-sites/plugins/education-footer'; |
|
|
import NoPermissionsError from 'calypso/my-sites/plugins/no-permissions-error'; |
|
|
import useIsVisible from 'calypso/my-sites/plugins/plugins-browser/use-is-visible'; |
|
|
import SearchBoxHeader from 'calypso/my-sites/plugins/search-box-header'; |
|
|
import { isUserLoggedIn } from 'calypso/state/current-user/selectors'; |
|
|
import { useIsJetpackConnectionProblem } from 'calypso/state/jetpack-connection-health/selectors/is-jetpack-connection-problem'; |
|
|
import { canCurrentUser } from 'calypso/state/selectors/can-current-user'; |
|
|
import getSelectedOrAllSitesJetpackCanManage from 'calypso/state/selectors/get-selected-or-all-sites-jetpack-can-manage'; |
|
|
import isAtomicSite from 'calypso/state/selectors/is-site-automated-transfer'; |
|
|
import isVipSite from 'calypso/state/selectors/is-vip-site'; |
|
|
import { getSitePlan, isJetpackSite, isRequestingSites } from 'calypso/state/sites/selectors'; |
|
|
import { |
|
|
getSelectedSiteId, |
|
|
getSelectedSite, |
|
|
getSelectedSiteSlug, |
|
|
} from 'calypso/state/ui/selectors'; |
|
|
import PluginsCategoryResultsPage from '../plugins-category-results-page'; |
|
|
import PluginsDiscoveryPage from '../plugins-discovery-page'; |
|
|
import PluginsNavigationHeader from '../plugins-navigation-header'; |
|
|
import PluginsSearchResultPage from '../plugins-search-results-page'; |
|
|
import SearchCategories from '../search-categories'; |
|
|
|
|
|
import './style.scss'; |
|
|
|
|
|
const MASTERBAR_HEIGHT = 32; |
|
|
|
|
|
|
|
|
const searchTerms = [ 'woocommerce', 'seo', 'file manager', 'jetpack', 'ecommerce', 'form' ]; |
|
|
|
|
|
const PageViewTrackerWrapper = ( { category, selectedSiteId, trackPageViews, isLoggedIn } ) => { |
|
|
const analyticsPageTitle = 'Plugin Browser' + category ? ` > ${ category }` : ''; |
|
|
let analyticsPath = category ? `/plugins/browse/${ category }` : '/plugins'; |
|
|
|
|
|
if ( selectedSiteId ) { |
|
|
analyticsPath += '/:site'; |
|
|
} |
|
|
|
|
|
if ( trackPageViews ) { |
|
|
return ( |
|
|
<PageViewTracker |
|
|
path={ analyticsPath } |
|
|
title={ analyticsPageTitle } |
|
|
properties={ { is_logged_in: isLoggedIn } } |
|
|
/> |
|
|
); |
|
|
} |
|
|
|
|
|
return null; |
|
|
}; |
|
|
|
|
|
const PluginsBrowser = ( { trackPageViews = true, category, search } ) => { |
|
|
const { |
|
|
isAboveElement, |
|
|
targetRef: searchHeaderRef, |
|
|
referenceRef: navigationHeaderRef, |
|
|
} = useScrollAboveElement(); |
|
|
const searchRef = useRef( null ); |
|
|
const categoriesRef = useRef(); |
|
|
|
|
|
const [ isFetchingPluginsBySearchTerm, setIsFetchingPluginsBySearchTerm ] = useState( false ); |
|
|
|
|
|
const selectedSite = useSelector( getSelectedSite ); |
|
|
const sitePlan = useSelector( ( state ) => getSitePlan( state, selectedSite?.ID ) ); |
|
|
|
|
|
const loggedInSearchBoxRef = useRef( null ); |
|
|
const isLoggedInSearchBoxSticky = |
|
|
useIsVisible( loggedInSearchBoxRef, { |
|
|
rootMargin: selectedSite ? `${ -1 * MASTERBAR_HEIGHT }px 0px 0px 0px` : '0px', |
|
|
} ) === false; |
|
|
|
|
|
const jetpackNonAtomic = useSelector( |
|
|
( state ) => |
|
|
isJetpackSite( state, selectedSite?.ID ) && ! isAtomicSite( state, selectedSite?.ID ) |
|
|
); |
|
|
|
|
|
const isVip = useSelector( ( state ) => isVipSite( state, selectedSite?.ID ) ); |
|
|
const isJetpack = useSelector( ( state ) => isJetpackSite( state, selectedSite?.ID ) ); |
|
|
const isRequestingSitesData = useSelector( isRequestingSites ); |
|
|
const noPermissionsError = useSelector( |
|
|
( state ) => |
|
|
!! selectedSite?.ID && ! canCurrentUser( state, selectedSite?.ID, 'manage_options' ) |
|
|
); |
|
|
const siteSlug = useSelector( getSelectedSiteSlug ); |
|
|
const siteId = useSelector( getSelectedSiteId ); |
|
|
const isPossibleJetpackConnectionProblem = useIsJetpackConnectionProblem( siteId ); |
|
|
const sites = useSelector( getSelectedOrAllSitesJetpackCanManage ); |
|
|
const isLoggedIn = useSelector( isUserLoggedIn ); |
|
|
|
|
|
const { __ } = useI18n(); |
|
|
const translate = useTranslate(); |
|
|
const categories = useCategories(); |
|
|
const fallbackCategoryName = category |
|
|
? category.charAt( 0 ).toUpperCase() + category.slice( 1 ) |
|
|
: __( 'Plugins' ); |
|
|
const categoryName = categories[ category ]?.menu || fallbackCategoryName; |
|
|
|
|
|
|
|
|
const renderList = () => { |
|
|
if ( search ) { |
|
|
return ( |
|
|
<PluginsSearchResultPage |
|
|
search={ search } |
|
|
setIsFetchingPluginsBySearchTerm={ setIsFetchingPluginsBySearchTerm } |
|
|
siteSlug={ siteSlug } |
|
|
siteId={ siteId } |
|
|
sites={ sites } |
|
|
/> |
|
|
); |
|
|
} |
|
|
|
|
|
if ( category ) { |
|
|
return ( |
|
|
<PluginsCategoryResultsPage category={ category } sites={ sites } siteSlug={ siteSlug } /> |
|
|
); |
|
|
} |
|
|
|
|
|
return ( |
|
|
<PluginsDiscoveryPage |
|
|
siteSlug={ siteSlug } |
|
|
jetpackNonAtomic={ jetpackNonAtomic } |
|
|
selectedSite={ selectedSite } |
|
|
sitePlan={ sitePlan } |
|
|
isVip={ isVip } |
|
|
sites={ sites } |
|
|
/> |
|
|
); |
|
|
}; |
|
|
|
|
|
if ( ! isRequestingSitesData && noPermissionsError ) { |
|
|
return <NoPermissionsError title={ __( 'Plugins' ) } />; |
|
|
} |
|
|
|
|
|
return ( |
|
|
<MainComponent |
|
|
className={ clsx( 'plugins-browser', { |
|
|
'plugins-browser--site-view': !! selectedSite, |
|
|
} ) } |
|
|
wideLayout |
|
|
isLoggedOut={ ! isLoggedIn } |
|
|
> |
|
|
<QueryProductsList persist /> |
|
|
<QueryPlugins siteId={ selectedSite?.ID } /> |
|
|
<QuerySitePurchases siteId={ selectedSite?.ID } /> |
|
|
<PageViewTrackerWrapper |
|
|
category={ category } |
|
|
selectedSiteId={ selectedSite?.ID } |
|
|
trackPageViews={ trackPageViews } |
|
|
isLoggedIn={ isLoggedIn } |
|
|
/> |
|
|
<DocumentHead |
|
|
title={ |
|
|
category && ! search |
|
|
? translate( '%(categoryName)s Plugins', { args: { categoryName } } ) |
|
|
: translate( 'Plugins' ) |
|
|
} |
|
|
/> |
|
|
|
|
|
<PluginsNavigationHeader |
|
|
navigationHeaderRef={ navigationHeaderRef } |
|
|
categoryName={ categoryName } |
|
|
category={ category } |
|
|
search={ search } |
|
|
/> |
|
|
<div className="plugins-browser__content-wrapper"> |
|
|
{ selectedSite && isJetpack && isPossibleJetpackConnectionProblem && ( |
|
|
<JetpackConnectionHealthBanner siteId={ siteId } /> |
|
|
) } |
|
|
{ isLoggedIn ? ( |
|
|
<> |
|
|
<div ref={ loggedInSearchBoxRef } /> |
|
|
<SearchCategories |
|
|
category={ category } |
|
|
isSearching={ isFetchingPluginsBySearchTerm } |
|
|
isSticky={ isLoggedInSearchBoxSticky } |
|
|
searchRef={ searchRef } |
|
|
searchTerm={ search } |
|
|
searchTerms={ searchTerms } |
|
|
/> |
|
|
</> |
|
|
) : ( |
|
|
<> |
|
|
<SearchBoxHeader |
|
|
searchRef={ searchRef } |
|
|
categoriesRef={ categoriesRef } |
|
|
stickySearchBoxRef={ searchHeaderRef } |
|
|
isSticky={ isAboveElement } |
|
|
searchTerm={ search } |
|
|
isSearching={ isFetchingPluginsBySearchTerm } |
|
|
title={ __( 'Flex your site’s features with plugins' ) } |
|
|
subtitle={ |
|
|
! isLoggedIn && |
|
|
__( |
|
|
'Add new functionality and integrations to your site with thousands of plugins.' |
|
|
) |
|
|
} |
|
|
searchTerms={ searchTerms } |
|
|
renderTitleInH1={ ! category } |
|
|
/> |
|
|
|
|
|
<div ref={ categoriesRef }> |
|
|
<Categories selected={ category } noSelection={ search ? true : false } /> |
|
|
</div> |
|
|
</> |
|
|
) } |
|
|
<div className="plugins-browser__main-container">{ renderList() }</div> |
|
|
{ ! category && ! search && ( |
|
|
<div className="plugins-browser__marketplace-footer"> |
|
|
<MarketplaceFooter /> |
|
|
</div> |
|
|
) } |
|
|
</div> |
|
|
</MainComponent> |
|
|
); |
|
|
}; |
|
|
|
|
|
export default PluginsBrowser; |
|
|
|