/** * WordPress dependencies */ import { __, sprintf } from '@wordpress/i18n'; import { useContext } from '@wordpress/element'; import { RangeControl } from '@wordpress/components'; import { Stack } from '@wordpress/ui'; /** * Internal dependencies */ import { AdminContext } from '../../index'; import { useSearchVisibility } from '../index'; import ItemHelp from '../components/item-help'; import { toNumber } from '../../../lib/helper'; export default function CursorSurroundingLines() { const { editorOptions, setEditorOptions } = useContext( AdminContext ); const title = __( 'Number of lines to keep before and after the cursor', 'custom-html-block-extension' ); const isVisible = useSearchVisibility( title ); if ( ! isVisible ) { return null; } const onChange = ( value: number | undefined ) => { setEditorOptions( { ...editorOptions, cursorSurroundingLines: value ? toNumber( value, 0, 20 ) : 0, } ); }; return ( ); }