UNPKG

@wordpress/block-library

Version:
37 lines (33 loc) 867 B
import { ToggleControl } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; import { useUnsupportedBlocks } from '../../utils'; export default function EnhancedPaginationControl( { enhancedPagination, setAttributes, clientId, } ) { const hasUnsupportedBlocks = useUnsupportedBlocks( clientId ); let help = __( 'Reload the full page—instead of just the posts list—when visitors navigate between pages.' ); if ( hasUnsupportedBlocks ) { help = __( 'Enhancement disabled because there are non-compatible blocks inside the Query block.' ); } return ( <> <ToggleControl label={ __( 'Reload full page' ) } help={ help } checked={ ! enhancedPagination } disabled={ hasUnsupportedBlocks } onChange={ ( value ) => { setAttributes( { enhancedPagination: ! value, } ); } } /> </> ); }