react-code-dataset
/
wp-calypso
/client
/a8c-for-agencies
/sections
/plugins
/plugins-jetpack-banner.tsx
| import { JetpackLogo } from '@automattic/components'; | |
| import { useTranslate } from 'i18n-calypso'; | |
| import Banner from 'calypso/components/banner'; | |
| import { useSelector } from 'calypso/state'; | |
| import { getPreference } from 'calypso/state/preferences/selectors'; | |
| const JETPACK_BANNER_DISMISS_PREFERENCE = 'a4a-plugins-jetpack-banner'; | |
| export default function A4APluginsJetpackBanner() { | |
| const translate = useTranslate(); | |
| const isDismissed = useSelector( ( state ) => | |
| getPreference( state, 'dismissible-card-' + JETPACK_BANNER_DISMISS_PREFERENCE ) | |
| ); | |
| if ( isDismissed ) { | |
| return null; | |
| } | |
| return ( | |
| <div className="a4a-plugins-jetpack-banner-container"> | |
| <Banner | |
| title={ translate( 'Jetpack Required for Plugin Management' ) } | |
| description={ translate( | |
| 'To manage plugins, Jetpack must be activated on each site. Your Pressable plan includes Jetpack Complete for free. Activate it to access plugin management in this dashboard.' | |
| ) } | |
| icon={ <JetpackLogo size={ 16 } /> } | |
| className="plugins__jetpack-banner" | |
| dismissPreferenceName={ JETPACK_BANNER_DISMISS_PREFERENCE } | |
| disableCircle | |
| jetpack | |
| /> | |
| </div> | |
| ); | |
| } | |