File size: 1,430 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
/* global wpcomGutenberg */
import { RichTextToolbarButton } from '@wordpress/block-editor';
import { compose, ifCondition } from '@wordpress/compose';
import { withSelect, withDispatch } from '@wordpress/data';
import { registerFormatType } from '@wordpress/rich-text';
import { get } from 'lodash';
const RichTextJustifyButton = ( { blockId, isBlockJustified, updateBlockAttributes } ) => {
const onToggle = () =>
updateBlockAttributes( blockId, { align: isBlockJustified ? null : 'justify' } );
return (
<RichTextToolbarButton
icon="editor-justify"
title={ wpcomGutenberg.richTextToolbar.justify }
onClick={ onToggle }
isActive={ isBlockJustified }
/>
);
};
const ConnectedRichTextJustifyButton = compose(
withSelect( ( wpSelect ) => {
const selectedBlock = wpSelect( 'core/block-editor' ).getSelectedBlock();
if ( ! selectedBlock ) {
return {};
}
return {
blockId: selectedBlock.clientId,
blockName: selectedBlock.name,
isBlockJustified: 'justify' === get( selectedBlock, 'attributes.align' ),
};
} ),
withDispatch( ( dispatch ) => ( {
updateBlockAttributes: dispatch( 'core/editor' ).updateBlockAttributes,
} ) ),
ifCondition( ( props ) => 'core/paragraph' === props.blockName )
)( RichTextJustifyButton );
registerFormatType( 'wpcom/justify', {
title: wpcomGutenberg.richTextToolbar.justify,
tagName: 'p',
className: null,
edit: ConnectedRichTextJustifyButton,
} );
|