UNPKG

@wordpress/editor

Version:
47 lines (42 loc) 1.36 kB
/** * WordPress dependencies */ import { useSelect } from '@wordpress/data'; import { store as coreStore } from '@wordpress/core-data'; /** * Internal dependencies */ import PostTypeSupportCheck from '../post-type-support-check'; import { store as editorStore } from '../../store'; import { AUTHORS_QUERY } from './constants'; /** * Wrapper component that renders its children only if the post type supports the author. * * @param {Object} props The component props. * @param {React.ReactNode} props.children Children to be rendered. * * @return {React.ReactNode} The component to be rendered. Return `null` if the post type doesn't * supports the author or if there are no authors available. */ export default function PostAuthorCheck( { children } ) { const { hasAssignAuthorAction, hasAuthors } = useSelect( ( select ) => { const post = select( editorStore ).getCurrentPost(); const canAssignAuthor = post?._links?.[ 'wp:action-assign-author' ] ? true : false; return { hasAssignAuthorAction: canAssignAuthor, hasAuthors: canAssignAuthor ? select( coreStore ).getUsers( AUTHORS_QUERY )?.length >= 1 : false, }; }, [] ); if ( ! hasAssignAuthorAction || ! hasAuthors ) { return null; } return ( <PostTypeSupportCheck supportKeys="author"> { children } </PostTypeSupportCheck> ); }