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

(Optionally) rendering classic navigation data source in Navigation B… #30852

Closed
wants to merge 13 commits into from

Conversation

jffng
Copy link
Contributor

@jffng jffng commented Apr 14, 2021

Description

Background
With FSE coming in 5.8, we'd like to build production themes that leverage aspects of block-based theming that will be available in core — incorporating them with existing customization behaviors.

This is related to the concept of universal themes came up in this comment. There are a few uses cases for universal themes outlined in the comment.

The use case this PR explores is switching between navigation editing modes — classic / customizer-based to FSE.

Problem
The new way to create + edit a navigation is different and not synchronized to the old way. Users will continue to edit their menus using the customizer. Themes don't have a way to keep the contents of those "classic" menus in sync with a navigation block.

There may also be circumstances where sites need to remain on a classic saved menu for some time even if the rest of the site is FSE (because they might have some plugins interacting with nav, or because they want to restrict what users can add to the navigation).

Use Case
As a user, I expect the ability to edit my menu using the way I'm familiar with (the customizer) indefinitely.

As a theme developer, I'd like to be able to render those menus using the navigation block. Bonus if updating my theme to be fully block-based in the future won't break or cause the nav to disappear for my users.

Proposal
Add an attribute to the navigation block that specifies a theme nav location — pulling its menu items from this location and rendering them using the block (leveraging add_theme_support( 'block-nav-menus' )).

The FSE side of this proposal is not present in this PR, I think it could benefit from some design exploration. The PR also adds some functionality to the navigation block — when the nav block sets its location attribute, it locks the block's features to only allow the menu location to be changed. The user would be presented with an option to "Convert to Blocks" which would do what the existing "import from existing menu" functionality does today, and a link to edit the classic nav in the respective UI (customizer or nav editor). Once you "Convert to Blocks", the connection between classic and nav block is broken, and the menu is edited / saved using the new navigation modality.

This was edited Apr 21, here is the original PR description
This PR makes it possible to create a navigation block that pulls its menu items from a navigation area defined by the theme, by setting an attribute — "source" — on the navigation block.

This would be of great help to transition from classic to block templates — a simple way to render the content of a classic menu using the navigation block.

How has this been tested?

  • Activate a theme that registers a navigation menu menu and create a menu.
  • Add the following block markup to a post or page, where "source" is the $location (slug) of your navigation menu.
<!-- wp:navigation {"orientation":"horizontal","itemsJustification":"right","source":"primary"} -->
  • Verify the menu appears with the items from the corresponding navigation area.

Tested in Automattic/themes#3658

Screenshots

Types of changes

  • New feature

Checklist:

  • My code is tested.
  • My code follows the WordPress code style.
  • My code follows the accessibility standards.
  • I've tested my changes with keyboard and screen readers.
  • My code has proper inline documentation.
  • I've included developer documentation if appropriate.
  • I've updated all React Native files affected by any refactorings/renamings in this PR (please manually search all *.native.js files for terms that need renaming or removal).

@jffng jffng marked this pull request as ready for review April 16, 2021 15:53
@jffng jffng added [Block] Navigation Affects the Navigation Block [Feature] Themes Questions or issues with incorporating or styling blocks in a theme. labels Apr 16, 2021
@carolinan
Copy link
Contributor

carolinan commented Apr 19, 2021

I am very torn about this because while I think this is pretty smart, I feel that there is too much focus on temporary solutions and that this is doing theme authors a disservice.

This only works if you also have access to the previous navigation menu in the admin area where you could assign menus to theme locations, and this menu is currently hidden, even with the PR applied.

I also think that the term theme location should be used over "source".

The classic way of presenting menus is something we should put behind us not least because of the masses of broken inaccessible menus and menu walkers that theme authors use today.

@MaggieCabrera
Copy link
Contributor

The classic way of presenting menus is something we should put behind us not least because of the masses of broken inaccessible menus and menu walkers that theme authors use today.

💯 with you on this. But the issue is, we need to provide a solution from the old way to the new way. You are right that a block theme using this will not be able to update the menu with the old navigation menu, but what about a classic theme that tried to implement the navigation block using do_blocks?

@carolinan
Copy link
Contributor

carolinan commented Apr 19, 2021

Then they could use the block with the block settings, for example a reusable block, not the old menu. They are not using the block if the output is using the classic function, the themes existing JS and CSS.

@carolinan
Copy link
Contributor

carolinan commented Apr 19, 2021

And if this is not a version of WordPress where the edit template link in the editor is also disabled, then users have access to changing the navigation block directly and using the "use existing (menu)" option.
I feel like the full context or goal is not provided.

@scruffian
Copy link
Contributor

Some more context:

Universal themes would be themes that can be loaded in a classic context or block editor context without a problem. (source)

To make universal themes a reality we need a way to be able to edit navigation from the Customizer as well as from the site editor. We could move the navigation to a template part and have the user edit their navigation in a template part, but for users who are used to using the Customizer it feels like a big ask to get them to edit their menus in a whole new place.

Note: with add_theme_support( 'block-nav-menus' ); enabled, the menu can be output using the same markup as the block.

@mtias @youknowriad I'd love to get your thoughts on this.

@MaggieCabrera
Copy link
Contributor

Besides the Universal themes angle, I think it's particularly helpful for a user in a world where both classic and block themes will be at their disposal that they don't have to change their menu every single time they change themes if they are looking for a new one. This tool would help with that a lot and it's not imposing that you use "the old way" of editing a menu, it's just mapping what was already there so the user doesn't have to do it manually if they migrate from a classic theme to a block one.

@talldan
Copy link
Contributor

talldan commented Apr 21, 2021

This would be of great help to transition from classic to block templates — a simple way to render the content of a classic menu using the navigation block.

It'd be good to have a more thorough description of the problem this solves, as it'll help others join the conversation.

The nav block does already have an option to pull in the content from a classic menu, so is the issue more around the editing interface for the block?

@scruffian
Copy link
Contributor

It'd be good to have a more thorough description of the problem this solves, as it'll help others join the conversation.
The nav block does already have an option to pull in the content from a classic menu, so is the issue more around the editing interface for the block?

The aim for universal themes is to be able to use different UIs to edit the same content. For example with navigation, it would be great to be able to edit the navigation in both the Customizer and the Site Editor.

@carolinan
Copy link
Contributor

carolinan commented Apr 21, 2021

But is there any actual user testing that supports either way?
Do users find it easier to have two interfaces, or one?
If one, then which one?

@priethor
Copy link
Contributor

Do users find it easier to have two interfaces, or one?
If one, then which one?

The goal is for universal themes to work in either of those interfaces but not both at the same time, as that could be quite confusing indeed. Block themes would allow editing certain content through the Template Editors (the Site Editor or any future iteration over it as seen in #29630) while classic themes would allow editing the same content through the Customizer, similarly to how the Navigation is edited as a block in the Site Editor when using block themes or through the Navigation Editor if a classic theme is active, but both interfaces can't be used at the same time.

Another benefit of these universal themes is they would work with older WordPress versions that don't support block themes.

@talldan
Copy link
Contributor

talldan commented Apr 21, 2021

It sounds like a challenge would be how WordPress migrates the classic content over to FSE content when a user upgrades their WP version.

This change proposes using classic menu data to drive the navigation block, but how does a navigation block with the right source/location setting end up in a user's block based template part?

@jffng
Copy link
Contributor Author

jffng commented Apr 21, 2021

It'd be good to have a more thorough description of the problem this solves, as it'll help others join the conversation.

@talldan thank you for this feedback, I updated the description based on these conversations!

@talldan
Copy link
Contributor

talldan commented Apr 22, 2021

Thanks @jffng that's a really helpful description now 👍

Add an attribute to the navigation block that specifies a theme nav location — pulling its menu items from this location and rendering them using the block (leveraging add_theme_support( 'block-nav-menus' )).

As block-nav-menus is part of the navigation editor, it's still considered experimental and may not ship in the next WordPress version. The nav editor could also do with some allowance for changing on how the opt-in works as this part is quite far from ready, it's part of the editor that hasn't had a lot of attention.

The implementation is here at the moment - https://github.com/WordPress/gutenberg/blob/trunk/lib/navigation.php#L248-L315. At a quick glance I can see not all the link attributes from menu items are being converted, only the URL and label, so things like 'open in new tab' might not work.

For the purposes of this PR it might be an option to decouple this from the nav editor, migrate this code over to the block itself so that the theme opt-in isn't needed.

As a user, I expect the ability to edit my menu using the way I'm familiar with (the customizer) indefinitely.

As you mention in the description, some thought will need to go into block editor experience when the block is configured like this, as I imagine this would be the default setup in a theme. What's mentioned in the description sounds a lot like how the Page List block works, so it might be worth checking that out. That block is also not editable and can be converted - #30390.

@jasmussen
Copy link
Contributor

Thanks for the PR and conversation. It's the best way to move things forward. And thanks for the ping, Dan! Some of the technical aspects I will defer to the other wonderful folks pinged.

I'd like to touch on this bit:

As a user, I expect the ability to edit my menu using the way I'm familiar with (the customizer) indefinitely.

Ultimately, the Navigation block is just that: a block, and having a dedicated screen (or section of the customizer) to edit just a single block is not a key part of where I personally see full site editing going.

Inserting the Navigation block directly in your header area, in full context of its surroundings and with access to responsive tools, I see as the best interface for editing your navigation. When menus grow big enough to be unwieldy, that's where I see the List View coming into play for sorting, organizing, and arranging huge amounts of items. It's one of the reasons why so many list view improvements are added to the tracking issue: #27593. I think of List view as a miniature version of the navigation screen, but able to be leveraged by any block that's complex enough to benefit from it.

That's the key bit: in embracing the site editor as the context for editing all content of your site, we also embrace the block interface, and any improvements we make there benefit all blocks.

The re-used header area ensures the same block is used across your site. You can even wrap it in a Reusable block container if you need it in the flow of your content. In addition to that, the Page List block (as Dan notes) was created to show a dynamic version of all the pages of your site, keeping them in sync with new publications or deletes.

So whether the dedicated navigation screen (or section of the customizer) remain available indefinitely for all types of themes or not, my approach to improving the Navigation block is based fully on the idea that the best experience will be editing the block in its natural context.


if ( ! current_theme_supports( 'block-nav-menus' ) ) {
return '';
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the role of checking for this here? The expected use of this supports is kind of the opposite, as here the result is rendering a classic menu, while the supports is meant to enable rendering of a block menu.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The purpose isn't to render a classic menu, the purpose is to render a BLOCK menu with a classic data source. That flag ensures that what comes out of the call to render the menu is navigation block markup. Ideally it would be preferred to not require that theme supports and simply (in this situation) ALWAYS render block markup. But this was the cleanest path to done at the moment.

}

$block_attributes = $attributes;
unset( $block_attributes['location'] );
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't follow the swapping values and the unset. It's probably related to the updates in wp_nav_menu but at least it needs a comment, and ideally we don't need to do it.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When crafting a Navigation Block that leverages a classic navigation data source you will still be able to apply stylistic attributes (justification, font size, etc). These attributes should be passed in when it actually renders. HOWEVER if the 'location' attribute is set when the rendering is attempted, and there are no menu items to be rendered, the block enters a loop. This ensures that the attributes passed to actually be rendered exclude the 'location' attribute preventing the loop.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like a problem to be fixed in the block then :)

@getdave
Copy link
Contributor

getdave commented Apr 26, 2021

The implementation is here at the moment - https://github.com/WordPress/gutenberg/blob/trunk/lib/navigation.php#L248-L315. At a quick glance I can see not all the link attributes from menu items are being converted, only the URL and label, so

Just some context that I'm fixing all of this parsing/serialization in #31004

things like 'open in new tab' might not work.

That's already fixed in #30956

@getdave
Copy link
Contributor

getdave commented Apr 26, 2021

Firstly, thank you for this PR 🏅 . It looks really good and it's great to see the discussion around this as well. These kinds of issues are critical to ensuring we ensure users have a seamless experience when upgrading to FSE.

My understanding of this proposal is that the user can continue to edit their navigation within the Customizer and then see those changes reflected (automatically) in the core/navigation block they've utilised in the block editor. Basically, the old menu system remains as the single source of truth for the menu data.

This seems like a reasonable proposal until we consider that this appears to go against the route we've been taking with the existing Menus screen (ie: /wp-admin/nav-menus.php) which is to completely disable it if a block based theme is activated.

We provide an "upgrade" route for users coming from an old Theme by either:

  1. Allowing the user to select an existing menu and convert that to the block based equivalent (core/navigation and friends).
  2. Automatically creating menus within the Navigation Editor from the menu post types.

Whilst I appreciate the motivation behind allowing users to continue using the interface they feel familiar with (eg: Customizer) to edit their navigation, this feels antithetical to the motivation of FSE which is to get users over to the (some would argue) superior UX of the blocks system.

As with the old Menus screen, I would expect the Menus area in the Customizer to be disabled/hidden if the user has activated a block based theme.

Indeed, by providing the user with an option to continue editing using an old interface we are disincentivising them to upgrade. I would suggest this is doing them a disservice as in the long term the block based version of the Navigation will ultimately continue to gain improvements in UI and functionality which will far exceed (🤞 ) that of the Customizer based experience.

Folks have mentioned that the block doesn't currently parse/serialize menu data to block form correctly. This is (currently) true but that will be resolved in #31004 (reviews appreciate) so soon we should have upgrade paths ready for users who are used to editing menus in the Customizer, namely:

  • Using the Navigation Editor screen.
  • Using the core/navigaiton block directly in the Site Editor and clicking "Create from existing menu".

A technical solution is a nice approach but I can't help but feel it's going somewhat against the grain of streamlining the experience of allowing users to upgrade to a block-based world.

Happy to be told I'm wrong however! 😄 I'm new to this so I felt a fresh perspective might be helpful.

Thanks again for the PR and the discussion.

Comment on lines +303 to +305
if ( isset( $args->block_attributes ) ) {
$block_attributes = $args->block_attributes;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could probably just do this inline with the array below?

@pbking
Copy link
Contributor

pbking commented Apr 26, 2021

My understanding of this proposal is that the user can continue to edit their navigation within the Customizer and then see those changes reflected (automatically) in the core/navigation block they've utilised in the block editor. Basically, the old menu system remains as the single source of truth for the menu data.

That's absolutely right. Not as a long-term solution for navigation but to get us through this transition process.

This seems like a reasonable proposal until we consider that this appears to go against the route we've been taking with the existing Menus screen (ie: /wp-admin/nav-menus.php) which is to completely disable it if a block based theme is activated.

The MAJOR MAJOR motivator is is that we (or maybe just me...) are trying VERY HARD to separate 'Block Based Theme' from 'Full Site Editor'.

You have to have a Block Based Theme to take advantage of the Full Site Editor. You do NOT have to use the Full Site Editor to take advantage of building Block Based Themes. (Or, at least we are VERY CLOSE to making this possible. Managing navigation is one of the very last remaining hurdles.)

If a user is using this block in the Full Site Editor I would expect them to use the Navigation block (complete with upgrade path) how it's being built today.

However THE MOST IMPORTANT THING WE ARE ATTEMPTING here is to use the Navigation block in a block-based theme WITHOUT the Full Site Editor. If a user doesn't have access to the navigation block AT ALL then managing it via the customizer (or kin) is the only way they can.

@getdave
Copy link
Contributor

getdave commented Apr 26, 2021

Thanks for your detailed response @pbking 👍

However THE MOST IMPORTANT THING WE ARE ATTEMPTING here is to use the Navigation block in a block-based theme WITHOUT the Full Site Editor.

That context is useful. If the motivation is to avoid the Full Site Editor then can I ask why we're not looking to use the dedicated Nav Editor screen which is currently being developed? This is not the "full site editor" but a screen dedicated to creating a navigation menu. Do you see that being available to folks who don't want to opt into the full Site Editor experience?

I appreciate the Navigation Editor screen isn't ready yet, but with more folks testing and working on the project it is moving forward. I'm curious as to why this would not be a preferable route to perpetuating the use of the Customizer when the user is using a block-based theme.

If a user doesn't have access to the navigation block AT ALL then managing it via the customizer (or kin) is the only way they can.

Could you advise on the scenario where a user is using a block based theme but does not have access to the Site Editor or the Navigation block?

Again, I appreciate you being open to discussing my contrary opinion 👍

@pbking
Copy link
Contributor

pbking commented Apr 26, 2021

Ha ha. Pretty sure I'm the one with the contrary opinion. :P

We're currently developing a theme that renders everything with do_blocks() from PHP templates in order to disable the FSE and still allow us to build themes with HTML templates. This is one example where implementing a navigation block with a location target would be useful. The block is inserted into a header template and assigned a location, but the user doesn't have the ability to edit that header template directly.

It's a "classic" theme, but built with new tools.

Ideally (I day dream about this one) the FSE is an optional thing that a theme can express support for. This way a theme could be built (very close to today!) using html block-based templates and be a USEFUL theme immediately, without waiting for the FSE to be complete and ready.

If the motivation is to avoid the Full Site Editor then can I ask why we're not looking to use the dedicated Nav Editor screen which is currently being developed?

My understanding (which is often/usually flawed) is that the nav editor makes use of the navigation block, but still stores things in the same data source as classic navigation. It would be a great solution and (if I understand) there's no reason it couldn't be (one of the options) where navigation is edited. Indeed this PR leverages that work.

@getdave
Copy link
Contributor

getdave commented Apr 26, 2021

We're currently developing a theme that renders everything with do_blocks() from PHP templates in order to disable the FSE and still allow us to build themes with HTML templates.

I see. Like a sort of "headless" FSE.

I can now understand where the motivation for this use case comes from.

My understanding (which is often/usually flawed) is that the nav editor makes use of the navigation block, but still stores things in the same data source as classic navigation.

Correct. If used within the Navigation Editor then it saves to the Navigation menu (Post Type: ‘nav_menu_item’).

When the block is used within a FSE template however, it saves as a block.

It would be a great solution and (if I understand) there's no reason it couldn't be (one of the options) where navigation is edited.

My thought was just we're creating so many areas where folks can edit Navigation. I always saw the Navigation Editor as "deprecating" the existing menus screen and the associated customers variant. Perhaps @draganescu - who has been working on this far longer than I - will be able to clear up the intention here?

@jasmussen
Copy link
Contributor

Just wanted to bring up the fact that the connection between the Navigation Block when manually inserted, and chosen from an existing one defined on a navigation screen, is a one-way street:

one way street

It is meant as a shortcut to migrate existing menus, and once the navigation block is inserted, that's where it's edited.

@MaggieCabrera
Copy link
Contributor

Just wanted to bring up the fact that the connection between the Navigation Block when manually inserted, and chosen from an existing one defined on a navigation screen, is a one-way street:

It is meant as a shortcut to migrate existing menus, and once the navigation block is inserted, that's where it's edited.

It's also a mechanism that needs to be repeated manually by the user should they decide to use a different block theme immediately after.

@jasmussen
Copy link
Contributor

One solution present is the "Page List" block which you get when you press "All pages" in the navigation setup. This is likely going to be the single block that we pre-insert in navigation block patterns, as it immediately gives you the structure of your site as a navigation block, and stays in sync with creations or deletions.

Copy link
Contributor

@talldan talldan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just want to reiterate that this shouldn't depend on current_theme_supports( 'block-nav-menus' ), as it's currently a plugin only feature and there's a strong chance it won't be released in WordPress 5.8.

@pbking
Copy link
Contributor

pbking commented Apr 28, 2021

Just want to reiterate that this shouldn't depend on current_theme_supports( 'block-nav-menus' ), as it's currently a plugin only feature and there's a strong chance it won't be released in WordPress 5.8.

That's a good point @talldan. Pretty much ALL of the solutions that we have explored involve using that method of rendering navigation markup; even the solutions that we have explored exclusively in the theme.

What alternatives could we use to get from 'classic navigation data' to 'navigation block markup' without re-re-reinventing the wheel? The only thing that comes to mind is implementing the functionality of gutenberg_convert_menu_items_to_blocks in the theme. And that doesn't feel like a good solution at all.

No matter the solution, I see that piece of logic as key to addressing the problem.

@talldan
Copy link
Contributor

talldan commented Apr 29, 2021

@pbking I did mention it a bit earlier, but it might have gotten lost in the conversation - #30852 (comment)

I think the best option would be to implement the rendering as part of the block.

Hopefully that shouldn't be too much of a task—I think it'd be perfectly fine to duplicate the code here for the block-nav-menus option, particularly gutenberg_convert_menu_items_to_blocks which does the heavy lifting of converting menu data to block data.

It doesn't have to be perfect for a first attempt, as long as it works and is no longer depending on the navigation screen.

@carolinan
Copy link
Contributor

However THE MOST IMPORTANT THING WE ARE ATTEMPTING here is to use the Navigation block in a block-based theme WITHOUT the Full Site Editor. If a user doesn't have access to the navigation block AT ALL then managing it via the customizer (or kin) is the only way they can.

To me this comment reads as if you are expecting the navigation block to only be available inside the site editor? I don't think that is the case?

@pbking
Copy link
Contributor

pbking commented Apr 29, 2021

To me this comment reads as if you are expecting the navigation block to only be available inside the site editor? I don't think that is the case?

That's not quite my expectation, just that there will be times when the navigation block isn't available to the user to manage directly. There will be lots of scenarios where the navigation block is useful in locations that a user can manage themselves in the block editor and I don't argue that that workflow needs to be any different.

However the navigation block isn't useful in its current state UNLESS a user can manage it directly. That means that it's not a solution that we can use to create assets a user doesn't have access to (such as a header template-part in a classic theme). That's the specific scenario this change is intended for.

@pbking
Copy link
Contributor

pbking commented Apr 29, 2021

I think the best option would be to implement the rendering as part of the block.

@talldan if we did migrate that code to be a part of the block instead is that could be shared/leveraged by the navigation screen? I would certainly be keen to see that refactored I would just be weary to ensure that we don't have two places trying to achieve the same goal (in potentially divergent ways).

@talldan
Copy link
Contributor

talldan commented Apr 30, 2021

I would certainly be keen to see that refactored I would just be weary to ensure that we don't have two places trying to achieve the same goal (in potentially divergent ways).

@pbking I don't think that's something to worry about. The biggest issue would be if block-nav-menus had to be shipped to core in 5.8, before the nav editor was shipped to core in a later version. The theme opt-in would then be an official WordPress API and something maintainers have to support indefinitely. It'd limit the scope the nav screen has for modifying this option as well if the team wanted to go in a different direction. Even something as simple as changing the name from block-nav-menus would mean introducing technical debt.

Duplicating the code so that it's private code of the block isn't so much of an issue because it wouldn't be exposed as an API (the only thing known externally is the new block attribute). It could then be refactored at a later date to reduce the duplication if that becomes possible.

@scruffian scruffian added this to 🏗️ In progress in WordPress 5.8 Must Haves via automation May 5, 2021
@mtias
Copy link
Member

mtias commented May 6, 2021

Thank you all for the discussion so far. I'm going to try to untangle some string of thoughts as there's a lot going on.
I think it's important to separate what I see as three different parts:

  • Theme building.
  • Migrating to a block theme.
  • Editing experience.

Then also a few clarifications on where we want to go, since as @carolinan mentions early in the thread, the way menus work is convoluted and a big source of confusion which we are aiming to leave behind. In this sense, we don't want the old menu system to remain the canonical source of truth and we want to move towards the block representation in the smoothest possible way.

In this sense, we want to encourage themes to start using the block and its customization pieces as soon as possible, and we want to update all available interfaces for menu editing to use blocks, at least for the UX.

In reality, we cannot use blocks for menus in classic themes without some sort of opt-in because the chance of breakage is high, but we can use the block interface to streamline creation. That's the goal of the navigation screen project, so I won't touch further on it here.

On the other hand, for new themes being built we want to leave that old system behind and embrace blocks. However, there has to be a smooth path for "migrating". That's what I see most appealing about some of the ideas proposed here. Not related to editing menus per se (which is a separate conversation) but about how themes can play a part in the transition.

For that purpose I like the idea of using location as a way to signal what existing menu from the old system should be used or imported. This is an important flow when switching an existing WordPress site to a block theme. By declaring location="primary" on the block we could ensure:

  • If the user switches but never edits navigation, we can still fallback to the existing saved menu assigned to primary so things still work.
  • If the user opens a site editor instance, the menu can be automatically migrated to block expression without having to choose an import slot from the placeholder stage.

In this case the presence of location is not permanent but something a theme can use to indicate what menu to prioritize importing if it exists. Once a menu is actually imported the location attribute should be removed since location doesn't make sense long term in block themes.

Regarding the editing experience, there are a few more things that need to be sorted out, namely:

  • Whether the navigation block going to become a template part by default. (The slug of the template part might take over the older role of location.)
  • Ability to restrict what blocks can be used (a site might want to exclude "search" or other blocks from being accessible).
  • Some functions to retrieve the data-tree of a navigation block tree, excluding any presentation artefacts (useful for sitemaps, etc).

Copy link
Contributor

@draganescu draganescu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMO, there is one thing which this PR should change: it should not have anything to do with the navigation editor. That means no mention of block-nav-menus or edits to the updates in the navigation rendering. It should only work to make the block render itself server-side differently (from source).

This attribute is something that makes the block always render from a location and whatever that location offers. It is an invisible setting to the user. It needs to be marked as unstable __unstable__location or something so that we take every caution to be able to change it in the future, depending on how the attribute will be supported for users.

It seems to me we are still unclear about what happens to a navigation block that has a location set when shown in a block editor: is it editable, is the location preserved on edit, can the location be changed by the user etc.? So, we cannot commit to this hence my idea to mark it unstable and only touching the block, not the navigation editor.

Is this feasible? Is it enough so that universal themes can move forward?

@pbking
Copy link
Contributor

pbking commented May 19, 2021

I'm keen for a prefix, I think that sounds like a good idea @draganescu and communicates the state of the feature.

I also have the same questions as you regarding "what should it do when editing" and have the preference of "nothing different" right now. That gets us to a place where we can move forward building universal themes with an opportunity to flesh out the user experience in the future (if indeed there is any user experience).

@youknowriad youknowriad removed this from 🏗️ In progress in WordPress 5.8 Must Haves May 26, 2021
@scruffian
Copy link
Contributor

This PR was getting old and large so I created a simpler and smaller one here: #32491

@draganescu
Copy link
Contributor

Let's close this one in favor of #32491?

@scruffian scruffian closed this Jun 17, 2021
Navigation block automation moved this from 👀 PRs needing review to ✅ Done Jun 17, 2021
@scruffian scruffian deleted the tinker/nav-classic-data-source branch June 17, 2021 13:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
[Block] Navigation Affects the Navigation Block [Feature] Themes Questions or issues with incorporating or styling blocks in a theme.
Projects
Development

Successfully merging this pull request may close these issues.

None yet