Add a placeholder preview for the navigation toolbar

Created on 10 February 2025, about 2 months ago

Problem/Motivation

After 📌 Render the navigation toolbar in a placeholder Active and 📌 Use a placeholder for the navigation toolbar Active the navigation toolbar is rendered in a placeholder, but also that placeholder bypasses bigpipe when the render cache is warm.

This however means there is some layout shift when the render cache is cold - which will be rare, however it will happen on the first request after installing the navigation toolbar / installing Drupal.

If possible, we should add a lazy_builder_preview to reduce to eliminate the layout shift. The contents of the toolbar would still be replaced by the placeholder, but it would be less jank.

The first request with a completely cold cache is pretty janky anyway, so don't think this is a high priority if it's hard, but if it's not it would be nice.

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

Introduced terminology

API changes

Data model changes

Release notes snippet

📌 Task
Status

Active

Version

11.0 🔥

Component

navigation.module

Created by

🇬🇧United Kingdom catch

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @catch
  • 🇬🇧United Kingdom catch

    I have pushed up an MR that does not work:

    - it does create a placeholder
    - it does not prevent any layout shift

  • Merge request !11166Try to add a preview. → (Open) created by catch
  • Pipeline finished with Success
    about 2 months ago
    Total: 491s
    #420258
  • 🇪🇸Spain plopesc Valladolid

    The idea is great and the code in the MR looks sensible to me.

    However, I have not been able to find a way to make it work. This is probably out of my limited FE knowledge.

    Adding some debugging information that could be useful for a FE development who could take a look into this:

    Replace code in NavigationRenderer::buildNavigation() by something similar to this:

      public function buildNavigation(array &$page_top): void {
        $page_top['navigation'] = [
            '#type' => 'html_tag',
            '#tag' => 'aside',
            '#attributes' => [
              'class' => ['admin-toolbar'],
              'id' => 'admin-toolbar',
            ],
            'child' => [
              '#type' => 'container',
              '#attributes' => [
                'class' => ['admin-toolbar__displace-placeholder'],
              ],
            ],
        ];
      }

    When any page is loaded, the space for the navigation bar should be reserved, but empty.

    Once that behavior is achieved, that chunk of HTML should be moved to the '#lazy_builder_preview' render array property in the original output.

Production build 0.71.5 2024