@wordpress/editor
Version:
Enhanced block editor for WordPress posts.
36 lines (32 loc) • 978 B
JavaScript
/**
* WordPress dependencies
*/
import { useSelect } from '@wordpress/data';
import { store as coreStore } from '@wordpress/core-data';
/**
* Internal dependencies
*/
import { store as editorStore } from '../../store';
/**
* Renders the children components only if the current post type has taxonomies.
*
* @param {Object} props The component props.
* @param {Element} props.children The children components to render.
*
* @return {Component|null} The rendered children components or null if the current post type has no taxonomies.
*/
export default function PostTaxonomiesCheck( { children } ) {
const hasTaxonomies = useSelect( ( select ) => {
const postType = select( editorStore ).getCurrentPostType();
const taxonomies = select( coreStore ).getTaxonomies( {
per_page: -1,
} );
return taxonomies?.some( ( taxonomy ) =>
taxonomy.types.includes( postType )
);
}, [] );
if ( ! hasTaxonomies ) {
return null;
}
return children;
}