Add possibility to placeholder menu renders

Created on 14 March 2024, about 1 year ago

Problem/Motivation

On one of my sites, I encountered an issue where all pages became uncacheable because an editor added a menu item referencing a non-existing (or maybe existing, but deleted) node. The problem is that Drupal\Core\Access\AccessManager::checkNamedRoute() marks the response as uncacheable if a ParamNotConvertedException is thrown:

Uncacheable because conversion of the parameter may not have been possible due to dynamic circumstances.

Steps to reproduce

  1. Add a menu link where the link is entity:node/<nid>, and is a non-existing node id.
  2. Render the menu using the drupal_menu Twig function
  3. Pages displaying the menu will have the x-drupal-dynamic-cache: UNCACHEABLE response header.

Proposed resolution

Add a new placeholder parameter to drupal_menu, which will make sure the menu is placeholdered, fixing dynamic page cache. More information about placeholdering can be found in this blog post.

✨ Feature request
Status

Active

Version

3.3

Component

Code

Created by

πŸ‡§πŸ‡ͺBelgium dieterholvoet Brussels

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

Merge Requests

Comments & Activities

  • Issue created by @dieterholvoet
  • Status changed to Needs review about 1 year ago
  • πŸ‡§πŸ‡ͺBelgium dieterholvoet Brussels
  • Open in Jenkins β†’ Open on Drupal.org β†’
    Core: 10.2.x + Environment: PHP 8.1 & MariaDB 10.3.22
    last update about 1 year ago
    11 pass
  • Pipeline finished with Success
    about 1 year ago
    Total: 149s
    #119079
  • πŸ‡§πŸ‡ͺBelgium dieterholvoet Brussels
  • Pipeline finished with Canceled
    about 1 month ago
    Total: 41s
    #438728
  • Pipeline finished with Failed
    about 1 month ago
    Total: 199s
    #438729
  • πŸ‡¬πŸ‡§United Kingdom darren.fisher

    darren.fisher β†’ made their first commit to this issue’s fork.

  • πŸ‡¬πŸ‡§United Kingdom darren.fisher

    Just fixed the phpcs errors introduced by these changes. The PHPUnit failures I'm unsure of the correct approach.

    Line 32 of tests/src/Kernel/Command/DebugLoadersTest.php contains the following assertion:
    self::assertStringContainsString('/twig_tweak/templates/', $display);

    The test is asserting that the output must contain the string:
    "/twig_tweak/templates/"

    But the actual output is:
    "modules/custom/twig_tweak-3427835/templates/"

    I'm not sure if this needs some sort of partial string check update using regex as the -3427835 relates specifically to this issue branch which means phpunit will always fail on any branch. This feels like a separate issue altogether.

    What do you think?

  • πŸ‡¬πŸ‡§United Kingdom darren.fisher

    Also the PHPStan errors are weird. They all state:

    No error to ignore is reported on line XX

    Here's the full error output:

    ------ -------------------------------------------- 
      Line   src/Command/SignatureFormatter.php          
     ------ -------------------------------------------- 
      47     No error to ignore is reported on line 47.  
     ------ -------------------------------------------- 
     ------ -------------------------------------------- 
      Line   src/UriExtractor.php                        
     ------ -------------------------------------------- 
      49     No error to ignore is reported on line 49.  
      83     No error to ignore is reported on line 83.  
     ------ -------------------------------------------- 
     ------ --------------------------------------------- 
      Line   src/UrlExtractor.php                         
     ------ --------------------------------------------- 
      72     No error to ignore is reported on line 72.   
      112    No error to ignore is reported on line 112.  
     ------ --------------------------------------------- 
     ------ --------------------------------------------- 
      Line   src/View/BlockViewBuilder.php                
     ------ --------------------------------------------- 
      148    No error to ignore is reported on line 148.  
     ------ --------------------------------------------- 
     [ERROR] Found 6 errors                                    
    

    When I inspect the first one I see:

    // @todo Fix this.
    // @phpstan-ignore-next-line
    

    I'm not sure why these are here? I'm sure there is some reason but it appears the PHPStan would not error on the following line anyway so maybe these can be removed? Again seems like this is probably a separate issue?

Production build 0.71.5 2024