UNPKG

@wordpress/block-library

Version:
55 lines (50 loc) 1.27 kB
/** * WordPress dependencies */ import { ToggleControl } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import { useUnsupportedBlocks } from '../../utils'; export default function EnhancedPaginationControl( { enhancedPagination, setAttributes, clientId, } ) { const { hasUnsupportedBlocks } = useUnsupportedBlocks( clientId ); const fullPageClientSideNavigation = window.__experimentalFullPageClientSideNavigation; let help = __( 'Reload the full page—instead of just the posts list—when visitors navigate between pages.' ); if ( fullPageClientSideNavigation ) { help = __( 'Experimental full-page client-side navigation setting enabled.' ); } else if ( hasUnsupportedBlocks ) { help = __( 'Enhancement disabled because there are non-compatible blocks inside the Query block.' ); } return ( <> <ToggleControl __nextHasNoMarginBottom label={ __( 'Reload full page' ) } help={ help } checked={ ! enhancedPagination && ! fullPageClientSideNavigation } disabled={ hasUnsupportedBlocks || fullPageClientSideNavigation } onChange={ ( value ) => { setAttributes( { enhancedPagination: ! value, } ); } } /> </> ); }