Call attachBehaviors or similar so third-party Javascript runs on each page

Created on 20 February 2025, about 1 month ago

Problem/Motivation

I'm adding Javascript to the PB listing pages as a part of this module: https://www.drupal.org/project/sheephole_helper β†’

It works on the first page, but if you scroll to the next page it doesn't work. In fact, my 'attach' function isn't being called.

Steps to reproduce

Install and enable that module and visit the PB listings page. Note how a download button has been added to some items. Click to the next page and note that there are no download buttons.

Proposed resolution

I'm not familiar with Svelte, but I assume this could be resolved in the Svelte code called Drupal.attachBehaviors after the AJAX call.

πŸ› Bug report
Status

Active

Version

2.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States TolstoyDotCom L.A.

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

Comments & Activities

  • Issue created by @TolstoyDotCom
  • πŸ‡ΊπŸ‡ΈUnited States phenaproxima Massachusetts

    The Svelte app is, by design, not extensible or overridable, and the pagination (I assume that's what you're referring to?) is internal to the Svelte app. So although I'm not an official maintainer of this module, I'm guessing this is most likely a won't-fix.

    Tentatively closing this under that conclusion, but feel free to reopen if there's more to be said here.

  • πŸ‡ΊπŸ‡ΈUnited States TolstoyDotCom L.A.

    To be clear, my module adds a Javascript file to the PB page. That JS file adds download buttons to eligible modules. That works on the first page, but if I click the pager to go to Page 2, Page 3, etc my Javascript isn't run: the attach method isn't called.

    It seems bad design to have something in Drupal that isn't extensible: everything else is. If you add JS to a Views page, the JS's attach method will be called when you go to Page 2 etc.

    My workaround is to poll every two seconds and add my buttons if they haven't already been added. That's suboptimal but I can deal with it if necessary.

    Like I said, I'm not familiar with Svelte, but is adding in a hook or calling Drupal.attachBehaviors out of the question? Feel free to close again if that isn't going to happen.

  • πŸ‡ΊπŸ‡ΈUnited States phenaproxima Massachusetts

    I very much doubt it's going to happen.

    Not everything in Drupal can, or should, be extensible. Extension points should be well thought-out and have well-defined boundaries and fences around them, to prevent messes and ensure backwards compatibility.

    That said, Project Browser is an opinionated UI and all of its extension points are all on the backend side of things.

    If you really want to override the way installation works, I'd suggest hacking it on the backend by taking over some of the routes defined by the ProjectBrowserRoutes class (specifically the "begin", "require", and "apply" routes).

    These are not true extension points, so you're pretty much on your own and Project Browser cannot guarantee that it won't inadvertently break your overrides later, but if you insist on doing it, that's what I'd do. Trying to modify with the UI side of it is just going to lead to frustration.

Production build 0.71.5 2024