__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/**
* WordPress dependencies
*/
import { __ } from "@wordpress/i18n";
import {
InnerBlocks
} from "@wordpress/block-editor";
import { useSelect } from "@wordpress/data";
import { memo, useEffect } from '@wordpress/element'
import {
BlockProps,
withBlockContext
} from "@essential-blocks/controls";
import defaultAttributes from "./attributes";
const Edit = (props) => {
const { attributes, setAttributes, clientId, context } = props;
const {
tabId,
tabParentId
} = attributes;
// you must declare this variable
const enhancedProps = {
...props,
blockPrefix: 'eb-tab',
rootClass: `eb-guten-block-main-parent-wrapper eb-tab-editor-wrap`,
};
const { blocks } = useSelect((select) => ({
blocks: select("core/block-editor").getBlockOrder(clientId)
}), []);
useEffect(() => {
setAttributes({
tabParentId : context['eb/tabParentId'],
})
}, [context['eb/tabParentId']])
return (
<BlockProps.Edit {...enhancedProps}>
<div
className={`eb-tab-wrapper eb-tab-wrapper-editor`}
data-tab-id={tabId}
data-tab-parent-id={tabParentId}
>
<div className="eb-tab-inner">
<InnerBlocks
orientation={"vertical"}
templateLock={
// templateLock ? templateLock :
false
}
renderAppender={
blocks.length > 0
? undefined
: InnerBlocks.ButtonBlockAppender
}
/>
</div>
</div>
</BlockProps.Edit>
);
}
export default memo(withBlockContext(defaultAttributes)(Edit))
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| constants | Folder | 0750 |
|
|
| attributes.js | File | 228 B | 0640 |
|
| edit.js | File | 1.87 KB | 0640 |
|
| icon.svg | File | 2.69 KB | 0640 |
|
| index.js | File | 544 B | 0640 |
|
| save.js | File | 544 B | 0640 |
|