@wordpress/block-library
Version:
Block library for the WordPress editor.
42 lines (39 loc) • 950 B
JavaScript
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import { RichText, useBlockProps } from '@wordpress/block-editor';
import { createBlock, getDefaultBlockName } from '@wordpress/blocks';
export default function PreformattedEdit( {
attributes,
mergeBlocks,
setAttributes,
onRemove,
insertBlocksAfter,
style,
} ) {
const { content } = attributes;
const blockProps = useBlockProps( { style } );
return (
<RichText
tagName="pre"
identifier="content"
preserveWhiteSpace
value={ content }
onChange={ ( nextContent ) => {
setAttributes( {
content: nextContent,
} );
} }
onRemove={ onRemove }
aria-label={ __( 'Preformatted text' ) }
placeholder={ __( 'Write preformatted text…' ) }
onMerge={ mergeBlocks }
{ ...blockProps }
__unstablePastePlainText
__unstableOnSplitAtDoubleLineEnd={ () =>
insertBlocksAfter( createBlock( getDefaultBlockName() ) )
}
/>
);
}