Dashboard entity should support common entity hooks

Created on 20 January 2025, 3 months ago

Problem/Motivation

Even if the Dashboard is a config entity type, it should support the common entity hooks. For example I need to add some extra styling to the dashboards, no matter whether they are displayed with the admin theme (Gin) or the custom theme. Because of that I need to apply the extra styling via a module and libraries-extend only works for themes.

As the Dashboard entity doesn't support the hook_prepocess_HOOK() to attach a library with the custom styling, the only possibility which works is

/**
 * Implements hook_preprocess_HOOK().
 */
function mymodule_preprocess_container(array &$variables): void {
  $libraries = $variables['element']['#attached']['library'] ?? [];
  if (in_array('dashboard/dashboard', $libraries)) {
    // Note!
    // Adding a library to $variables['element']['#attached']['library'] doesn't work, only
    // to $variables['#attached']['library'].
    $variables['#attached']['library'][] = 'mymodule/dashboard';
  }
}

which is very strange and hacky as I have to preprocess the container, test it's element having the dashboard/dashboard library and if so attach my custom library. But to make it even weirder, I cannot attach my library to the container element as that already has been processed, but only on the container directly.

Maybe I could implement hook_page_attachments_alter() and attach my library there if the dashboard/dashboard is present. But that would make it even harder if I needed to attach it only to specific dashboards.

Proposed resolution

Implement the common hooks for the Dashboard entity type, such as hook_preprocess_HOOK() or hook_entity_view() (and related ones).

Feature request
Status

Active

Version

2.0

Component

Code

Created by

🇦🇹Austria mvonfrie

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

Comments & Activities

  • Issue created by @mvonfrie
  • 🇦🇹Austria mvonfrie

    This might be related to Dashboards should have the ability to customize path (alias) Postponed and require a meta discussion before implementation.

  • 🇪🇸Spain penyaskito Seville 💃, Spain 🇪🇸, UTC+2 🇪🇺

    As you mentioned, dashboards are config entities and we support any config entity hook.
    hook_entity_view is a *content* entity hook.
    hook_preprocess_HOOK is a theme hook, and we don't provide any specific theme function. Maybe we should, but would still be on the container.

    > I need to apply the extra styling via a module and libraries-extend only works for themes.

    I'd suggest to attach a library to a block, not the dashboard itself.

    If for whatever reason you really need to attach a library to the dashboard itself, and you want to check the id of the dashboard, you can e.g. implement an event subscriber with code like:

      public function onBuildRender(SectionComponentBuildRenderArrayEvent $event) {
        $build = $event->getBuild();
        if (isset($build['#dashboard'])) {
          if ($build['dashboard'] === 'welcome') {
            $build['#attached']['library'][] = 'dashboard_test/test';
           }
        }
        $event->setBuild($build);
      }
    
      public static function getSubscribedEvents(): array {
        return [
          LayoutBuilderEvents::SECTION_COMPONENT_BUILD_RENDER_ARRAY => [
            'onBuildRender',
          ],
        ];
      }
    

    hook_page_attachments_alter looks to me that another clean solution, but that wouldn't know the actual dashboard.

  • 🇪🇸Spain penyaskito Seville 💃, Spain 🇪🇸, UTC+2 🇪🇺

    For the record, for blocks you can do:

    function mymodule_preprocess_block(array &$variables): void {
      $dashboard_id = isset($variables['element']['#dashboard']) ?? [];
      if (isset($dashboard_id)) {
         // Do whatever.
      }
    }
    
  • 🇪🇸Spain penyaskito Seville 💃, Spain 🇪🇸, UTC+2 🇪🇺

    Let us know if there's something we could document better.

  • Status changed to Closed: works as designed 12 days ago
  • 🇪🇸Spain penyaskito Seville 💃, Spain 🇪🇸, UTC+2 🇪🇺
Production build 0.71.5 2024