Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow/deny block use based on post-type or template context #41062

Open
boonebgorges opened this issue May 13, 2022 · 7 comments · May be fixed by #41718
Open

Allow/deny block use based on post-type or template context #41062

boonebgorges opened this issue May 13, 2022 · 7 comments · May be fixed by #41718
Labels
Developer Experience Ideas about improving block and theme developer experience [Feature] Block API API that allows to express the block paradigm. [Feature] Site Editor Related to the overarching Site Editor (formerly "full site editing") [Focus] Blocks Adoption For issues that directly impact the ability to adopt features of Gutenberg. [Type] Enhancement A suggestion for improvement.

Comments

@boonebgorges
Copy link
Member

What problem does this address?

It's sometimes desirable to limit blocks to certain post-type contexts (or, in a parallel fashion, to prevent a specific block from being used in a given context). As far as I can see, the current recommendation is to use unregisterBlockType() to unregister a given block based on getCurrentPostType(), etc. See eg #27607.

While the semantics of this technique are not entirely straightforward ("unregister" rather than "hide", or better still, "prevent from showing in this context"), it pretty much works in the post editor. However, it's not workable in the Site Editor. It's possible to fetch the currently edited template using wp.data.select( 'core/edit-site' ).getEditedPostId(), and to unregisterBlockType() based on this. But it's possible to switch the currently-edited template without a page reload, meaning that you'd have to re-registerBlockType(). Moreover, setting up a subscribe() callback for getEditedPostId() to determine the current context is pretty clumsy.

What is your proposed solution?

I propose that, as part of their registration metadata, a block can specify allow or deny contexts. Maybe something like:

allowForPostTypes: [ 'post', 'page', 'my_custom_post_type' ],
allowForTemplates: [ 'archive', 'single', 'page', 'archive-my_custom_post_type', 'single-my_custom_post_type' ],

postTypes would specify the contexts for the post editor, while templates would be for the site editor. Or it might be better to have a single declaration that covers both cases, depending on the overall strategy for merging the editing experience.

Similarly, it might be nice to have deny declarations that work similarly (though of course there are problems with allowing both).

Apologies in advance if this idea's already in circulation - I searched but couldn't find anything.

@Mamaduka Mamaduka added the Developer Experience Ideas about improving block and theme developer experience label May 17, 2022
@gigitux
Copy link
Contributor

gigitux commented Jun 8, 2022

For woocommerce/woocommerce-blocks#5193 we are trying the solution with a subscribe callback. Maybe, could we try to contribute upstream to support these APIs? I guess that could be useful for other plugins too.

@noisysocks
Copy link
Member

When designing the parent attribute in the block schema there was discussion about allowing you to specify post types as well as block types. I could see it working for templates too.

Regarding a deny list, there was a proposal about allowing you to pass an object to parent which lets you control which blocks are explicitly allowed, explicitly denied, and what the default is. Have a look at #5540 (comment).

Maybe can revisit some of this 😀

@annezazu annezazu added the [Focus] Blocks Adoption For issues that directly impact the ability to adopt features of Gutenberg. label Jun 13, 2022
gigitux added a commit to gigitux/gutenberg that referenced this issue Jun 14, 2022
allow block use by post and template type
@gziolo gziolo added the [Feature] Block API API that allows to express the block paradigm. label Feb 3, 2023
@gziolo gziolo mentioned this issue Feb 20, 2023
58 tasks
@gziolo
Copy link
Member

gziolo commented Feb 20, 2023

Regarding a deny list, there was a proposal about allowing you to pass an object to parent which lets you control which blocks are explicitly allowed, explicitly denied, and what the default is. Have a look at #5540 (comment).

Good point. I know about a similar discussion when ancestor field was in development: #37181 (comment). There are more thoughts on how parent and ancestor could intersect with more complex use cases. It could also get extended to deny list.

This issue is related to #46900, which proposes adding a way to register a block only in a specific editor. In some cases, providing a post type would be equivalent to limiting access to the post editor, and providing a template would be equivalent to limiting access to the site/template editor.

@gigitux
Copy link
Contributor

gigitux commented Feb 24, 2023

It would be very interesting to have this setting for the variations too. Regarding the variations, I created an issue about the support for the ancestor/parent #48424

@jordesign jordesign added the [Type] Enhancement A suggestion for improvement. label Sep 12, 2023
@ndiego ndiego removed the [Focus] Blocks Adoption For issues that directly impact the ability to adopt features of Gutenberg. label Nov 17, 2023
@bph
Copy link
Contributor

bph commented Dec 13, 2023

@gigitux @boonebgorges What do you think about the approach to handling this on a post type level, as @mtias suggests in his comment.

We should probably discuss some default_blocks, allow_blocks, disallow_blocks properties in register_post_type instead. Consider post types already allow specifying a template property.

@mikejolley
Copy link
Contributor

mikejolley commented Apr 12, 2024

We have use cases where we need to limit the available blocks within a specific Block Template. allowed_block_types_all is not suitable because it only runs once in the site editor, and there is no context that changes based on the edited template.

Something like this could deregister blocks based on template, but then there is no good way to restore the block types once the user switches to another template or view.

wp_add_inline_script('wp-edit-site', "
    wp.domReady( () => {
      let currentTemplateId;

      wp.data.subscribe(function(){
        const previousTemplateId = currentTemplateId;
        currentTemplateId = wp.data.select( 'core/edit-site' )?.getEditedPostId();

        if ( previousTemplateId === currentTemplateId ) {
          return;
        }

        const allowedBlocks = [
          'core/heading',
          'core/image',
          'core/list',
          'core/paragraph',
        ];

        if ( currentTemplateId === 'mailpoet/mailpoet//email-general' ) {
          wp.blocks.getBlockTypes().forEach( function ( blockType ) {
            if ( allowedBlocks.indexOf( blockType.name ) === -1 ) {
              console.log(blockType.name);
              wp.blocks.unregisterBlockType( blockType.name );
            }
          } );
        }
      });
    } );
    ", 'before');

Ideally we'd like some additional context passed to allowed_block_types_all which gives us the name of the edited template. And this would hopefully get ran every time the user switches views.

@gziolo gziolo added the [Feature] Site Editor Related to the overarching Site Editor (formerly "full site editing") label Apr 14, 2024
@ndiego
Copy link
Member

ndiego commented Jul 15, 2024

Something like this could deregister blocks based on template, but then there is no good way to restore the block types once the user switches to another template or view.

Thanks for this additional context @mikejolley. Dynamically restricting blocks in the Site/Template Editor is definitely more complicated than the Post Editor and we currently lack the tools to do so.

Also, not sure why I removed the "Blocks Adoption" tag in the past 🤦‍♂️, but added it back.

@ndiego ndiego added the [Focus] Blocks Adoption For issues that directly impact the ability to adopt features of Gutenberg. label Jul 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Developer Experience Ideas about improving block and theme developer experience [Feature] Block API API that allows to express the block paradigm. [Feature] Site Editor Related to the overarching Site Editor (formerly "full site editing") [Focus] Blocks Adoption For issues that directly impact the ability to adopt features of Gutenberg. [Type] Enhancement A suggestion for improvement.
Projects
Status: In Progress
Development

Successfully merging a pull request may close this issue.

10 participants