File size: 8,193 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
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;
// If adding new, longer search terms, ensure that the search input field is wide enough to accommodate it.
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();
// another temporary solution until phase 4 is merged
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;
// this is a temporary hack until we merge Phase 4 of the refactor
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;
|