Use Gin's edit form for Media Entries

Created on 19 May 2022, almost 3 years ago
Updated 10 February 2023, about 2 years ago

User interface changes

I love the edit interface for nodes and was wondering if it makes sense to adapt it to the media entry edit form and taxonomie term edit form as well. This would be more consistent and would increase the user experience even more. Please let me know want you think about the suggestion, how difficult it might be to develop and how I could help if you choose to implement such a feature.

โœจ Feature request
Status

RTBC

Version

3.0

Component

User interface

Created by

๐Ÿ‡ฉ๐Ÿ‡ชGermany vetiver root

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

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia realityloop

    another vote for RTBC

  • Status changed to Needs work about 2 years ago
  • ๐Ÿ‡ซ๐Ÿ‡ฎFinland sokru

    $route_names array need also following to support translations:

      'entity.media.content_translation_add'
    
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia mrinalini9 New Delhi

    Updated patch #4 by addressing #8, please review it.

    Thanks!

  • Status changed to RTBC almost 2 years ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States jsutta United States

    For some reason the media edit and content translation edit forms weren't using the node form, so I added their routes to the route list, which seems to have fixed the problem. I regenerated the patch based on this change and have attached it to this comment.

  • Open in Jenkins โ†’ Open on Drupal.org โ†’
    Core: 10.0.7 + Environment: PHP 8.2 & MySQL 8
    last update almost 2 years ago
    6 pass
  • Status changed to Needs work over 1 year ago
  • ๐Ÿ‡ฉ๐Ÿ‡ชGermany volkerk

    When the media edit form (and others) are loaded in ajax context (overlays, etc) assure that gin content form layout is not applied.

  • ๐Ÿ‡ฉ๐Ÿ‡ชGermany Hydra

    Just wanted to drop that here as an alternative solution to the patch https://www.drupal.org/project/gin_everywhere โ†’

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States jsutta United States

    I finally had the chance to give Gin Everywhere a try last week. In my opinion itโ€™s the way to go.

    In fact Iโ€™d also suggest making Gin Everywhere one of the Gin ecosystemโ€™s recommended modules.

  • ๐Ÿ‡ฉ๐Ÿ‡ชGermany osopolar ๐Ÿ‡ฉ๐Ÿ‡ช GER ๐ŸŒ

    For now I implemented hook_gin_content_form_routes_alter() to disable gin content form layout for ajax requests:

    function thunder_gin_content_form_routes_alter(array &$routes) {
      // Do not use gin content edit form layout in ajax context (overlays).
      if (\Drupal::request()->isXmlHttpRequest()) {
        $routes = [];
      }
    }
    

    See also issue for thunder distribution: ๐Ÿ› Current Gin version does not work with media_library_edit Active .

  • ๐Ÿ‡จ๐Ÿ‡ญSwitzerland saschaeggi Zurich

    @osopolar

    \Drupal::request()->isXmlHttpRequest()

    Is this still an issue on RC14 or the latest dev? The check you mentioned will break other forms likely (e.g. in webforms, content edit or form displays) as it will replace the sticky actions on any ajax request.

    Unfortunately in Drupal Core today, there is no proper way to test for an ajax request coming from an dialog/offcanvas as they often report back just as regular ajax call.

  • ๐Ÿ‡จ๐Ÿ‡ญSwitzerland saschaeggi Zurich

    If it's still an issue in some cases, can you try if ๐Ÿ“Œ Improve sticky actions implementation Active will eventually solve it? Thanks!

  • ๐Ÿ‡ฉ๐Ÿ‡ชGermany osopolar ๐Ÿ‡ฉ๐Ÿ‡ช GER ๐ŸŒ

    @saschaeggi Do you mean it will break the forms or it will just disable the sticky action in many places?

    For now I am fine with disabling sticky action. I would have disabled it completely, also for content forms, but there is no option for that. We use the thunder distribution, which pins the gin theme to 3.0.0-rc11, as "The update to current version of gin is quite complicated". I tried to use RC14, but I was not able to save the content form, as the content moderation select field (container) was moved to more actions and from there it did not work. I tried some related patches with no luck and decided to downgrade again, as resources for working on that are very limited.

  • ๐Ÿ‡จ๐Ÿ‡ญSwitzerland saschaeggi Zurich

    @osopolar break. We tried many implementations in the last couple of months and relaying on \Drupal::request()->isXmlHttpRequest() did produce a ton of issues. So for example if the first request isn't using Ajax, but once you change something it involves Ajax the buttons will be moved from the sticky actions to the end of the form which can lead so multiple issues.

    The whole implementation is rather complicated and we have another improvement being worked on in ๐Ÿ“Œ Improve sticky actions implementation Active which could use some testing and some helping hands to get this done correctly.

    The update to current version of gin is quite complicated

    This might be true, but as I haven't heard anything form the Thunder team, I can't speak for what the issues are on their end.

Production build 0.71.5 2024