@wordpress/blocks
Version:
Block API for WordPress.
124 lines (108 loc) • 3.51 kB
JavaScript
/**
* External dependencies
*/
import { every, map, get, mapValues, isArray } from 'lodash';
/**
* WordPress dependencies
*/
import { renderToString } from '@wordpress/element';
/**
* Internal dependencies
*/
import { convertLegacyBlocks } from './parser';
import { createBlock } from './factory';
import { getBlockType } from './registration';
/**
* Checks whether a list of blocks matches a template by comparing the block names.
*
* @param {Array} blocks Block list.
* @param {Array} template Block template.
*
* @return {boolean} Whether the list of blocks matches a templates
*/
export function doBlocksMatchTemplate( blocks = [], template = [] ) {
return (
blocks.length === template.length &&
every( template, ( [ name, , innerBlocksTemplate ], index ) => {
const block = blocks[ index ];
return (
name === block.name &&
doBlocksMatchTemplate( block.innerBlocks, innerBlocksTemplate )
);
} )
);
}
/**
* Synchronize a block list with a block template.
*
* Synchronizing a block list with a block template means that we loop over the blocks
* keep the block as is if it matches the block at the same position in the template
* (If it has the same name) and if doesn't match, we create a new block based on the template.
* Extra blocks not present in the template are removed.
*
* @param {Array} blocks Block list.
* @param {Array} template Block template.
*
* @return {Array} Updated Block list.
*/
export function synchronizeBlocksWithTemplate( blocks = [], template ) {
// If no template is provided, return blocks unmodified.
if ( ! template ) {
return blocks;
}
return map(
template,
( [ name, attributes, innerBlocksTemplate ], index ) => {
const block = blocks[ index ];
if ( block && block.name === name ) {
const innerBlocks = synchronizeBlocksWithTemplate(
block.innerBlocks,
innerBlocksTemplate
);
return { ...block, innerBlocks };
}
// To support old templates that were using the "children" format
// for the attributes using "html" strings now, we normalize the template attributes
// before creating the blocks.
const blockType = getBlockType( name );
const isHTMLAttribute = ( attributeDefinition ) =>
get( attributeDefinition, [ 'source' ] ) === 'html';
const isQueryAttribute = ( attributeDefinition ) =>
get( attributeDefinition, [ 'source' ] ) === 'query';
const normalizeAttributes = ( schema, values ) => {
return mapValues( values, ( value, key ) => {
return normalizeAttribute( schema[ key ], value );
} );
};
const normalizeAttribute = ( definition, value ) => {
if ( isHTMLAttribute( definition ) && isArray( value ) ) {
// Introduce a deprecated call at this point
// When we're confident that "children" format should be removed from the templates.
return renderToString( value );
}
if ( isQueryAttribute( definition ) && value ) {
return value.map( ( subValues ) => {
return normalizeAttributes(
definition.query,
subValues
);
} );
}
return value;
};
const normalizedAttributes = normalizeAttributes(
get( blockType, [ 'attributes' ], {} ),
attributes
);
const {
name: blockName,
attributes: blockAttributes,
} = convertLegacyBlocks( name, normalizedAttributes );
return createBlock(
blockName,
blockAttributes,
synchronizeBlocksWithTemplate( [], innerBlocksTemplate )
);
}
);
}