File size: 3,345 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 | import {
isJetpackBackupSlug,
isJetpackScanSlug,
isCompletePlan,
isSecurityDailyPlan,
isSecurityRealTimePlan,
} from '@automattic/calypso-products';
import { useTranslate } from 'i18n-calypso';
import * as React from 'react';
import { JetpackBenefitsCard } from 'calypso/blocks/jetpack-benefits/benefit-card';
import {
productHasSearch,
productHasBackups,
productHasScan,
productHasAntiSpam,
productHasVideoPress,
productHasBoost,
} from 'calypso/blocks/jetpack-benefits/feature-checks';
import JetpackBenefitsScanHistory from 'calypso/blocks/jetpack-benefits/scan-history';
import JetpackBenefitsSiteBackups from 'calypso/blocks/jetpack-benefits/site-backups';
import JetpackBenefitsVideoPress from 'calypso/blocks/jetpack-benefits/videopress';
import { useSelector } from 'calypso/state';
import getRewindState from 'calypso/state/selectors/get-rewind-state';
import getSiteScanState from 'calypso/state/selectors/get-site-scan-state';
import './style.scss';
interface Props {
siteId: number;
productSlug: string;
}
const JetpackBenefits: React.FC< Props > = ( { siteId, productSlug } ) => {
const rewindState = useSelector( ( state ) => getRewindState( state, siteId ) );
const scanState = useSelector( ( state ) => getSiteScanState( state, siteId ) );
const translate = useTranslate();
const siteHasBackups = () => {
return 'unavailable' !== rewindState?.state;
};
const siteHasScan = () => {
return 'unavailable' !== scanState?.state;
};
return (
<React.Fragment>
{ siteHasBackups() && productHasBackups( productSlug ) && (
<JetpackBenefitsSiteBackups
siteId={ siteId }
isStandalone={ isJetpackBackupSlug( productSlug ) }
/>
) }
{ productHasSearch( productSlug ) && (
<JetpackBenefitsCard
headline={ translate( 'Search' ) }
description={ translate(
'Jetpack Search helps your visitors instantly find the right content – right when they need it.'
) }
/>
) }
{ productHasBoost( productSlug ) && (
<JetpackBenefitsCard
headline={ translate( 'Boost' ) }
description={ translate(
'Jetpack Boost improves your site performance and automatically generates critical CSS.'
) }
/>
) }
{ productHasAntiSpam( productSlug ) && (
<JetpackBenefitsCard
headline={ translate( 'Akismet Anti-spam' ) }
description={ translate(
'Jetpack Akismet Anti-spam automatcally clears spam from comments and forms.'
) }
/>
) }
{ siteHasScan() && productHasScan( productSlug ) && (
<JetpackBenefitsScanHistory
siteId={ siteId }
isStandalone={ isJetpackScanSlug( productSlug ) }
/>
) }
{ ( isCompletePlan( productSlug ) || isSecurityRealTimePlan( productSlug ) ) && (
<JetpackBenefitsCard
headline={ translate( 'Activity Log' ) }
description={ translate(
'Your 1-year Activity Log archive will revert to the 20 most recent events.'
) }
/>
) }
{ isSecurityDailyPlan( productSlug ) && (
<JetpackBenefitsCard
headline={ translate( 'Activity Log' ) }
description={ translate(
'Your 30-day Activity Log archive will revert to the 20 most recent events.'
) }
/>
) }
{ productHasVideoPress( productSlug ) && <JetpackBenefitsVideoPress siteId={ siteId } /> }
</React.Fragment>
);
};
export default JetpackBenefits;
|