Context exception when trying to create url

Created on 29 July 2022, over 2 years ago
Updated 1 May 2023, almost 2 years ago

It seems like there is an error with the context creation for the routing in this module.

I have a module that is trying to generate an url to the page with the view_mode_page route:

    $url = new Url(
      'view_mode_page.display_entity',
      [
        'view_mode' => 'apply',
        'entity_type' => 'node',
        'entity_id' => $node->id()
      ]
    );

But i get the following error:

Drupal\Component\Plugin\Exception\ContextException: The context is not a valid context. in Drupal\Core\Executable\ExecutablePluginBase->getContextDefinition() (line 184 of core/lib/Drupal/Core/Plugin/ContextAwarePluginTrait.php).

Drupal\Core\Executable\ExecutablePluginBase->getContext() (Line: 116)
Drupal\Core\Executable\ExecutablePluginBase->getContextValue() (Line: 91)
Drupal\Core\Entity\Plugin\Condition\EntityBundle->evaluate() (Line: 77)
Drupal\Core\Condition\ConditionManager->execute() (Line: 84)
Drupal\Core\Condition\ConditionPluginBase->execute() (Line: 412)
Drupal\view_mode_page\Entity\ViewmodepagePattern->applies() (Line: 146)
Drupal\view_mode_page\PathProcessor\DynamicPathProcessor->processOutbound() (Line: 108)
Drupal\Core\PathProcessor\PathProcessorManager->processOutbound() (Line: 388)

I have checked and the view mode exists. This might be an issue with only newer drupal versions i only got this issue after updating core from 9.3.3 to 9.4.4

It seems to break on the check `$definition instanceof ContextAwarePluginDefinitionInterface` in the ContextAwarePluginTrait::getContextDefinition line 176.

πŸ› Bug report
Status

Needs work

Version

4.0

Component

Code

Created by

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

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡ΊπŸ‡ΈUnited States loopy1492

    Just adding a static patch after @daveiano's work above...

  • πŸ‡ΊπŸ‡ΈUnited States loopy1492

    For some reason I keep uploading patches that start with a space in the file name.

  • Status changed to Needs review over 1 year ago
  • πŸ‡ΈπŸ‡°Slovakia coaston

    #18 resolved issues in D10.

    Thank you. You have saved my day!

  • Status changed to RTBC over 1 year ago
  • πŸ‡©πŸ‡ͺGermany Anybody Porta Westfalica

    Any maintainer here to merge this and tag a new 4.x release, as 4.x isn't really D10 compatible currently.

  • πŸ‡©πŸ‡ͺGermany Anybody Porta Westfalica
  • πŸ‡ΊπŸ‡ΈUnited States andysipple

    Getting the following error when trying to config import into a D10 site. Patch #18 is not working for me.

    +------------+------------------------------+-----------+
    | Collection | Config                       | Operation |
    +------------+------------------------------+-----------+
    |            | view_mode_page.pattern.print | Create    |
    +------------+------------------------------+-----------+
    
     Import the listed configuration changes? (yes/no) [yes]:
     > yes
    
     [notice] Synchronized configuration: create view_mode_page.pattern.print.
     [notice] Finalizing configuration synchronization.
    
    In ConfigImportCommands.php line 324:
                                                                                                                                                                 
      The import failed due to the following reasons:                                                                                                            
      Unexpected error during import with operation create for view_mode_page.pattern.print: The "node_type" plugin does not exist. Valid plugin IDs   
      for Drupal\Core\Condition\ConditionManager are: config_pages_values_access, gtag_domain, gtag_language, language, current_theme, request_path, user_role,  
       webform, entity_bundle:block_content, entity_bundle:config_pages, entity_bundle:crop, entity_bundle:entity_subqueue, entity_bundle:feeds_feed, entity_bu  
      ndle:media, entity_bundle:menu_link_content, entity_bundle:node, entity_bundle:redirect, entity_bundle:taxonomy_term, entity_bundle:webform_submission, e  
      ntity_bundle:paragraph 
  • πŸ‡ΊπŸ‡ΈUnited States nkraft

    The patch in #18 PLUS the config update in #23 from AndySimple worked for me!

    I applied patch #18.
    Then went into my config sync folder, searched for: node_type
    And then changes all instances related to view_mode_page from:
    node_type to entity_bundle:node

    then ran: drush cim
    top import the modified config files
    then
    drush cr

    And voila! My view mode pages are back and working correctly! Thanks alll, you saved my day, getting ready to take D10 live hopefully tomorrow. Cheers to you all.

  • πŸ‡§πŸ‡ͺBelgium stijnd Belgium

    The combination of #18 and #23 also worked for me. Perfectly explained by @nkraft!

  • Status changed to Needs work about 1 year ago
  • πŸ‡ΊπŸ‡ΈUnited States pianomansam

    Changing the status back to needs work as there are unresolved questions on the merge request. Further, the merge request doesn't do anything to solve the issue raised in #23. The fix in #23 is still a manual fix that should be taken care of programmatically with a migration/update.

  • With a fresh install on D10 (not an upgrade from D9), patch #18 worked like a charm for me. Also fixed/is the root of this bad AJAX call:
    https://www.drupal.org/project/view_mode_page/issues/3414818#comment-155... πŸ› add pattern HTTP AJAX error 500 Active

  • πŸ‡ͺπŸ‡ΈSpain rcodina Barcelona

    The patch #18 works like a charm. But the MR patch doesn't apply.

  • First commit to issue fork.
  • πŸ‡ΊπŸ‡ΈUnited States Arlina

    Updated PR to be compatible with latest release 4.0.3, as it already addresses the deprecation issues.

  • Pipeline finished with Failed
    3 months ago
    Total: 153s
    #391598
  • πŸ‡ΊπŸ‡ΈUnited States btully Dutchess County, NY

    The latest patch #18 fails to apply when using version 4.0.3 of the module through composer require.

    Could not apply patch! Skipping. The error was: Cannot apply patch https://www.drupal.org/files/issues/2023-05-01/3300706-17-context_exception_when_trying_to_create_url_0.patch
    
  • I saw same issue as mentioned in #31. Patch #18 fails.

    MR!3 ( #29) is applied but now other problems.

    When creating a new pattern it shows

    Drupal\Component\Plugin\Exception\PluginNotFoundException: The "node_type" plugin does not exist

    For existing patterns, I see the error mentioned in the screenshot below.

    Versions: Drupal version 10.4.1 Viev mode page: 4.0.3

  • πŸ‡ΈπŸ‡ͺSweden Kleve

    Looks like the 4.0.3 version includes the patch code. Maybe that is why you get `Could not apply patch` @btully.
    Simply remove the patch should remove the error.

  • πŸ‡ΊπŸ‡ΈUnited States papagrande US West Coast

    If this issue is indeed fixed, can we get a link to the issue and/or commit that updated the code?

    Then we can mark this issue as "Closed (duplicate)" or "Closed (outdated)".

  • πŸ‡«πŸ‡·France raphaelbertrand Lauris

    The issue is not yet fully fixed in 4.0.3, whithout patch or MR applied

    When creating a new pattern it shows

    Drupal\Component\Plugin\Exception\PluginNotFoundException: The "node_type" plugin does not exist

    I don't have time to investigate more on this issue now but maybe the work on related issues "#3318559: Replace use of node_type condition" and " #3356400: Drupal 10 compatibility" may help to finish to solve this one, mainly the part on /src/Form/PatternEditForm.php file.

  • πŸ‡«πŸ‡·France raphaelbertrand Lauris

    Maybe the commit that updated the code is in #3435378 Automated Drupal 11 compatibility fixes for view_mode_page ?

  • Posting the MR changes as a patch here. It is compatible with v4.0.3

  • πŸ‡«πŸ‡·France raphaelbertrand Lauris

    Good idea it help to see what remain in the MR.
    Maybe switch back to "need review" in order to finish with this issue and by the same time with "#3356400: Drupal 10 compatibility"
    wich is almost duplicate now.

  • Status changed to Needs review 12 days ago
  • πŸ‡§πŸ‡ͺBelgium weseze

    I can confirm that the patch from #37 applies to the latest v4.0.3 version of the module and everything is working as expected.
    Setting to "Needs review" so the maintainers can have a look and provide feedback, if needed.

Production build 0.71.5 2024