Remove implicit dependency on node module for gin content form

Created on 15 February 2023, about 2 years ago

Problem/Motivation

The gin content form feature has an implicit dependency on the node module. Most of the styling works without the node module, however it seems impossible to move any fields or revision metadata into the sidebar until the node module is enabled.

I first mentioned this in #3188521: Improve content form detection β†’ here: https://www.drupal.org/project/gin/issues/3188521#comment-14157515: β†’

It's also worth nothing that while this enables custom entity types to use the node edit form, this still requires that the node module is installed. We don't require the node module for farmOS, but are hoping to use the same layout of the node edit form.

Copying my notes from there:

I'm not sure how possible it would be to decouple this from the node module... Gin is dependent on the meta form element which is provided by the NodeForm::form method. The patch from #1 changes this because obviously custom entity types can't be expected to extend from the NodeForm. But it also seems like Gin is providing most (but not all?) of the styling for the layout-region-node-secondary, and obviously is using the "node" in the name of these classes.. So maybe the CSS/JS (the claro/node-form library, and it's dependency on node/form are the only remaining implicit dependencies on the node module? Does it seem possible to abstract this out? If possible, this should probably be tackled in a separate issue.

I believe the meta form element issue has been fixed with the GinContentFormHelper class. The implicit library dependency may be another issue. In a bit more detail:

Interestingly.. both of these libraries are quite simple and only include a single css layout file, presumably for the sidebar?:
- Claro: https://git.drupalcode.org/project/drupal/-/blob/9.5.3/core/themes/claro...
- Node: https://git.drupalcode.org/project/drupal/-/blob/9.5.3/core/modules/node...

I wonder how much of this is overridden by the Gin edit form css: https://git.drupalcode.org/project/gin/-/blob/8.x-3.0-rc1/styles/compone... and Gin's node-edit-form twig template anyways? If so, perhaps this would be a good opportunity to rename things away from "node" and use more generic language, maybe "content" (for content entities? or can this be used for config too??)

Steps to reproduce

- Create a custom entity type with revisions enabled
- Add entity type add/edit form as a gin content form route via hook_gin_content_form_routes()
- Go to the custom entity form and observe that the gin content form has taken over, but has an empty sidebar.
- Enable the node module. Observe that the sidebar is now populated with the revision metadata.

Proposed resolution

TBD

Remaining tasks

Determine if / how to remove the implicit dependency on Node module
Determine if we can generalize this code away from "node"
Implement, Review, Merge

User interface changes

Custom entity types can use gin content form without Node module being enabled

API changes

None

Data model changes

None

✨ Feature request
Status

Active

Version

3.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States paul121 Spokane, WA

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

Merge Requests

Comments & Activities

  • Issue created by @paul121
  • πŸ‡ΊπŸ‡ΈUnited States paul121 Spokane, WA

    Aha! A big reason why this doesn't work without the node module may simply be because the node-edit-form template isn't registered. Gin does override this template in templates/node/node-edit-form.html.twig but it doesn't register the template itself, that is done by the node module here: https://git.drupalcode.org/project/drupal/-/blob/9.5.3/core/modules/node...

    I found that simply registering the template in the Gin theme solves the issue; the gin content form works (the sidebar is populated) without the node module being enabled:

    /**
     * Implements hook_theme().
     */
    function gin_theme() {
    
      // Add node edit form template if not provided by node module.
      $themes = [];
      if (!\Drupal::moduleHandler()->moduleExists('node')){
        $themes['node_edit_form'] = [
          'render element' => 'form',
          'template' => 'node/node-edit-form',
        ];
      }
      return $themes;
    }
    

    So that is great! But then this makes me wonder: is the claro/node-form library really needed? I commented out this line and the gin content form still looks and works just fine: https://git.drupalcode.org/project/gin/-/blob/8.x-3.0-rc1/src/GinContent... That said, I'm testing with a custom entity type, not nodes, so perhaps this library is still needed for nodes.

    I think I need some input from @saschaeggi to confirm.. but it seems that Gin may override nearly all the layout styles the claro/node-form and node/form libraries provide? If this is the case, does it make sense to try and move towards a more generic content-edit-form template & libraries?

    I'm going to create branches with both approaches:
    1) Still using node-edit-form, maybe as a more near term solution
    2) Renaming as a content-edit-form to generalizing and moving away from nodes. If much of the css classnames change this could certainly be a breaking change and require a new major version.

  • Status changed to Needs review about 2 years ago
  • πŸ‡ΊπŸ‡ΈUnited States paul121 Spokane, WA

    I'm going to create branches with both approaches:

    I did a quick test with a custom node bundle as well and both of these approaches seem to be working (see screenshot). But it would be nice if someone could further test option 2 with nodes and custom content types, especially if you are already using this Gin content form for your custom entity type.

    I assume that option 2 would be too much of a breaking change (beyond css, its likely others would depend on the template name for preprocessing, etc) so I will just open a MR for option 1 for now.

  • πŸ‡ΊπŸ‡ΈUnited States paul121 Spokane, WA

    Adding correct screenshot, this is a simple "test" node type with the content-edit-form

  • πŸ‡ΊπŸ‡ΈUnited States paul121 Spokane, WA

    Aha. With some help from @wotnak I've found a slightly easier to way to adopt content forms in farmOS. We can register the node_edit_form template ourselves as a little hack with just the following:

    /**
     * Implements hook_theme().
     */
    function farm_ui_theme_theme($existing, $type, $theme, $path) {
      return [
        'node_edit_form' => [
          'render element' => 'form',
        ],
      ];
    }
    

    Once we implement hook_gin_content_form_routes() the content form starts working great.

    There is just one issue, this warning is thrown in the log messages the first time you load an entity form after clearing the cache:

    User warning: The following theme is missing from the file system: node in Drupal\Core\Extension\ExtensionPathResolver->getPathname() (line 63 of /var/www/html/web/core/lib/Drupal/Core/Extension/ExtensionPathResolver.php)

    Deprecated function: dirname(): Passing null to parameter #1 ($path) of type string is deprecated in Drupal\Core\Extension\ExtensionPathResolver->getPath() (line 85 of /var/www/html/web/core/lib/Drupal/Core/Extension/ExtensionPathResolver.php)

    This is caused by the implicit (and unnecessary) dependency on the node module as described above. Removing the claro/node-form library solves this issue. I'm attaching a patch for this single change so that we can use it in farmOS, but it should not be considered a complete fix for this issue.

  • πŸ‡¨πŸ‡­Switzerland saschaeggi Zurich

    Hey Paul

    I left some comments in the MR

    Cheers!

  • Pipeline finished with Success
    3 months ago
    Total: 201s
    #384253
  • Pipeline finished with Success
    3 months ago
    Total: 226s
    #384256
  • πŸ‡ΊπŸ‡ΈUnited States paul121 Spokane, WA

    Thanks @saschaeggi, please see new MR 563!

    Hey what is your opinion on the other approach I proposed to generalize the "node edit form" to be the "content edit form"? You can see the changes in that branch here, I just didn't make a PR for it: https://git.drupalcode.org/issue/gin-3342164/-/compare/8.x-3.x...3342164...

    It isn't clear to me how much Gin depends on the core claro/node-form library/styles/JS, in which case this could also be a bit of a core issue. Otherwise if Gin really overrides all of the claro node form template + library then perhaps this is an opportunity for Gin to continue further improve this outside of core.

Production build 0.71.5 2024