whoami7 - Manager
:
/
home
/
rattkxnv
/
byattorney.com
/
wp-content
/
plugins
/
generateblocks
/
src
/
blocks
/
grid
/
Upload File:
files >> /home/rattkxnv/byattorney.com/wp-content/plugins/generateblocks/src/blocks/grid/deprecated.js
/** * External dependencies */ import classnames from 'classnames'; import blockAttributes from './attributes'; import { applyFilters, } from '@wordpress/hooks'; import { InnerBlocks, } from '@wordpress/block-editor'; import { getBlockAttributes } from '../../block-context'; import gridContext from '../../block-context/grid'; const allAttributes = Object.assign( {}, getBlockAttributes( blockAttributes, gridContext, generateBlocksDefaults.gridContainer ), ); const deprecated = [ // v1 of container block. Deprecated the gb-grid-column wrapper in save component. { attributes: allAttributes, supports: { anchor: false, className: false, customClassName: false, }, migrate( attributes ) { const oldClasses = attributes.cssClasses ? attributes.cssClasses : attributes.className; const oldAnchor = attributes.elementId ? attributes.elementId : attributes.anchor; return { ...attributes, className: oldClasses, anchor: oldAnchor, cssClasses: '', elementId: '', }; }, save( { attributes } ) { const { uniqueId, elementId, cssClasses, } = attributes; let htmlAttributes = { id: !! elementId ? elementId : undefined, className: classnames( { 'gb-grid-wrapper': true, [ `gb-grid-wrapper-${ uniqueId }` ]: true, [ `${ cssClasses }` ]: '' !== cssClasses, } ), }; htmlAttributes = applyFilters( 'generateblocks.frontend.htmlAttributes', htmlAttributes, 'generateblocks/grid', attributes ); return ( <div { ...htmlAttributes } > <InnerBlocks.Content /> </div> ); }, }, ]; export default deprecated;
Copyright ©2021 || Defacer Indonesia