@wordpress/blocks
Version:
Block API for WordPress.
34 lines (32 loc) • 1.3 kB
JavaScript
/**
* Internal dependencies
*/
import { fixCustomClassname } from './fix-custom-classname';
import { fixAriaLabel } from './fix-aria-label';
/**
* Attempts to fix block invalidation by applying build-in validation fixes
* like moving all extra classNames to the className attribute.
*
* @param {WPBlock} block block object.
* @param {import('../registration').WPBlockType} blockType Block type. This is normalize not necessary and
* can be inferred from the block name,
* but it's here for performance reasons.
*
* @return {WPBlock} Fixed block object
*/
export function applyBuiltInValidationFixes(block, blockType) {
const {
attributes,
originalContent
} = block;
let updatedBlockAttributes = attributes;
// Fix block invalidation for className attribute.
updatedBlockAttributes = fixCustomClassname(attributes, blockType, originalContent);
// Fix block invalidation for ariaLabel attribute.
updatedBlockAttributes = fixAriaLabel(updatedBlockAttributes, blockType, originalContent);
return {
...block,
attributes: updatedBlockAttributes
};
}
//# sourceMappingURL=apply-built-in-validation-fixes.js.map