@wordpress/block-library
Version:
Block library for the WordPress editor.
65 lines (57 loc) • 1.24 kB
JavaScript
/**
* WordPress dependencies
*/
import { __ } from '@wordpress/i18n';
import { button as icon } from '@wordpress/icons';
import { privateApis as blocksPrivateApis } from '@wordpress/blocks';
/**
* Internal dependencies
*/
import initBlock from '../utils/init-block';
import deprecated from './deprecated';
import edit from './edit';
import metadata from './block.json';
import save from './save';
import { unlock } from '../lock-unlock';
const { fieldsKey, formKey } = unlock( blocksPrivateApis );
const { name } = metadata;
export { metadata, name };
export const settings = {
icon,
example: {
attributes: {
className: 'is-style-fill',
text: __( 'Call to action' ),
},
},
edit,
save,
deprecated,
merge: ( a, { text = '' } ) => ( {
...a,
text: ( a.text || '' ) + text,
} ),
};
if ( window.__experimentalContentOnlyInspectorFields ) {
settings[ fieldsKey ] = [
{
id: 'text',
label: __( 'Content' ),
type: 'richtext',
},
{
id: 'link',
label: __( 'Link' ),
type: 'link',
mapping: {
url: 'url',
rel: 'rel',
linkTarget: 'linkTarget',
},
},
];
settings[ formKey ] = {
fields: [ 'text' ],
};
}
export const init = () => initBlock( { name, metadata, settings } );