/** * External dependencies */ import { Button, Notice } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import sanitizeHTML from '../../../lib/sanitize-html'; import { getAdminSetting } from '../../../utils/admin-settings'; import { WP_ADMIN_PLUGIN_LIST_URL, WOO_CONNECT_PLUGIN_DOWNLOAD_URL, } from '../constants'; import './woo-update-manager-plugin.scss'; export default function PluginInstallNotice() { const wccomSettings = getAdminSetting( 'wccomHelper', {} ); if ( ! wccomSettings?.isConnected ) { return null; } if ( ! wccomSettings?.wooUpdateManagerActive && ! wccomSettings?.wooUpdateManagerInstalled ) { return (
WooCommerce.com Update Manager to continue receiving the updates and streamlined support included in your WooCommerce.com subscriptions.
Alternatively, you can download and install it manually.', 'woocommerce' ) ) } >
); } else if ( wccomSettings?.wooUpdateManagerInstalled && ! wccomSettings?.wooUpdateManagerActive ) { return (
WooCommerce.com Update Manager to continue receiving the updates and streamlined support included in your WooCommerce.com subscriptions.', 'woocommerce' ) ) } >
); } return null; }