Layout Paragraphs builder doesn't set "_admin_route" context

Created on 24 March 2023, about 2 years ago

Problem/Motivation

Layout Paragraphs does not set the _admin_route context on its CRUD/admin actions. This is not a bug per se, but IMHO it should be considered a bug when the config value `node.settings.use_admin_theme` is set to true. When this setting is enabled, and the editor is using the admin theme, then \Drupal::service('router.admin_context')->isAdminRoute() returns FALSE.

Proposed resolution

Replicate the behavior from core node module
https://api.drupal.org/api/drupal/core%21modules%21node%21src%21EventSub...
for all routes that are marked with

  requirements:
    _layout_paragraphs_builder_access: 'TRUE'
πŸ› Bug report
Status

Active

Version

2.0

Component

Code

Created by

πŸ‡¦πŸ‡ΉAustria hudri Austria

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

Comments & Activities

  • Issue created by @hudri
  • πŸ‡¦πŸ‡ΉAustria hudri Austria
  • πŸ‡¦πŸ‡ΉAustria hudri Austria
  • πŸ‡¦πŸ‡ΉAustria hudri Austria
  • @hudri opened merge request.
  • Status changed to Needs review about 2 years ago
  • πŸ‡¦πŸ‡ΉAustria hudri Austria
  • πŸ‡¬πŸ‡§United Kingdom joachim

    There's a conceptual problem here:

    +      $this->configFactory->get('node.settings') &&
    +      $this->configFactory->get('node.settings')->get('use_admin_theme')
    

    This is a setting for nodes that you're reading.

    But the routes you're altering are for any entity type that has paragraph fields on it.

    I'm not sure how to resolve that -- maybe make it its own setting rather than piggyback off the setting for nodes?

  • Status changed to Postponed: needs info almost 2 years ago
  • πŸ‡ΊπŸ‡ΈUnited States justin2pin

    @hudri - Can you provide a little more detail on the actual issue you are experiencing? CRUD actions in LP are called via Ajax requests, and the correct theme should be determined based on ajax_page_state POST data. Are you seeing cases where the incorrect theme is being used? If so, can you provide more detail about the context?

  • πŸ‡¦πŸ‡ΉAustria hudri Austria

    I initially noticed this behavior because drupalSettings.path.currentPathIsAdmin is derived from the _admin_route context. This setting is the proper way for JS behaviors to detect if we are in admin in frontend mode (core does this in toolbar module and in layout builder module).

    Now the tricky thing with layout discovery is, to be discovered by admin and frontend themes, layouts must live in the module space and not in the theme space.

    Some of our layouts have JS assets attached which need to know if they are in admin mode or not (e.g. I only fire autoplay behaviors of carousel layouts in frontend, or a MutationObserver triggers a reflow event when an editor adds or removes components in an masonry layout).

    Code example:

    my_module/js/carousel_layout_asset.js:

    ((Drupal, drupalSettings, once) => {
      Drupal.behaviors.splide = {
        attach: function attach(context, settings) {
          if (!drupalSettings.path.currentPathIsAdmin) {
            once('splide-js', '.splide', context).forEach(elem => {
              let splideInstance = new Splide(elem);
              splideInstance.mount();
            });
          }
        }
      };
    })(Drupal, drupalSettings, once);

    This surely can be solved with other ways, but this solution would be theme-independent and does not require me to split code into between an admin part and a frontend part.

    But I also don't know how to deal with #7

  • Status changed to Needs work almost 2 years ago
  • πŸ‡¦πŸ‡ΉAustria hudri Austria
  • πŸ‡¨πŸ‡­Switzerland dpacassi ZΓΌrich, Switzerland

    Alright, so, I'm experiencing the same bug and the current MR/patch fixes the bug.
    While the current patch might need some further work, I'll still apply it to the buggy project.

    Here's how to reproduce:
    - Install https://www.drupal.org/project/choices β†’ and configure it to be only active for the frontend theme
    - Install https://www.drupal.org/project/chosen β†’ and configure it to be only actice for the backend theme
    - Edit a paragraph with a select field (e.g. an entity reference) -> it now shows two selects (one with choices and one with chosen)
    - Applying the patch and clearing the Drupal cache fixes the issue

    I'm also adding the current state of the MR as a static file to be used in Composer patches in case the MR gets updated or rerolled.

Production build 0.71.5 2024