| | import { recordTracksEvent } from '@automattic/calypso-analytics'; |
| | import config from '@automattic/calypso-config'; |
| | import { FEATURE_INSTALL_THEMES } from '@automattic/calypso-products'; |
| | import page from '@automattic/calypso-router'; |
| | import clsx from 'clsx'; |
| | import { localize } from 'i18n-calypso'; |
| | import { compact, pickBy } from 'lodash'; |
| | import PropTypes from 'prop-types'; |
| | import { createRef, Component } from 'react'; |
| | import { InView } from 'react-intersection-observer'; |
| | import { connect } from 'react-redux'; |
| | import AsyncLoad from 'calypso/components/async-load'; |
| | import QueryProductsList from 'calypso/components/data/query-products-list'; |
| | import QuerySitePlans from 'calypso/components/data/query-site-plans'; |
| | import QuerySitePurchases from 'calypso/components/data/query-site-purchases'; |
| | import QueryThemeFilters from 'calypso/components/data/query-theme-filters'; |
| | import { SearchThemes } from 'calypso/components/search-themes'; |
| | import ThemeDesignYourOwnModal from 'calypso/components/theme-design-your-own-modal'; |
| | import ThemeSiteSelectorModal from 'calypso/components/theme-site-selector-modal'; |
| | import { THEME_TIERS } from 'calypso/components/theme-tier/constants'; |
| | import PageViewTracker from 'calypso/lib/analytics/page-view-tracker'; |
| | import { THEME_COLLECTIONS } from 'calypso/my-sites/themes/collections/collection-definitions'; |
| | import ShowcaseThemeCollection from 'calypso/my-sites/themes/collections/showcase-theme-collection'; |
| | import ThemeCollectionViewHeader from 'calypso/my-sites/themes/collections/theme-collection-view-header'; |
| | import { getCurrentUserSiteCount, isUserLoggedIn } from 'calypso/state/current-user/selectors'; |
| | import getSiteEditorUrl from 'calypso/state/selectors/get-site-editor-url'; |
| | import getSiteFeaturesById from 'calypso/state/selectors/get-site-features'; |
| | import isAtomicSite from 'calypso/state/selectors/is-site-automated-transfer'; |
| | import siteHasFeature from 'calypso/state/selectors/site-has-feature'; |
| | import { isSiteOnWooExpress, isSiteOnECommerceTrial } from 'calypso/state/sites/plans/selectors'; |
| | import { getSite, getSiteSlug } from 'calypso/state/sites/selectors'; |
| | import { setBackPath } from 'calypso/state/themes/actions'; |
| | import { STATIC_FILTERS, DEFAULT_STATIC_FILTER } from 'calypso/state/themes/constants'; |
| | import { |
| | arePremiumThemesEnabled, |
| | getThemeFilterTerms, |
| | getThemeFilterToTermTable, |
| | prependThemeFilterKeys, |
| | isUpsellCardDisplayed as isUpsellCardDisplayedSelector, |
| | getThemeTiers, |
| | } from 'calypso/state/themes/selectors'; |
| | import { getThemesBookmark } from 'calypso/state/themes/themes-ui/selectors'; |
| | import EligibilityWarningModal from './atomic-transfer-dialog'; |
| | import { CustomSelectWrapper } from './custom-select-wrapper'; |
| | import { |
| | addTracking, |
| | getSubjectsFromTermTable, |
| | trackClick, |
| | localizeThemesPath, |
| | isStaticFilter, |
| | constructThemeShowcaseUrl, |
| | } from './helpers'; |
| | import ThemeErrors from './theme-errors'; |
| | import ThemePreview from './theme-preview'; |
| | import ThemeShowcaseHeader from './theme-showcase-header'; |
| | import ThemesSelection from './themes-selection'; |
| | import ThemesToolbarGroup from './themes-toolbar-group'; |
| | import './theme-showcase.scss'; |
| |
|
| | const optionShape = PropTypes.shape( { |
| | label: PropTypes.string, |
| | header: PropTypes.string, |
| | getUrl: PropTypes.func, |
| | action: PropTypes.func, |
| | } ); |
| |
|
| | class ThemeShowcase extends Component { |
| | state = { |
| | isDesignThemeModalVisible: false, |
| | isSiteSelectorModalVisible: false, |
| | shouldThemeControlsSticky: false, |
| | }; |
| |
|
| | constructor( props ) { |
| | super( props ); |
| | this.scrollRef = createRef(); |
| | this.bookmarkRef = createRef(); |
| | this.showcaseRef = createRef(); |
| |
|
| | this.subjectFilters = this.getSubjectFilters( props ); |
| | this.subjectTermTable = getSubjectsFromTermTable( props.filterToTermTable ); |
| | } |
| |
|
| | static propTypes = { |
| | tier: PropTypes.oneOf( [ '', ...Object.keys( THEME_TIERS ) ] ), |
| | search: PropTypes.string, |
| | isCollectionView: PropTypes.bool, |
| | pathName: PropTypes.string, |
| | |
| | options: PropTypes.objectOf( optionShape ), |
| | defaultOption: optionShape, |
| | secondaryOption: optionShape, |
| | getScreenshotOption: PropTypes.func, |
| | siteCanInstallThemes: PropTypes.bool, |
| | siteCount: PropTypes.number, |
| | siteSlug: PropTypes.string, |
| | upsellBanner: PropTypes.any, |
| | loggedOutComponent: PropTypes.bool, |
| | isAtomicSite: PropTypes.bool, |
| | isJetpackSite: PropTypes.bool, |
| | isSiteECommerceFreeTrial: PropTypes.bool, |
| | isSiteWooExpress: PropTypes.bool, |
| | isSiteWooExpressOrEcomFreeTrial: PropTypes.bool, |
| | }; |
| |
|
| | static defaultProps = { |
| | tier: '', |
| | search: '', |
| | upsellBanner: false, |
| | showUploadButton: true, |
| | }; |
| |
|
| | componentDidMount() { |
| | const { themesBookmark } = this.props; |
| | |
| | if ( themesBookmark ) { |
| | |
| | setTimeout( () => { |
| | const lastTheme = this.bookmarkRef.current; |
| | if ( lastTheme ) { |
| | lastTheme.scrollIntoView( { |
| | behavior: 'auto', |
| | block: 'center', |
| | inline: 'center', |
| | } ); |
| | } |
| | } ); |
| | } |
| | } |
| |
|
| | componentDidUpdate( prevProps ) { |
| | if ( |
| | prevProps.search !== this.props.search || |
| | prevProps.filter !== this.props.filter || |
| | prevProps.tier !== this.props.tier |
| | ) { |
| | this.scrollToSearchInput(); |
| | } |
| | } |
| |
|
| | componentWillUnmount() { |
| | this.props.setBackPath( this.constructUrl() ); |
| | } |
| |
|
| | isThemeDiscoveryEnabled = () => config.isEnabled( 'themes/discovery' ); |
| |
|
| | getStaticFilters() { |
| | const { translate } = this.props; |
| | return { |
| | MYTHEMES: { |
| | key: STATIC_FILTERS.MYTHEMES, |
| | get text() { |
| | return translate( 'My Themes' ); |
| | }, |
| | }, |
| | RECOMMENDED: { |
| | key: STATIC_FILTERS.RECOMMENDED, |
| | get text() { |
| | return translate( 'Recommended' ); |
| | }, |
| | }, |
| | ALL: { |
| | key: STATIC_FILTERS.ALL, |
| | get text() { |
| | return translate( 'All' ); |
| | }, |
| | }, |
| | }; |
| | } |
| |
|
| | getDefaultStaticFilter = () => |
| | Object.values( this.getStaticFilters() ).find( |
| | ( staticFilter ) => staticFilter.key === DEFAULT_STATIC_FILTER |
| | ); |
| |
|
| | isStaticFilter = ( tabFilter ) => isStaticFilter( tabFilter.key ); |
| |
|
| | getSubjectFilters = ( props ) => { |
| | const { subjects } = props; |
| | return Object.fromEntries( |
| | Object.entries( subjects ).map( ( [ key, filter ] ) => [ key, { key, text: filter.name } ] ) |
| | ); |
| | }; |
| |
|
| | getTabFilters = () => { |
| | const { translate } = this.props; |
| | const staticFilters = this.getStaticFilters(); |
| | if ( this.props.siteId && ! this.props.areSiteFeaturesLoaded ) { |
| | return null; |
| | } |
| |
|
| | if ( this.props.isSiteWooExpress ) { |
| | return { |
| | MYTHEMES: staticFilters.MYTHEMES, |
| | RECOMMENDED: { |
| | ...staticFilters.RECOMMENDED, |
| | text: translate( 'All Themes' ), |
| | }, |
| | }; |
| | } |
| |
|
| | const shouldShowMyThemesFilter = !! this.props.siteId; |
| |
|
| | return { |
| | ...( shouldShowMyThemesFilter && { MYTHEMES: staticFilters.MYTHEMES } ), |
| | RECOMMENDED: staticFilters.RECOMMENDED, |
| | ALL: staticFilters.ALL, |
| | ...this.subjectFilters, |
| | }; |
| | }; |
| |
|
| | getTiers = () => { |
| | const { themeTiers, translate } = this.props; |
| |
|
| | const tiers = Object.keys( themeTiers ).reduce( ( availableTiers, tier ) => { |
| | if ( ! THEME_TIERS[ tier ]?.isFilterable ) { |
| | return availableTiers; |
| | } |
| | return [ |
| | ...availableTiers, |
| | { |
| | key: tier, |
| | name: THEME_TIERS[ tier ].label, |
| | }, |
| | ]; |
| | }, [] ); |
| |
|
| | return [ |
| | { |
| | key: 'all', |
| | get name() { |
| | return translate( 'All' ); |
| | }, |
| | }, |
| | ...tiers, |
| | ]; |
| | }; |
| |
|
| | findTabFilter = ( tabFilters, filterKey ) => |
| | Object.values( tabFilters ).find( ( filter ) => filter.key === filterKey ) || |
| | this.getDefaultStaticFilter(); |
| |
|
| | getSelectedTabFilter = () => { |
| | const filter = this.props.filter ?? ''; |
| | const filterArray = filter.split( '+' ); |
| | const staticFilters = this.getStaticFilters(); |
| | const matches = Object.values( this.subjectTermTable ).filter( ( value ) => |
| | filterArray.includes( value ) |
| | ); |
| |
|
| | if ( ! matches.length ) { |
| | return this.findTabFilter( staticFilters, this.props.category ); |
| | } |
| |
|
| | const filterKey = matches[ matches.length - 1 ].split( ':' ).pop(); |
| | return this.findTabFilter( this.subjectFilters, filterKey ); |
| | }; |
| |
|
| | scrollToSearchInput = () => { |
| | |
| | if ( this.showcaseRef.current && this.state.shouldThemeControlsSticky ) { |
| | this.showcaseRef.current.scrollIntoView( { |
| | behavior: 'instant', |
| | block: 'start', |
| | } ); |
| | } |
| |
|
| | let y = 0; |
| |
|
| | if ( ! this.props.loggedOutComponent && this.scrollRef && this.scrollRef.current ) { |
| | |
| | if ( window.innerWidth > 600 ) { |
| | return; |
| | } |
| | const headerHeight = document |
| | .getElementsByClassName( 'masterbar' )[ 0 ] |
| | ?.getBoundingClientRect().height; |
| | const screenOptionTab = document |
| | .getElementsByClassName( 'screen-options-tab__button' )[ 0 ] |
| | ?.getBoundingClientRect().height; |
| |
|
| | const yOffset = -( headerHeight + screenOptionTab ); |
| | const elementBoundary = this.scrollRef.current.getBoundingClientRect(); |
| |
|
| | y = elementBoundary.top + window.pageYOffset + yOffset; |
| | } |
| |
|
| | window.scrollTo( { top: y } ); |
| | }; |
| |
|
| | doSearch = ( searchBoxContent ) => { |
| | const filterRegex = /([\w-]*):([\w-]*)/g; |
| | const { filterToTermTable, subjectStringFilter, isLoggedIn } = this.props; |
| | const staticFilters = this.getStaticFilters(); |
| |
|
| | const searchString = `${ searchBoxContent } ${ ! isLoggedIn ? subjectStringFilter : '' }`; |
| | const filters = searchString.match( filterRegex ) || []; |
| |
|
| | const validFilters = filters.map( ( filter ) => filterToTermTable[ filter ] ); |
| | const filterString = compact( validFilters ).join( '+' ); |
| |
|
| | const search = searchBoxContent.replace( filterRegex, '' ).replace( /\s+/g, ' ' ).trim(); |
| |
|
| | const url = this.constructUrl( { |
| | filter: filterString, |
| | |
| | search, |
| | ...( ( this.isThemeDiscoveryEnabled() && ! this.props.category && search ) || |
| | ( filterString && { |
| | category: staticFilters.ALL.key, |
| | } ) ), |
| | |
| | ...( search && |
| | ! subjectStringFilter && { |
| | category: staticFilters.ALL.key, |
| | } ), |
| | } ); |
| |
|
| | page( url ); |
| | this.scrollToSearchInput(); |
| | }; |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | constructUrl = ( sections ) => { |
| | return constructThemeShowcaseUrl( { |
| | ...this.props, |
| | ...sections, |
| | } ); |
| | }; |
| |
|
| | onTierSelectFilter = ( attrs ) => { |
| | const tier = attrs.selectedItem.key; |
| |
|
| | recordTracksEvent( 'calypso_themeshowcase_filter_pricing_click', { tier } ); |
| | trackClick( 'search bar filter', tier ); |
| |
|
| | const category = tier !== 'all' && ! this.props.category ? '' : this.props.category; |
| | const showCollection = |
| | this.isThemeDiscoveryEnabled() && ! this.props.filterString && ! category && tier !== 'all'; |
| | const staticFilters = this.getStaticFilters(); |
| |
|
| | const url = this.constructUrl( { |
| | tier, |
| | category, |
| | search: showCollection ? '' : this.props.search, |
| | |
| | ...( tier !== 'all' && |
| | this.props.category === staticFilters.MYTHEMES.key && { |
| | category: staticFilters.RECOMMENDED.key, |
| | } ), |
| | } ); |
| |
|
| | page( url ); |
| | this.scrollToSearchInput(); |
| | }; |
| |
|
| | onFilterClick = ( tabFilter ) => { |
| | recordTracksEvent( 'calypso_themeshowcase_filter_category_click', { category: tabFilter.key } ); |
| | trackClick( 'section nav filter', tabFilter ); |
| |
|
| | const staticFilters = this.getStaticFilters(); |
| | const { filter = '', filterToTermTable } = this.props; |
| | const subjectFilters = Object.values( this.subjectTermTable ); |
| | const filterWithoutSubjects = filter |
| | .split( '+' ) |
| | .filter( ( key ) => ! subjectFilters.includes( key ) ) |
| | .join( '+' ); |
| |
|
| | const newUrlParams = {}; |
| |
|
| | if ( this.isStaticFilter( tabFilter ) ) { |
| | newUrlParams.category = tabFilter.key; |
| | newUrlParams.filter = filterWithoutSubjects; |
| | |
| | if ( tabFilter.key === staticFilters.MYTHEMES.key && this.props.tier !== 'all' ) { |
| | newUrlParams.tier = 'all'; |
| | } |
| | } else { |
| | const subjectTerm = filterToTermTable[ `subject:${ tabFilter.key }` ]; |
| | newUrlParams.filter = [ filterWithoutSubjects, subjectTerm ].join( '+' ); |
| | newUrlParams.category = null; |
| | } |
| |
|
| | page( this.constructUrl( newUrlParams ) ); |
| |
|
| | this.scrollToSearchInput(); |
| | }; |
| |
|
| | shouldShowCollections = () => { |
| | const { category, search, filter, isCollectionView, tier } = this.props; |
| |
|
| | if ( this.props.isJetpackSite && ! this.props.isAtomicSite ) { |
| | return false; |
| | } |
| |
|
| | return ( |
| | ! ( category || search || filter || isCollectionView ) && |
| | tier === '' && |
| | this.isThemeDiscoveryEnabled() |
| | ); |
| | }; |
| |
|
| | allThemes = ( { themeProps } ) => { |
| | const { filter, isCollectionView, tier } = this.props; |
| |
|
| | |
| | const themesSelectionProps = { |
| | ...themeProps, |
| | ...( isCollectionView && tier && ! filter && { tabFilter: '' } ), |
| | }; |
| |
|
| | const themeCollection = THEME_COLLECTIONS.partner; |
| |
|
| | return ( |
| | <div className="theme-showcase__all-themes"> |
| | <ThemesSelection { ...themesSelectionProps }> |
| | { this.shouldShowCollections() && ( |
| | <> |
| | <ShowcaseThemeCollection |
| | { ...themeCollection } |
| | getOptions={ this.getThemeOptions } |
| | getScreenshotUrl={ this.getScreenshotUrl } |
| | getActionLabel={ this.getActionLabel } |
| | onSeeAll={ () => |
| | this.onCollectionSeeAll( { |
| | tier: themeCollection.query.tier, |
| | filter: themeCollection.query.filter, |
| | } ) |
| | } |
| | /> |
| | </> |
| | ) } |
| | </ThemesSelection> |
| | </div> |
| | ); |
| | }; |
| |
|
| | recordSearchThemesTracksEvent = ( action, props ) => { |
| | let eventName; |
| | switch ( action ) { |
| | case 'search_clear_icon_click': |
| | eventName = 'calypso_themeshowcase_search_clear_icon_click'; |
| | break; |
| | case 'search_dropdown_taxonomy_click': |
| | eventName = 'calypso_themeshowcase_search_dropdown_taxonomy_click'; |
| | break; |
| | case 'search_dropdown_taxonomy_term_click': |
| | eventName = 'calypso_themeshowcase_search_dropdown_taxonomy_term_click'; |
| | break; |
| | case 'search_dropdown_view_all_button_click': |
| | eventName = 'calypso_themeshowcase_search_dropdown_view_all_button_click'; |
| | break; |
| | case 'search_dropdown_view_less_button_click': |
| | eventName = 'calypso_themeshowcase_search_dropdown_view_less_button_click'; |
| | break; |
| | } |
| |
|
| | if ( eventName ) { |
| | recordTracksEvent( eventName, props ); |
| | } |
| | }; |
| |
|
| | renderBanner = () => { |
| | const { loggedOutComponent, upsellBanner, isUpsellCardDisplayed, isSiteECommerceFreeTrial } = |
| | this.props; |
| |
|
| | |
| | if ( isUpsellCardDisplayed ) { |
| | return null; |
| | } |
| |
|
| | |
| | if ( isSiteECommerceFreeTrial ) { |
| | if ( upsellBanner ) { |
| | return upsellBanner; |
| | } |
| | return null; |
| | } |
| |
|
| | if ( config.isEnabled( 'jitms' ) && ! loggedOutComponent ) { |
| | return ( |
| | <AsyncLoad |
| | require="calypso/blocks/jitm" |
| | placeholder={ null } |
| | messagePath="calypso:themes:showcase-website-design" |
| | /> |
| | ); |
| | } |
| |
|
| | return upsellBanner; |
| | }; |
| |
|
| | renderSiteAssemblerSelectorModal = () => { |
| | const { isDesignThemeModalVisible, isSiteSelectorModalVisible } = this.state; |
| |
|
| | return ( |
| | <> |
| | <ThemeSiteSelectorModal |
| | isOpen={ isSiteSelectorModalVisible } |
| | navigateOnClose={ false } |
| | onClose={ ( args ) => { |
| | if ( args?.siteSlug ) { |
| | this.redirectToSiteAssembler( { slug: args.siteSlug } ); |
| | } |
| | |
| | this.setState( { isSiteSelectorModalVisible: false } ); |
| | } } |
| | /> |
| | <ThemeDesignYourOwnModal |
| | isOpen={ isDesignThemeModalVisible } |
| | onClose={ () => { |
| | this.setState( { isDesignThemeModalVisible: false } ); |
| | } } |
| | onCreateNewSite={ () => { |
| | this.redirectToSiteAssembler(); |
| | } } |
| | onSelectSite={ () => { |
| | this.setState( { isDesignThemeModalVisible: false, isSiteSelectorModalVisible: true } ); |
| | } } |
| | /> |
| | </> |
| | ); |
| | }; |
| |
|
| | renderThemes = ( themeProps ) => { |
| | const tabKey = this.getSelectedTabFilter().key; |
| | const staticFilters = this.getStaticFilters(); |
| |
|
| | switch ( tabKey ) { |
| | case staticFilters.MYTHEMES?.key: |
| | return <ThemesSelection { ...themeProps } />; |
| | default: |
| | return this.allThemes( { themeProps } ); |
| | } |
| | }; |
| |
|
| | getScreenshotUrl = ( theme, themeOptions ) => { |
| | const { getScreenshotOption, locale, isLoggedIn } = this.props; |
| |
|
| | if ( ! getScreenshotOption( theme ).getUrl ) { |
| | return null; |
| | } |
| |
|
| | return localizeThemesPath( |
| | getScreenshotOption( theme ).getUrl( theme, themeOptions ), |
| | locale, |
| | ! isLoggedIn |
| | ); |
| | }; |
| |
|
| | getActionLabel = ( theme ) => this.props.getScreenshotOption( theme ).label; |
| | getThemeOptions = ( theme ) => { |
| | return pickBy( |
| | addTracking( this.props.options ), |
| | ( option ) => ! ( option.hideForTheme && option.hideForTheme( theme, this.props.siteId ) ) |
| | ); |
| | }; |
| |
|
| | onCollectionSeeAll = ( { filter = '', tier = '' } ) => { |
| | const url = this.constructUrl( { |
| | isCollectionView: true, |
| | filter, |
| | tier, |
| | } ); |
| |
|
| | page( url ); |
| | window.scrollTo( { top: 0 } ); |
| | }; |
| |
|
| | onShouldThemeControlsStickyChange = ( inView ) => { |
| | this.setState( { shouldThemeControlsSticky: this.props.isLoggedIn && ! inView } ); |
| | }; |
| |
|
| | render() { |
| | const { |
| | siteId, |
| | getScreenshotOption, |
| | search, |
| | filter, |
| | isLoggedIn, |
| | pathName, |
| | featureStringFilter, |
| | filterString, |
| | isJetpackSite, |
| | isMultisite, |
| | premiumThemesEnabled, |
| | isSiteECommerceFreeTrial, |
| | isSiteWooExpressOrEcomFreeTrial, |
| | isSiteWooExpress, |
| | isCollectionView, |
| | translate, |
| | } = this.props; |
| | const tier = this.props.tier || 'all'; |
| | const canonicalUrl = 'https://wordpress.com' + pathName; |
| | const staticFilters = this.getStaticFilters(); |
| |
|
| | |
| | this.subjectFilters = this.getSubjectFilters( this.props ); |
| | this.subjectTermTable = getSubjectsFromTermTable( this.props.filterToTermTable ); |
| |
|
| | const themeProps = { |
| | forceWpOrgSearch: true, |
| | filter: filter, |
| | vertical: this.props.vertical, |
| | siteId: this.props.siteId, |
| | upsellUrl: this.props.upsellUrl, |
| | upsellBanner: this.props.upsellBanner, |
| | search: search, |
| | tier: this.props.tier, |
| | tabFilter: this.getSelectedTabFilter().key, |
| | defaultOption: this.props.defaultOption, |
| | secondaryOption: this.props.secondaryOption, |
| | placeholderCount: this.props.placeholderCount, |
| | bookmarkRef: this.bookmarkRef, |
| | getScreenshotUrl: this.getScreenshotUrl, |
| | onScreenshotClick: ( themeId ) => { |
| | if ( ! getScreenshotOption( themeId ).action ) { |
| | return; |
| | } |
| | getScreenshotOption( themeId ).action( themeId ); |
| | }, |
| | getActionLabel: this.getActionLabel, |
| | trackScrollPage: this.props.trackScrollPage, |
| | scrollToSearchInput: this.scrollToSearchInput, |
| | getOptions: this.getThemeOptions, |
| | source: this.props.category !== staticFilters.MYTHEMES.key ? 'wpcom' : null, |
| | }; |
| |
|
| | const tabFilters = this.getTabFilters(); |
| | const tiers = this.getTiers(); |
| |
|
| | const classnames = clsx( 'theme-showcase', { |
| | 'is-collection-view': isCollectionView, |
| | } ); |
| |
|
| | const showThemeErrors = |
| | siteId && this.props.category === staticFilters.MYTHEMES.key && isJetpackSite; |
| |
|
| | return ( |
| | <div className={ classnames }> |
| | <PageViewTracker |
| | path={ this.props.analyticsPath } |
| | title={ this.props.analyticsPageTitle } |
| | properties={ { is_logged_in: isLoggedIn } } |
| | /> |
| | <ThemeShowcaseHeader |
| | canonicalUrl={ canonicalUrl } |
| | filter={ this.props.filter } |
| | tier={ this.props.tier } |
| | vertical={ this.props.vertical } |
| | isCollectionView={ isCollectionView } |
| | noIndex={ isCollectionView } |
| | isSiteECommerceFreeTrial={ isSiteECommerceFreeTrial } |
| | /> |
| | { this.renderSiteAssemblerSelectorModal() } |
| | <div className="themes__content" ref={ this.scrollRef }> |
| | <QueryThemeFilters locale={ this.props.locale } /> |
| | { isSiteWooExpressOrEcomFreeTrial && ( |
| | <div className="themes__showcase">{ this.renderBanner() }</div> |
| | ) } |
| | { ! isCollectionView && ( |
| | <> |
| | { isLoggedIn && ( |
| | <InView |
| | rootMargin="-32px 0px 0px 0px" |
| | threshold={ 1 } |
| | fallbackInView |
| | onChange={ this.onShouldThemeControlsStickyChange } |
| | > |
| | <div |
| | className={ clsx( 'themes__controls-placeholder', { |
| | 'is-sticky': this.state.shouldThemeControlsSticky, |
| | } ) } |
| | ref={ this.showcaseRef } |
| | /> |
| | </InView> |
| | ) } |
| | <div |
| | className={ clsx( 'themes__controls', { |
| | 'is-sticky': this.state.shouldThemeControlsSticky, |
| | } ) } |
| | > |
| | <div className="theme__search-container"> |
| | <div className="theme__search"> |
| | <div className="theme__search-input"> |
| | <SearchThemes |
| | query={ isLoggedIn ? filterString + search : featureStringFilter + search } |
| | onSearch={ this.doSearch } |
| | recordTracksEvent={ this.recordSearchThemesTracksEvent } |
| | /> |
| | </div> |
| | { tabFilters && premiumThemesEnabled && ! isMultisite && ( |
| | <CustomSelectWrapper |
| | className="theme__tier-select" |
| | label={ translate( 'Filters' ) } |
| | hideLabelFromVision |
| | __next40pxDefaultSize |
| | options={ tiers.map( ( t ) => { |
| | return { ...t, className: t.key === tier ? 'is-selected' : '' }; |
| | } ) } |
| | value={ { |
| | key: tier, |
| | name: translate( 'View: %s', { |
| | args: this.getTiers().find( ( t ) => t.key === tier ).name, |
| | } ), |
| | } } |
| | onChange={ this.onTierSelectFilter } |
| | /> |
| | ) } |
| | </div> |
| | </div> |
| | <div |
| | className={ clsx( 'themes__filters', { |
| | 'is-woo-express': isSiteWooExpress, |
| | } ) } |
| | > |
| | { tabFilters && ! isSiteECommerceFreeTrial && ( |
| | <ThemesToolbarGroup |
| | items={ Object.values( tabFilters ) } |
| | selectedKey={ this.getSelectedTabFilter().key } |
| | onSelect={ ( key ) => |
| | this.onFilterClick( |
| | Object.values( tabFilters ).find( ( tabFilter ) => tabFilter.key === key ) |
| | ) |
| | } |
| | /> |
| | ) } |
| | </div> |
| | </div> |
| | </> |
| | ) } |
| | { isCollectionView && ( |
| | <ThemeCollectionViewHeader |
| | backUrl={ this.constructUrl( { |
| | isCollectionView: false, |
| | tier: '', |
| | filter: '', |
| | search: '', |
| | category: this.getDefaultStaticFilter().key, |
| | } ) } |
| | filter={ this.props.filter } |
| | tier={ this.props.tier } |
| | isLoggedIn={ isLoggedIn } |
| | /> |
| | ) } |
| | <div className="themes__showcase"> |
| | { showThemeErrors && <ThemeErrors siteId={ siteId } /> } |
| | { ! isSiteWooExpressOrEcomFreeTrial && this.renderBanner() } |
| | { this.renderThemes( themeProps ) } |
| | </div> |
| | { siteId && <QuerySitePlans siteId={ siteId } /> } |
| | { siteId && <QuerySitePurchases siteId={ siteId } /> } |
| | <QueryProductsList /> |
| | <EligibilityWarningModal /> |
| | <ThemePreview /> |
| | </div> |
| | </div> |
| | ); |
| | } |
| | } |
| |
|
| | const mapStateToProps = ( state, { siteId, filter } ) => { |
| | return { |
| | isLoggedIn: isUserLoggedIn( state ), |
| | isAtomicSite: isAtomicSite( state, siteId ), |
| | areSiteFeaturesLoaded: !! getSiteFeaturesById( state, siteId ), |
| | site: getSite( state, siteId ), |
| | siteCanInstallThemes: siteHasFeature( state, siteId, FEATURE_INSTALL_THEMES ), |
| | siteCount: getCurrentUserSiteCount( state ), |
| | siteEditorUrl: getSiteEditorUrl( state, siteId ), |
| | siteSlug: getSiteSlug( state, siteId ), |
| | subjects: getThemeFilterTerms( state, 'subject' ) || {}, |
| | premiumThemesEnabled: arePremiumThemesEnabled( state, siteId ), |
| | filterString: prependThemeFilterKeys( state, filter ), |
| | featureStringFilter: prependThemeFilterKeys( state, filter, [ 'subject' ] ), |
| | subjectStringFilter: prependThemeFilterKeys( state, filter, [], [ 'subject' ] ), |
| | filterToTermTable: getThemeFilterToTermTable( state ), |
| | themesBookmark: getThemesBookmark( state ), |
| | isUpsellCardDisplayed: isUpsellCardDisplayedSelector( state ), |
| | isSiteECommerceFreeTrial: isSiteOnECommerceTrial( state, siteId ), |
| | isSiteWooExpress: isSiteOnWooExpress( state, siteId ), |
| | isSiteWooExpressOrEcomFreeTrial: |
| | isSiteOnECommerceTrial( state, siteId ) || isSiteOnWooExpress( state, siteId ), |
| | themeTiers: getThemeTiers( state ), |
| | }; |
| | }; |
| |
|
| | export default connect( mapStateToProps, { setBackPath } )( localize( ThemeShowcase ) ); |
| |
|