File size: 3,978 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 | import { useTranslate } from 'i18n-calypso';
import { useSelector } from 'react-redux';
import DocumentHead from 'calypso/components/data/document-head';
import InlineSupportLink from 'calypso/components/inline-support-link';
import NavigationHeader from 'calypso/components/navigation-header';
import { preventWidows } from 'calypso/lib/formatting';
import { isUserLoggedIn } from 'calypso/state/current-user/selectors';
import { getSelectedSiteId } from 'calypso/state/ui/selectors';
import InstallThemeButton from './install-theme-button';
import useThemeShowcaseDescription from './use-theme-showcase-description';
import useThemeShowcaseLoggedOutSeoContent from './use-theme-showcase-logged-out-seo-content';
import useThemeShowcaseTitle from './use-theme-showcase-title';
const shouldSkipTitleFormatting = ( { filter, tier } ) => {
return ( ! filter || filter === 'recommended' ) && ( ! tier || tier === 'all' );
};
export default function ThemeShowcaseHeader( {
canonicalUrl,
filter,
tier,
vertical,
isCollectionView = false,
noIndex = false,
isSiteECommerceFreeTrial = false,
} ) {
// eslint-disable-next-line no-shadow
const translate = useTranslate();
const isLoggedIn = useSelector( isUserLoggedIn );
const selectedSiteId = useSelector( getSelectedSiteId );
const description = useThemeShowcaseDescription( { filter, tier, vertical } );
const title = useThemeShowcaseTitle( { filter, tier, vertical } );
const skipTitleFormatting = shouldSkipTitleFormatting( { filter, tier } );
const loggedOutSeoContent = useThemeShowcaseLoggedOutSeoContent( filter, tier );
const {
title: documentHeadTitle,
metaDescription: metaDescription,
header: themesHeaderTitle,
description: themesHeaderDescription,
} = isLoggedIn
? {
title: title,
metaDescription: description,
header: translate( 'Themes' ),
description: translate(
'Select or update the visual design for your site. {{learnMoreLink}}Learn more{{/learnMoreLink}}.',
{
components: {
learnMoreLink: <InlineSupportLink supportContext="themes" showIcon={ false } />,
},
}
),
}
: loggedOutSeoContent;
// Don't show the Install Theme button if the site is on a Ecommerce free trial or siteID is not available
const showInstallThemeButton = ! isSiteECommerceFreeTrial && !! selectedSiteId;
const metas = [
{
name: 'description',
property: 'og:description',
content: metaDescription || themesHeaderDescription,
},
{ property: 'og:title', content: documentHeadTitle },
{ property: 'og:url', content: canonicalUrl },
{ property: 'og:type', content: 'website' },
{ property: 'og:site_name', content: 'WordPress.com' },
];
if ( noIndex ) {
metas.push( {
name: 'robots',
content: 'noindex',
} );
}
if ( isCollectionView ) {
return (
<DocumentHead
title={ documentHeadTitle }
meta={ metas }
skipTitleFormatting={ skipTitleFormatting }
/>
);
}
return (
<>
<DocumentHead
title={ documentHeadTitle }
meta={ metas }
skipTitleFormatting={ skipTitleFormatting }
/>
{ isLoggedIn ? (
<div className="themes__header-navigation-container">
<NavigationHeader
compactBreadcrumb={ false }
navigationItems={ [] }
mobileItem={ null }
title={ translate( 'Themes' ) }
subtitle={ translate(
'Select or update the visual design for your site. {{learnMoreLink}}Learn more{{/learnMoreLink}}.',
{
components: {
learnMoreLink: <InlineSupportLink supportContext="themes" showIcon={ false } />,
},
}
) }
>
{ showInstallThemeButton && <InstallThemeButton /> }
</NavigationHeader>
</div>
) : (
<div className="themes__header-logged-out">
<div className="themes__page-heading">
<h1>{ preventWidows( themesHeaderTitle ) }</h1>
<p className="page-sub-header">{ preventWidows( themesHeaderDescription ) }</p>
</div>
</div>
) }
</>
);
}
|