Make WordPress Core

Opened 4 years ago

Closed 4 years ago

Last modified 4 years ago

#50706 closed defect (bug) (wontfix)

Block Editor: Apply allowed_block_types filter to registered blocks

Reported by: bernhard-reiter's profile Bernhard Reiter Owned by: youknowriad's profile youknowriad
Milestone: Priority: normal
Severity: normal Version:
Component: Editor Keywords: has-patch
Focuses: Cc:

Description

The `allowed_block_types` hook filters a list of blocks. Alternatively, it's possible to pass a bool to indicate that either all blocks are allowed (true), or none of them are (false).

It's currently applied in lib/edit-form-blocks.php to a default value of true -- meaning all blocks are allowed.

However, this means that the filter can only really be used for an allowlist, but not for a denylist: Since we don't really have access to the full list of available blocks from the filter (but just that true bool), we cannot choose to remove a set of blocks from that list.

I'm thus suggesting to pass the full list of registered blocks to the filter as the default value instead.

Change History (19)

This ticket was mentioned in PR #419 on WordPress/wordpress-develop by ockham.


4 years ago
#1

  • Keywords has-patch added

The `allowed_block_types` hook filters a list of blocks. Alternatively, it's possible to pass a bool to indicate that either all blocks are allowed (true), or none of them are (false).

It's currently applied in lib/edit-form-blocks.php to a default value of true -- meaning all blocks are allowed.

However, this means that the filter can only really be used for an allowlist, but not for a denylist: Since we don't really have access to the full list of available blocks from the filter (but just that true bool), we cannot choose to remove a set of blocks from that list.

I'm thus suggesting to pass the full list of registered blocks to the filter as the default value instead.

Trac ticket: https://core.trac.wordpress.org/ticket/50706

#3 @SergeyBiryukov
4 years ago

  • Component changed from General to Editor

ockham commented on PR #419:


4 years ago
#4

cc/ @TimothyBJacobs @youknowriad

TimothyBJacobs commented on PR #419:


4 years ago
#5

Makes sense to me!

ockham commented on PR #419:


4 years ago
#6

No objections from me either but curious about backward compatibility implications.
it also seems we'd have to wait for trunk to target 5.6 to land this.

I _think_ this should be mostly backward compatible, since the hook always accepted either an array of block names, or a bool, so filters attached to the hook would have to check with which of either they were dealing. In practice, they couldn't count on getting an array from which they could remove something, so the filter was only used for allow lists rather than deny lists. (As e.g. the docs show.) So I think we're adding functionality without really impacting existing usage.

Furthermore, the filter is applied right before the $settings var is passed to the client, so all server-side block registrations can be expected to have happened by this time.

LMK if you're thinking of a scenario that I'm missing :thinking:

#7 @youknowriad
4 years ago

  • Keywords commit added
  • Milestone changed from Awaiting Review to 5.6

#8 @youknowriad
4 years ago

  • Owner set to youknowriad
  • Status changed from new to accepted

ockham commented on PR #419:


4 years ago
#9

Ping @TimothyBJacobs and @youknowriad -- Are we cool to merge this? :smile:

youknowriad commented on PR #419:


4 years ago
#10

I've been thinking more here and I think we should not move forward with this. The reason being that all blocks are not registered on the server, so as implemented here, it means all the blocks registered on the frontend are not allowed by default.

vindl commented on PR #419:


4 years ago
#11

@ockham sounds like we should close out this PR?

This ticket was mentioned in Slack in #core by helen. View the logs.


4 years ago

#13 @helen
4 years ago

  • Keywords commit removed

Changing keywords here just for tracking - @youknowriad please close if not moving in this direction.

#14 @helen
4 years ago

  • Milestone 5.6 deleted
  • Resolution set to wontfix
  • Status changed from accepted to closed

ockham commented on PR #419:


4 years ago
#15

I've been thinking more here and I think we should not move forward with this. The reason being that all blocks are not registered on the server, so as implemented here, it means all the blocks registered on the frontend are not allowed by default.

@youknowriad That makes sense, but it also limits the potential use cases of the server-side filter significantly: It can basically never be used as a denylist. IMO, this raises the question of the general usefulness of this filter -- since there are also client-side mechanisms to _both_ register or unregister a block. Should we:

  1. prescribe that blocks _must_ be registered on the server side?
  2. deprecate the allowed_block_types hook?

TimothyBJacobs commented on PR #419:


4 years ago
#16

Yeah the only times I've been able to use allowed_block_types is when there are a very specific set of blocks allowed which is rarely what you want. Maybe add a disabled_block_types filter?

ockham commented on PR #419:


4 years ago
#17

Yeah the only times I've been able to use allowed_block_types is when there are a very specific set of blocks allowed which is rarely what you want. Maybe add a disabled_block_types filter?

Yeah, that could work :thinking: It might not perfectly cover cases where e.g. you'd like to remove all blocks in a certain namespace (rather than listing them explicitly, because e.g. they might come from a plugin that has added more blocks in more recent versions), but I guess it's a start...

TimothyBJacobs commented on PR #419:


4 years ago
#18

We could support including a namespace in the list, so both my-plugin and other-plugin/block.

hellofromtonya commented on PR #419:


4 years ago
#19

Closing this PR as the associate Trac ticket https://core.trac.wordpress.org/ticket/50706 was closed 7 weeks ago.

If any maintainer or committer feels this ticket and PR should be reopened, please update accordingly.

Note: See TracTickets for help on using tickets.