Plugin Tabs noticias
This commit is contained in:
@@ -0,0 +1,146 @@
|
||||
import * as areoi from '../_components/Core.js';
|
||||
import { useSelect, useDispatch } from '@wordpress/data';
|
||||
import { useEffect } from '@wordpress/element';
|
||||
import meta from './block.json';
|
||||
|
||||
const ALLOWED_BLOCKS = [ 'areoi/div' ];
|
||||
const BLOCKS_TEMPLATE = [
|
||||
[
|
||||
'areoi/nav-and-tab', {
|
||||
style: 'nav-tabs'
|
||||
}, [
|
||||
['areoi/nav-and-tab-item', {
|
||||
url: '#tab-1',
|
||||
text: 'Tab 1',
|
||||
active: true
|
||||
} ],
|
||||
['areoi/nav-and-tab-item', {
|
||||
url: '#tab-2',
|
||||
text: 'Tab 2',
|
||||
active: false
|
||||
} ]
|
||||
]
|
||||
],
|
||||
['areoi/div', {
|
||||
anchor: 'tab-1'
|
||||
}, [
|
||||
['core/paragraph', {
|
||||
content: 'Tab 1 Content'
|
||||
} ]
|
||||
] ],
|
||||
['areoi/div', {
|
||||
anchor: 'tab-2'
|
||||
}, [
|
||||
['core/paragraph', {
|
||||
content: 'Tab 2 Content'
|
||||
} ]
|
||||
] ]
|
||||
];
|
||||
|
||||
const blockIcon = <svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000"><path d="M0 0h24v24H0V0zm0 0h24v24H0V0z" fill="none"/><path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10z"/></svg>;
|
||||
|
||||
areoi.blocks.registerBlockType( meta, {
|
||||
icon: blockIcon,
|
||||
edit: props => {
|
||||
const {
|
||||
attributes,
|
||||
setAttributes,
|
||||
clientId
|
||||
} = props;
|
||||
|
||||
const { block_id } = attributes;
|
||||
if ( !block_id ) {
|
||||
setAttributes( { block_id: clientId } );
|
||||
}
|
||||
|
||||
const { insertBlock, updateBlockAttributes } = useDispatch('core/block-editor');
|
||||
const blocks = useSelect((select) =>
|
||||
select('core/block-editor').getBlocks(clientId)
|
||||
);
|
||||
|
||||
useEffect(() => {
|
||||
const navAndTabBlock = blocks.find(
|
||||
(block) => block.name === 'areoi/nav-and-tab'
|
||||
);
|
||||
|
||||
if (navAndTabBlock) {
|
||||
const navItems = navAndTabBlock.innerBlocks;
|
||||
|
||||
navItems.forEach((navItem, index) => {
|
||||
// Check if the navItem has a URL
|
||||
if (!navItem.attributes.url) {
|
||||
const uniqueId = `tab-${Date.now()}-${index}`;
|
||||
const generatedUrl = `#${uniqueId}`;
|
||||
|
||||
// Update the URL for the navItem
|
||||
updateBlockAttributes(navItem.clientId, { url: generatedUrl });
|
||||
|
||||
// Check if a corresponding div exists
|
||||
const divExists = blocks.some(
|
||||
(block) =>
|
||||
block.name === 'areoi/div' &&
|
||||
block.attributes.anchor === uniqueId
|
||||
);
|
||||
|
||||
// Add a new div block if it doesn't exist
|
||||
if (!divExists) {
|
||||
insertBlock(
|
||||
wp.blocks.createBlock('areoi/div', {
|
||||
anchor: uniqueId,
|
||||
}),
|
||||
undefined,
|
||||
clientId
|
||||
);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}, [blocks]);
|
||||
|
||||
const classes = [
|
||||
'tabs',
|
||||
];
|
||||
|
||||
const blockProps = areoi.editor.useBlockProps( {
|
||||
className: areoi.helper.GetClassName( classes ),
|
||||
style: { cssText: areoi.helper.GetStyles( attributes ) }
|
||||
} );
|
||||
|
||||
function onChange( key, value ) {
|
||||
setAttributes( { [key]: value } );
|
||||
}
|
||||
|
||||
const tabDevice = ( tab ) => {
|
||||
var append = ( tab.name == 'xs' ? '' : '-' + tab.name );
|
||||
|
||||
return (
|
||||
<>
|
||||
{ areoi.DisplayVisibility( areoi, attributes, onChange, tab ) }
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
return (
|
||||
<>
|
||||
{ areoi.DisplayPreview( areoi, attributes, onChange, 'tabs' ) }
|
||||
|
||||
{ !attributes.preview &&
|
||||
<div { ...blockProps } data-anchor={ attributes.anchor ? ' : #' + attributes.anchor : '' }>
|
||||
<areoi.editor.InspectorControls key="setting">
|
||||
|
||||
{ areoi.ResponsiveTabPanel( tabDevice, meta, props ) }
|
||||
|
||||
</areoi.editor.InspectorControls>
|
||||
|
||||
<areoi.editor.InnerBlocks template={ BLOCKS_TEMPLATE } allowedBlocks={ ALLOWED_BLOCKS } />
|
||||
</div>
|
||||
}
|
||||
</>
|
||||
);
|
||||
},
|
||||
save: () => {
|
||||
return (
|
||||
<areoi.editor.InnerBlocks.Content/>
|
||||
);
|
||||
},
|
||||
} );
|
||||
@@ -0,0 +1,62 @@
|
||||
{
|
||||
"apiVersion": 2,
|
||||
"name": "areoi/tabs",
|
||||
"title": "Tabs",
|
||||
"parent": null,
|
||||
"category": "areoi-components",
|
||||
"description": "Create tabbed content that will show / hide based on the relevant tab being clicked.",
|
||||
"textdomain": "default",
|
||||
"keywords": [ "areoi", "bootstrap", "layout" ],
|
||||
"example": {
|
||||
"attributes": {
|
||||
"preview": true
|
||||
}
|
||||
},
|
||||
"attributes": {
|
||||
"preview": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"anchor": {
|
||||
"type": "string",
|
||||
"default": false
|
||||
},
|
||||
"block_id": {
|
||||
"type": "string",
|
||||
"default": null
|
||||
},
|
||||
|
||||
"hide_xs": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"hide_sm": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"hide_md": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"hide_lg": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"hide_xl": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
},
|
||||
"hide_xxl": {
|
||||
"type": "boolean",
|
||||
"default": false
|
||||
}
|
||||
},
|
||||
"supports": {
|
||||
"anchor": true,
|
||||
"align": false,
|
||||
"html": false
|
||||
},
|
||||
"editorScript": "areoi-blocks",
|
||||
"editorStyle": "file:./index.css",
|
||||
"style": "file:../../build/style.css"
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 4.8 KiB |
@@ -0,0 +1,6 @@
|
||||
.block-editor-block-list__layout.is-root-container .wp-block-areoi-tabs {
|
||||
min-height: 40px;
|
||||
border: 1px dashed #ccc;
|
||||
display: block !important;
|
||||
padding: 20px;
|
||||
}
|
||||
Reference in New Issue
Block a user