Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { useQuery } from '@tanstack/react-query';
import { __, _n, sprintf } from '@wordpress/i18n';
import { shield } from '@wordpress/icons';
import { siteScanQuery } from '../../app/queries/site-scan';
import { useTimeSince } from '../../components/time-since';
import { HostingFeatures } from '../../data/constants';
import { isSelfHostedJetpackConnected } from '../../utils/site-types';
import HostingFeatureGatedWithOverviewCard from '../hosting-feature-gated-with-overview-card';
import OverviewCard from '../overview-card';
import type { SiteScan } from '../../data/site-scan';
import type { Site } from '../../data/types';
const CARD_PROPS = {
icon: shield,
title: __( 'Last scan' ),
tracksId: 'scan',
};
function getScanURL( site: Site ) {
return isSelfHostedJetpackConnected( site )
? `https://cloud.jetpack.com/scan/${ site.slug }`
: `https://wordpress.com/scan/${ site.slug }`;
}
function ScanCardWithThreats( { site, scan }: { site: Site; scan: SiteScan } ) {
const threatCount = scan.threats.length;
const description = sprintf(
/* translators: %d: number of risks */
_n( '%d risk found', '%d risks found', threatCount ),
threatCount
);
return (
<OverviewCard
{ ...CARD_PROPS }
heading={ description }
description={ __( 'Auto fixes are available' ) }
externalLink={ getScanURL( site ) }
intent="error"
/>
);
}
function ScanCardNoThreats( { site, scan }: { site: Site; scan: SiteScan } ) {
const lastScanDate = useTimeSince( scan.most_recent?.timestamp );
let description = '\u00A0';
if ( lastScanDate ) {
description = sprintf(
/* translators: %s: time since last scan */
__( 'Scanned %s' ),
lastScanDate
);
}
return (
<OverviewCard
{ ...CARD_PROPS }
heading={ __( 'No risks found' ) }
description={ description }
externalLink={ getScanURL( site ) }
intent="success"
/>
);
}
function ScanCardContent( { site }: { site: Site } ) {
const { data: scan } = useQuery( siteScanQuery( site.ID ) );
if ( scan === undefined ) {
return <OverviewCard { ...CARD_PROPS } isLoading />;
}
if ( ! scan ) {
return null;
}
if ( scan.threats.length > 0 ) {
return <ScanCardWithThreats site={ site } scan={ scan } />;
}
return <ScanCardNoThreats site={ site } scan={ scan } />;
}
export default function ScanCard( { site }: { site: Site } ) {
return (
<HostingFeatureGatedWithOverviewCard
site={ site }
feature={ HostingFeatures.SCAN }
featureIcon={ CARD_PROPS.icon }
tracksFeatureId={ CARD_PROPS.tracksId }
upsellHeading={ __( 'Scan for security threats' ) }
upsellDescription={ __( 'We guard your site. You run your business.' ) }
upsellExternalLink={ getScanURL( site ) }
>
<ScanCardContent site={ site } />
</HostingFeatureGatedWithOverviewCard>
);
}