UNPKG

@wordpress/block-library

Version:
51 lines (49 loc) 1.22 kB
/** * WordPress dependencies */ import { InspectorControls, RichText, useBlockProps, } from '@wordpress/block-editor'; import { ToggleControl, PanelBody } from '@wordpress/components'; import { createBlock, getDefaultBlockName } from '@wordpress/blocks'; import { __ } from '@wordpress/i18n'; export default function ReadMore( { attributes: { content, linkTarget }, setAttributes, insertBlocksAfter, } ) { const blockProps = useBlockProps(); return ( <> <InspectorControls> <PanelBody title={ __( 'Link settings' ) }> <ToggleControl label={ __( 'Open in new tab' ) } onChange={ ( value ) => setAttributes( { linkTarget: value ? '_blank' : '_self', } ) } checked={ linkTarget === '_blank' } /> </PanelBody> </InspectorControls> <RichText tagName="a" aria-label={ __( '“Read morelink text' ) } placeholder={ __( 'Read more' ) } value={ content } onChange={ ( newValue ) => setAttributes( { content: newValue } ) } __unstableOnSplitAtEnd={ () => insertBlocksAfter( createBlock( getDefaultBlockName() ) ) } withoutInteractiveFormatting={ true } { ...blockProps } /> </> ); }