/** * WordPress dependencies */ import { __ } from '@wordpress/i18n'; import { useContext } from '@wordpress/element'; import { SelectControl } from '@wordpress/components'; import { Stack } from '@wordpress/ui'; /** * Internal dependencies */ import type { EditorOptions } from '../../../types'; import { AdminContext } from '../../index'; import { useSearchVisibility } from '../index'; import ItemHelp from '../components/item-help'; export default function AutoSurround() { const { editorOptions, setEditorOptions } = useContext( AdminContext ); const title = __( 'Automatically surround selection with quotes or brackets', 'custom-html-block-extension' ); const isVisible = useSearchVisibility( title ); if ( ! isVisible ) { return null; } const items = [ { label: __( 'Quotes and brackets', 'custom-html-block-extension' ), value: 'languageDefined', isDefault: true, image: 'editor-options/auto-surround_1.gif', }, { label: __( 'Quotes only', 'custom-html-block-extension' ), value: 'quotes', image: 'editor-options/auto-surround_2.gif', }, { label: __( 'Brackets only', 'custom-html-block-extension' ), value: 'brackets', image: 'editor-options/auto-surround_3.gif', }, { label: __( 'Never', 'custom-html-block-extension' ), value: 'never', image: 'editor-options/auto-surround_4.gif', }, ] as const; const onChange = ( value: EditorOptions[ 'autoSurround' ] ) => { setEditorOptions( { ...editorOptions, autoSurround: value, } ); }; return ( __next40pxDefaultSize label={ title } value={ editorOptions.autoSurround } options={ items.map( ( { label, value } ) => ( { label, value } ) ) } onChange={ onChange } /> ); }