Custom js library doesn't work with an ajax block

Created on 8 January 2024, about 1 year ago

Problem/Motivation

A custom JS library doesn't work, when the block is loaded via ajax.

Steps to reproduce

  • Create a block
  • Create a js library (see code below)
  • Add the library, via either a preprocess or twig attach_library
  • Load the page with the block

Simple JS library file:

(function ($, Drupal) {
  Drupal.behaviors.my_custom_block_behavior = {
    attach: function (context, settings) {
      console.log('I am not triggered');
    },
  };
})(jQuery, Drupal);

Preprocess:

function my_theme_preprocess_block(&$variables) {
 // Omitting all the necessary check 
    $variables['#attached']['library'][] = 'my_theme/my_custom_block_library';

The theme library *yml file is correct.
When the block is not loaded via ajax the console log "I am not triggered".

When the block is loaded via ajax the console doesn't log it.

I've no idea why this happens, quickly looking at the module's code, I can't identify a point which could cause this behavior.

🐛 Bug report
Status

Active

Version

3.0

Component

Code

Created by

🇮🇹Italy Giuseppe87

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

Comments & Activities

Production build 0.71.5 2024