Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { ExternalLink } from '@automattic/components';
import { useLocale, localizeUrl } from '@automattic/i18n-utils';
import AntispamIcon from '../icons/jetpack-bundle-icon-antispam';
import BackupIcon from '../icons/jetpack-bundle-icon-backup';
import BlazeIcon from '../icons/jetpack-bundle-icon-blaze';
import BoostIcon from '../icons/jetpack-bundle-icon-boost';
import CRMIcon from '../icons/jetpack-bundle-icon-crm';
import NewsletterIcon from '../icons/jetpack-bundle-icon-newsletter';
import ScanIcon from '../icons/jetpack-bundle-icon-scan';
import SearchIcon from '../icons/jetpack-bundle-icon-search';
import SocialIcon from '../icons/jetpack-bundle-icon-social';
import StatsIcon from '../icons/jetpack-bundle-icon-stats';
import VideopressIcon from '../icons/jetpack-bundle-icon-videopress';
import { onLinkClick } from '../utils';
import type { FC, MouseEvent } from 'react';
interface BundleType {
bundle: {
id: string;
label: string;
href: string;
};
}
const Bundle: FC< BundleType > = ( { bundle } ) => {
const locale = useLocale();
const { href, label, id } = bundle;
const onBundlesLinkClick = ( e: MouseEvent< HTMLAnchorElement > ) => {
onLinkClick( e, 'calypso_jetpack_nav_bundles_click' );
};
const getBundleIcons = ( bundle: string ) => {
// Using a soft match in case the menu item gets deleted and recreated in wp-admin
// causing the name to change to `complete-2` or something similar.
if ( bundle.includes( 'complete' ) ) {
return [
<BackupIcon key="backup" />,
<AntispamIcon key="anti-spam" />,
<ScanIcon key="scan" />,
<SearchIcon key="search" />,
<SocialIcon key="social" />,
<VideopressIcon key="videopress" />,
<CRMIcon key="crm" />,
<BoostIcon key="boost" />,
];
}
if ( bundle.includes( 'security' ) ) {
return [
<BackupIcon key="backup" />,
<AntispamIcon key="anti-spam" />,
<ScanIcon key="scan" />,
];
}
if ( bundle.includes( 'growth' ) ) {
return [
<StatsIcon key="stats" />,
<SocialIcon key="social" />,
<NewsletterIcon key="newsletter" />,
<BlazeIcon key="blaze" />,
];
}
return [];
};
return (
<li key={ `bundles-${ href }-${ label }` }>
<ExternalLink
className="header__submenu-link"
href={ localizeUrl( href, locale ) }
onClick={ onBundlesLinkClick }
>
<p className="header__submenu-label">
<span>{ label }</span>
</p>
<div className="header__submenu-bundle-icons">
{ getBundleIcons( id ).map( ( icon, index ) => (
<span className="jp-product-icon" key={ `bundle-icon-${ id }${ index }` }>
{ icon }
</span>
) ) }
</div>
</ExternalLink>
</li>
);
};
export default Bundle;