File "BlockControls.js"

Full path: /home/webcknlt/admissiontell.com/wp-content/plugins/generateblocks/src/blocks/button-container/components/BlockControls.js
File size: 3.1 B (3.1 KB bytes)
MIME-type: text/x-java
Charset: utf-8

Download   Open   Edit   Advanced Editor &nnbsp; Back

import { ToolbarButton, ToolbarGroup } from '@wordpress/components';
import { __ } from '@wordpress/i18n';
import { cloneBlock, createBlock } from '@wordpress/blocks';
import { AlignmentToolbar, BlockControls } from '@wordpress/block-editor';
import { useDispatch, useSelect } from '@wordpress/data';
import { plus, alignLeft, alignRight, alignCenter } from '@wordpress/icons';
import { applyFilters } from '@wordpress/hooks';

const ALIGNMENT_CONTROLS = [
	{
		icon: alignLeft,
		title: __( 'Align buttons left', 'generateblocks' ),
		align: 'left',
	},
	{
		icon: alignCenter,
		title: __( 'Align buttons center', 'generateblocks' ),
		align: 'center',
	},
	{
		icon: alignRight,
		title: __( 'Align buttons right', 'generateblocks' ),
		align: 'right',
	},
];

export default ( props ) => {
	const {
		attributes,
		setAttributes,
		clientId,
		deviceType,
	} = props;

	const {
		alignment,
		alignmentTablet,
		alignmentMobile,
		isPagination,
	} = attributes;

	const { insertBlocks } = useDispatch( 'core/block-editor' );
	const { getBlocksByClientId } = useSelect( ( select ) => select( 'core/block-editor' ), [] );
	const showAppender = applyFilters( 'generateblocks.editor.showButtonAppender', true, props );

	return (
		<BlockControls>

			{ ! isPagination &&
				<ToolbarGroup>
					{ !! showAppender &&
						<ToolbarButton
							className="gblocks-add-new-button"
							icon={ plus }
							label={ __( 'Add Button', 'generateblocks' ) }
							onClick={ () => {
								const thisBlock = getBlocksByClientId( clientId )[ 0 ];

								if ( thisBlock ) {
									const childBlocks = thisBlock.innerBlocks;
									const keys = Object.keys( childBlocks );
									const lastKey = keys[ keys.length - 1 ];

									if ( typeof childBlocks[ lastKey ] !== 'undefined' ) {
										const blockToCopyId = childBlocks[ lastKey ].clientId;

										if ( blockToCopyId ) {
											const blockToCopy = getBlocksByClientId( blockToCopyId )[ 0 ];

											const clonedBlock = cloneBlock(
												blockToCopy,
												{
													uniqueId: '',
												}
											);

											insertBlocks( clonedBlock, undefined, clientId );
										}
									} else if ( 0 === childBlocks.length ) {
										insertBlocks( createBlock( 'generateblocks/button', generateBlocksStyling.button ), undefined, clientId );
									}
								}
							} }
							showTooltip
						/>
					}
				</ToolbarGroup>
			}

			{ 'Desktop' === deviceType && (
				<AlignmentToolbar
					value={ alignment }
					alignmentControls={ ALIGNMENT_CONTROLS }
					onChange={ ( nextAlign ) => {
						setAttributes( { alignment: nextAlign } );
					} }
				/>
			) }

			{ 'Tablet' === deviceType && (
				<AlignmentToolbar
					value={ alignmentTablet }
					alignmentControls={ ALIGNMENT_CONTROLS }
					onChange={ ( value ) => {
						setAttributes( { alignmentTablet: value } );
					} }
				/>
			) }

			{ 'Mobile' === deviceType && (
				<AlignmentToolbar
					value={ alignmentMobile }
					alignmentControls={ ALIGNMENT_CONTROLS }
					onChange={ ( value ) => {
						setAttributes( { alignmentMobile: value } );
					} }
				/>
			) }
		</BlockControls>
	);
};