|
|
import { Card } from '@automattic/components'; |
|
|
import { times } from 'lodash'; |
|
|
import PropTypes from 'prop-types'; |
|
|
import { useSelector } from 'react-redux'; |
|
|
import AsyncLoad from 'calypso/components/async-load'; |
|
|
import Spotlight from 'calypso/components/spotlight'; |
|
|
import { getMessagePathForJITM } from 'calypso/lib/route'; |
|
|
import PluginBrowserItem from 'calypso/my-sites/plugins/plugins-browser-item'; |
|
|
import { PluginsBrowserElementVariant } from 'calypso/my-sites/plugins/plugins-browser-item/types'; |
|
|
import PluginsResultsHeader from 'calypso/my-sites/plugins/plugins-results-header'; |
|
|
import getCurrentRoute from 'calypso/state/selectors/get-current-route'; |
|
|
import { PluginsBrowserListVariant } from './types'; |
|
|
import './style.scss'; |
|
|
|
|
|
const DEFAULT_PLACEHOLDER_NUMBER = 6; |
|
|
|
|
|
const PluginsBrowserList = ( { |
|
|
plugins, |
|
|
variant = PluginsBrowserListVariant.Fixed, |
|
|
title, |
|
|
subtitle, |
|
|
resultCount, |
|
|
extended, |
|
|
showPlaceholders, |
|
|
site, |
|
|
currentSites, |
|
|
listName, |
|
|
listType, |
|
|
browseAllLink, |
|
|
size, |
|
|
search, |
|
|
noHeader = false, |
|
|
} ) => { |
|
|
const extendedVariant = extended |
|
|
? PluginsBrowserElementVariant.Extended |
|
|
: PluginsBrowserElementVariant.Compact; |
|
|
|
|
|
const renderPluginsViewList = () => { |
|
|
const pluginsViewsList = plugins.map( ( plugin, n ) => { |
|
|
|
|
|
if ( ! plugin?.slug ) { |
|
|
return null; |
|
|
} |
|
|
return ( |
|
|
<PluginBrowserItem |
|
|
site={ site } |
|
|
key={ plugin.slug + n } |
|
|
gridPosition={ n + 1 } |
|
|
plugin={ plugin } |
|
|
currentSites={ currentSites } |
|
|
listName={ listName } |
|
|
listType={ listType } |
|
|
variant={ extendedVariant } |
|
|
search={ search } |
|
|
/> |
|
|
); |
|
|
} ); |
|
|
|
|
|
if ( size ) { |
|
|
return pluginsViewsList.slice( 0, size ); |
|
|
} |
|
|
|
|
|
return pluginsViewsList; |
|
|
}; |
|
|
|
|
|
const renderPlaceholdersViews = () => { |
|
|
return times( size || DEFAULT_PLACEHOLDER_NUMBER, ( i ) => ( |
|
|
<PluginBrowserItem |
|
|
isPlaceholder |
|
|
key={ 'placeholder-plugin-' + i } |
|
|
variant={ extendedVariant } |
|
|
/> |
|
|
) ); |
|
|
}; |
|
|
|
|
|
const renderViews = () => { |
|
|
if ( ! plugins.length ) { |
|
|
return renderPlaceholdersViews(); |
|
|
} |
|
|
|
|
|
switch ( variant ) { |
|
|
case PluginsBrowserListVariant.InfiniteScroll: |
|
|
if ( showPlaceholders ) { |
|
|
return renderPluginsViewList().concat( renderPlaceholdersViews() ); |
|
|
} |
|
|
return renderPluginsViewList(); |
|
|
case PluginsBrowserListVariant.Paginated: |
|
|
if ( showPlaceholders ) { |
|
|
return renderPlaceholdersViews(); |
|
|
} |
|
|
return renderPluginsViewList(); |
|
|
case PluginsBrowserListVariant.Fixed: |
|
|
default: |
|
|
return renderPluginsViewList(); |
|
|
} |
|
|
}; |
|
|
|
|
|
const SpotlightPlaceholder = ( |
|
|
<Spotlight |
|
|
isPlaceholder |
|
|
taglineText="Calypso placeholder" |
|
|
illustrationSrc="https://wordpress.com/wp-content/lib/marketplace-images/sensei-pro.svg" |
|
|
onClick={ () => {} } |
|
|
titleText="This is the default placeholder rendered in Calypso" |
|
|
ctaText="Click me" |
|
|
/> |
|
|
); |
|
|
|
|
|
|
|
|
const currentRoute = useSelector( getCurrentRoute ); |
|
|
const sectionJitmPath = getMessagePathForJITM( currentRoute ); |
|
|
|
|
|
return ( |
|
|
<div className="plugins-browser-list"> |
|
|
{ ! noHeader && ( title || subtitle || resultCount || browseAllLink ) && ( |
|
|
<PluginsResultsHeader |
|
|
title={ title } |
|
|
subtitle={ subtitle } |
|
|
resultCount={ resultCount } |
|
|
browseAllLink={ browseAllLink } |
|
|
listName={ listName } |
|
|
isRootPage={ listType !== 'browse' } |
|
|
/> |
|
|
) } |
|
|
{ listName === 'paid' && ( |
|
|
<AsyncLoad |
|
|
require="calypso/blocks/jitm" |
|
|
template="spotlight" |
|
|
placeholder={ null } |
|
|
messagePath="calypso:plugins:spotlight" |
|
|
/> |
|
|
) } |
|
|
{ listType === 'search' && ( |
|
|
<AsyncLoad |
|
|
require="calypso/blocks/jitm" |
|
|
template="spotlight" |
|
|
jitmPlaceholder={ SpotlightPlaceholder } |
|
|
messagePath="calypso:plugins:search" |
|
|
searchQuery={ search } |
|
|
/> |
|
|
) } |
|
|
{ listType === 'browse' && ( |
|
|
<AsyncLoad |
|
|
require="calypso/blocks/jitm" |
|
|
template="spotlight" |
|
|
jitmPlaceholder={ SpotlightPlaceholder } |
|
|
messagePath={ `calypso:${ sectionJitmPath }:spotlight` } |
|
|
/> |
|
|
) } |
|
|
<Card tagName="ul" className="plugins-browser-list__elements"> |
|
|
{ renderViews() } |
|
|
</Card> |
|
|
</div> |
|
|
); |
|
|
}; |
|
|
|
|
|
PluginsBrowserList.propTypes = { |
|
|
plugins: PropTypes.array.isRequired, |
|
|
variant: PropTypes.oneOf( Object.values( PluginsBrowserListVariant ) ).isRequired, |
|
|
extended: PropTypes.bool, |
|
|
}; |
|
|
|
|
|
export default PluginsBrowserList; |
|
|
|