If a module installs additional dependencies, they should show up as installed right away

Created on 28 February 2025, about 1 month ago

Problem/Motivation

If you install a module that depends on other modules, the module you explicitly installed gets the "Installed" badge right away, but the dependencies don't, even though they're also installed. It would be cool if the frontend reflected the actual backend status as closely as possible.

Proposed resolution

Not sure yet.

Feature request
Status

Active

Version

2.0

Component

User experience

Created by

🇺🇸United States phenaproxima Massachusetts

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

Comments & Activities

  • Issue created by @phenaproxima
  • 🇺🇸United States phenaproxima Massachusetts

    This one really had me stumped for a couple of days because there is no way for activators to know which source exposed the project they're working with, and more importantly, there is no way to know which source(s) expose the dependencies of a particular project. That's a good thing -- activators should not care about sources. But, since source IDs are used to identify projects sent to the frontend, this throws up a conundrum.

    But I thought of a way to do it.

    We should introduce a new AJAX command: RefreshProjectCommand. It takes two arguments: an array of criteria used to match a project already sent to the frontend, and an array of properties to update on that project. For example, let's imagine we install Pathauto (using ModuleActivator), which implicitly installs Token as well since that is a dependency. The activator could send something like this to the frontend:

    new RefreshProjectCommand(
    // Criteria by which to find the project.
    [
      'project_machine_name' => 'token',
      'type' => 'module',
    ],
    // Properties to update.
    ['status' => 'active']);
    

    This would be pretty clean. The activators could continue to do what they do, which is...send AJAX commands. And the frontend would have a dedicated AJAX callback that knows how to deal with this.

  • 🇮🇳India narendraR Jaipur, India

    Earlier all projects were re-rendered on installing project. Adding related issue 🐛 [Svelte] Remove the $updated key Active

  • 🇺🇸United States phenaproxima Massachusetts

    #3 gives me an idea: we could add a new AJAX command that forces all visible instances of Project Browser to reload their data, using the previously known set of query parameters.

    Activators which know that dependencies were enabled -- and we could add a trait for activators to easily figure this out -- could return this command, and that would get everything that was installed, to show up as installed.

    It's a bit brute force, but I'm not sure there's a cleaner way to do this. I've been puzzling over this one for days and the architecture just don't allow it to be done using RefreshProjectsCommand.

    Assigning to myself to see if this can work at all.

Production build 0.71.5 2024