Account created on 14 October 2005, over 19 years ago
#

Merge Requests

Recent comments

🇺🇸United States quicksketch

Thank you so much @davereid! I tested this merge request against an active project and it worked great. In my testing, I was upgrading from Drupal 10.4.1 to 11.1.5.

I tested by the following:

Added a custom repository to the root composer.json in the "repositories" section:

        {
            "type": "vcs",
            "url":  "https://git.drupalcode.org/issue/features-3447460.git"
        }

Changed my "require" line for Features to the branch:

        ...
        "drupal/core": "^11.1.5",
        "drupal/core-composer-scaffold": "^11.1.5",
        "drupal/core-project-message": "^11.1.5",
        "drupal/core-recommended": "^11.1.5",
        ...
        "drupal/features": "dev-3447460-drupal-11-compatibility",
        ...

Then deleted composer.lock and ran composer install.

As all my other dependencies were already upgraded on Drupal 11-compatible versions, I was then able to install Drupal 11 normally. Note that my site had several Feature modules that needed to be manually changed in their .info.yml files to core_version_requirement: '^9.3 || ^10 || ^11'.

Drupal 11 installed successfully, using the new Features version.

Once up and running I tested:

  • Viewing the list of all features.
  • Selecting a custom feature bundle for my installation profile.
  • Comparing features against active config.
  • Importing feature config into active.
  • Exporting/writing current config into feature modules via the bulk feature export.
  • Exporting/writing current config into a single feature via the feature configuration form
  • When exporting/writing a feature module, the .info.yml file was correctly changed to core_version_requirement: '^10 || ^11', including 11 and dropping 9.3.

I still see some existing issues that pre-existed like #2912545: Permissions stripped from roles, but dependencies added anyway , but I found no regressions and most importantly, this unblocks our project's upgrade to Drupal 11.

Code changes all look great to me too. This looks ready to go!

🇺🇸United States quicksketch

I updated the issue summary and closed duplicate issues to consolidate them to this one.

🇺🇸United States quicksketch

I'm trying to consolidate all the duplicate issues on this into one. Let's move over to 💬 Hide already selected items? Active , where this was first requested.

🇺🇸United States quicksketch

Let's consolidate this with https://www.drupal.org/project/entity_browser/issues/2952584 💬 Hide already selected items? Active , which has more activity and was filed earlier.

As far as I know, this feature does not yet exist.

🇺🇸United States quicksketch

It should be possible but there is a bug in the language handling of popups at the moment. See https://www.drupal.org/project/leaflet/issues/3479534 🐛 [10.2.x-dev] Map popups not showing translated content Active . I'm going to close this issue as a duplicate, since I think that merge request may already fix this problem.

🇺🇸United States quicksketch

This looks like a duplicate of https://www.drupal.org/project/leaflet/issues/3479534 🐛 [10.2.x-dev] Map popups not showing translated content Active (which was opened the same day). That issue already has a merge request that may fix the problem.

🇺🇸United States quicksketch

Thanks @claudiucristea for your work on this! Rather than commit to the 8.x-1.x branch, maybe this should take on a new branch as part of dropping Drupal 9 (and older 10) support? It would also be an opportunity to drop the "8.x-" prefix, and make this a safer, easier change for users upgrading, since any issues could be worked out in the new branch rather than impacting the (relatively stable) 8.x-1.x branch.

🇺🇸United States quicksketch

I filed two PRs for Drupal 11 support:

I'd suggest using the second PR but a new branch should be created to drop the 8.x- prefix. For people just wanting to get onto Drupal 11, either version should work.

🇺🇸United States quicksketch

quicksketch made their first commit to this issue’s fork.

🇺🇸United States quicksketch

Hi @ivnish and folks! I turned the reigns over to @socketwench quite a while ago, but after months of getting this request privately, and deferring to other maintainers, it seems they are not around.

@ivnish: I went ahead and granted you commit and release permissions!

@berdir: I've granted you Administer Maintainers permission. If you want to grant that permission onward to @ivnish or others, please do so!

I hope to see a thriving future for Flag module in Drupal. Thanks everyone!

🇺🇸United States quicksketch

I've seen the same myself when hitting through the UI but so far no issues just running with Drush.

Yeah this issue crops up very easily in the UI. For drush, you need to have a lot of migrations (20+) running via Drush for it to hit the limit, but we ran into that a fair amount also.

Sorry this fell off my radar since we got it working for our project, but we may be revisiting this soon.

🇺🇸United States quicksketch

Hi folks, I haven't worked on Flag module post D7, so I'm deferring entirely to @socketwench here.

🇺🇸United States quicksketch

Hi folks, the more the merrier in my opinion! Thanks @smustgrave for volunteering and @elachlan for accelerating the process. I'm no longer involved in the current versions of extlink or most other contrib projects so I'm happy to see this work distributed to more developers. I'll ask that you please try to continue as much backwards-compatibility as possible. Even major refactorings are okay, as long continuous upgrade hooks are in place. Thanks and welcome!

🇺🇸United States quicksketch

Thanks @sthomen! We have used your MR on our project and it has fixed all the issues with svg_image. However, the PR is full of white-space issues. It's using a mix of tabs and two spaces all over the place. Looking at the diff (https://git.drupalcode.org/project/svg_image/-/merge_requests/29/diffs) you can spot the lines that have tabs by the "over indentation", since they render as 4 spaces in GitLab.

The changes work overall, and includes new test coverage.

🇺🇸United States quicksketch

I couldn't get #40 working. Here's an updated version that works on Drupal 10/11.

🇺🇸United States quicksketch

Having now spent a couple of weeks regularly running into this error of "Too many requests" from Google's API, and having failed to request a rate limit increase from Google themselves, I took a hand at resolving this issue by extending this module's plugin class. Having put it together, I think solving the problem here through a configuration option would be the best solution.

I would suggest that a YAML configuration option be added like so:

  # Specify a cache lifetime in seconds. This will persist a local cache of
  # remote spreadsheet API request responses. This can be used to lower
  # the number of API requests to fit within rate limits and avoid a
  # "429 Too Many Requests" response from Google. Omit or set to 0 to
  # disable the cache.
  cache_lifetime: 10
🇺🇸United States quicksketch

On further investigation, this might be an issue with Migrate Tools module. When running through the API, only a single item is imported per batch request. But running through Drush seems to circumvent the problem. Note when running through Drush, When using Drush, only 2 HTTP requests are made total.

🇺🇸United States quicksketch

(Sorry wrong screenshot attached, fixing previous comment)

🇺🇸United States quicksketch

🐛 Refactor to use libraries and compatibility with Big Pipe Needs work is definitely a big improvement on the overall situation.

For our site, where we are using the "Dropdown" widget, the widget renders twice correctly, but it's also appending two <div id="google_translate_element2"> elements to the first widget on the page, see screenshot below:

After applying 🐛 Refactor to use libraries and compatibility with Big Pipe Needs work , it seems to do better in that the "google_translate_element2" element gets added after each corresponding widget, but it still has the problem that the same ID is being used twice. This is causing a ding by our accessibility testing tools, and it's malformed HTML to use the same ID twice.

🇺🇸United States quicksketch

In Backdrop-land we ended up porting the code used by CKEditor's Source plugin.

That port exists in Backdrop here: ckeditor5.formatter.js.

When the content is saved to the field, we run the formatter, like this:

      let newData = editor.getData();
      newData = Backdrop.ckeditor5.formatHtml(newData);
      editor.destroy();
      element.value = newData;

I also considered/tried building the formatting into the HTML engine (we ported DrupalHtmlEngine into our module as well). But I ran into a different problem in that when using CKEditor's "Source" button, the internal formatter expects all the HTML to be on one line. If you run the formatter on already-formatted HTML, you end up with lots of issues like double-indented lines and extra new lines added when viewing the source within CKEditor.

🇺🇸United States quicksketch

Not sure if you remember, but one time I asked you for a "quick sketch" at sandcamp and you drew a portrait of me. I still have it <3

Hahaha! I do remember. I think you're the only person that's ever asked me for that. I recall being pretty disappointed with my output, I haven't been doing much drawing for a couple decades now. Ha!

I'll try out the latest PR again. Thanks!

🇺🇸United States quicksketch

Awesome, I think that alone will be a big help.

🇺🇸United States quicksketch

I filed a PR that adds hover styling to the block sidebar and to the drop targets. The styling is very basic but it's a substantial UX improvement to give users visual indication both that a block is draggable and that a drop zone is droppable.

🇺🇸United States quicksketch

I read through and tried out the PR. The code rearrangement looks great; I think they'll be a lot of benefits to overriding classes like UpdateBlockForm and ConfigureSectionForm, allowing for other changes in the future. I also like the suppression of the layout changes message so there aren't duplicate messages. Seems like a lot of improvements are in the PR.

In testing, I encountered some issues:

  • The settings page at admin/config/content/layout-builder-plus for some reason now is empty; with the message: No entities have layout builder enabled., which is not accurate.
  • Enabling Layout Builder on a content type throws a fatal error: Drupal\Component\Plugin\Exception\ContextException: The entity context is not a valid context. in Drupal\layout_builder\Plugin\SectionStorage\SectionStorageBase->getContextDefinition() (line 150 of core/lib/Drupal/Core/Plugin/ContextAwarePluginTrait.php). . This can reproduced by visiting admin/structure/types/manage/page/display/default, enabling Layout Builder, then clicking "Manage Layout".

Since I couldn't get to the list of blocks, it was hard to actually test the new functionality. It seems like this would be done by adding a new "Layout Block"? This opens up some other questions/problems:

  • How is this functionality enabled/disabled? Is this a new block that can put into the list of promoted blocks?
  • Can nesting more than one level be prevented?
  • Can only certain layouts be allowed to be nested? For example there's not much point in nesting a single column, and perhaps a site might make layouts that are made to be nested vs those that are made to be root-level

This is such a huge set of changes it might be valuable to separate out the storage and class refactoring into its own issue, then handle the UI problems of nested layouts on top of those changes.

🇺🇸United States quicksketch

It looks like for the most part, all attributes are already defined that editor_advanced_link needs, and they upcast and downcast fine. What's missing is that when setting or getting attributes for a link around an image, the attributes need to come from the image model, not the anchor. CKEditors LinkImage "absorbs" the wrapping <a> tag into the image model.

Although this is not a comprehensive solution, in _addExtraAttributeOnLinkCommandExecute() something like this needs to be executed when link command is fired:

        // If there is an image within this link, apply the link attributes to
        // the image model's htmlLinkAttributes attribute.
        const imageUtils = editor.plugins.get('ImageUtils');
        const closestImage = imageUtils.getClosestSelectedImageElement(selection);
        if (closestImage) {
          const htmlLinkAttributes = { attributes: extraAttributeValues };
          writer.setAttribute('htmlLinkAttributes', htmlLinkAttributes, closestImage);
        }

Note when setting htmlLinkAttributes the actual attribute names should be used (i.e. rel or id) rather than the model names (linkRel or linkId).

🇺🇸United States quicksketch

I ran into this same issue while porting link handling to Backdrop CMS (see https://github.com/backdrop-contrib/ckeditor5/issues/54). We started with the editor_advanced_link CKEditor plugin and adapted it for modal dialogs. Normal link handling works fine, but as is the case here, it does not work to apply attributes to images.

I'm investigating this in our own module, whatever solution we find I'll try to post back here.

🇺🇸United States quicksketch

In using this approach, I found that it is not perfect because $paragraph->getParentEntity() will return NULL on new nodes. getParentEntity() actually loads an entity from the database, and in the event that it's a new node, it's not in the database yet.

However, I found that my patch is still useful because it sets the parent entity type and field name, so I can set up a conditional like this:

function mymodule_form_layout_paragraphs_component_form_alter(&$form, FormStateInterface $form_state) {
    /* @var \Drupal\paragraphs\Entity\Paragraph $paragraph */
  $paragraph = $form['#paragraph'];
  $parent_field_name = $paragraph->get('parent_field_name')->value;
  if ($parent_field_name === 'field_page_content') {
    $form['field_image']['#access'] = FALSE;
  }
}

And it's possible that getParentEntity() may be refactored to store the actual entity instead of loading from the database if 🐛 Cannot access parent entity in hook_entity_create Needs review is completed.

🇺🇸United States quicksketch

Here's a patch version in addition to the MR.

The fix is pretty simple, we just need to set the paragraph parent entity right after creating the new paragraph but before displaying the edit form.

🇺🇸United States quicksketch

Sorry, yeah I kicked off the discussion in the wrong direction there. We can convert the textfield to a select *with JS*, then run Select2 on the new select list field we just created. However, that means we're going to have to adopt a lot of custom code to deal with converting a textfield to a select list. You'd need to account for single/multiple values, parsing the input field, converting it to a select list with the entered options selected. Then run Select2 on the resulting new select field and load the results via AJAX like we had been doing before. Before the values are submitted to the server, you have to convert these values *back* into a input so it would all come in as a single value in POST. A select list will send multiple values as an array.

Rather than attempt to revert the select back to input, we'd probably find it easier to maintain the original input on the page, and update it as the select list is updated.

So in summary, to use Select2:

- PHP outputs a textfield onto the page.
- Hide the original textfield and create a select list "copy" of the field with JS
- Apply Select2 to the select list, load results via AJAX
- On value change, update the original textfield.
- On POST, the server gets the value from the original field. The select element we could leave with no name attribute, so it would be nothing but a client-side widget for manipulating the hidden field.

So basically we'd re-implement the functionality that was removed from Select2 to support hidden fields.

I don't know... it's possible but doesn't seem right.

🇺🇸United States quicksketch

I just spent a day trying to upgrade the D7 Select2 module to support the new 4.0.0 version of the library. It *really* doesn't like working with input fields. Dropping support for (hidden) inputs is actually listed as a feature of the new version: https://select2.github.io/announcements-4.0.html#hidden-input

In trying to use it on input textfields, Select2 simply has no support whatsoever now. It actually tries to embed <option> tags inside of the textfield <input> element. The only hope we'd have is doing as Wim suggested and replace the textfields with select elements.

I don't know if this is going to be a suitable replacement for autocomplete text fields. A select list isn't going to be the right element when dealing with large lists, which is pretty much any situation we have autocomplete currently: author name, term tags, the search on api.drupal.org, etc.

The whole situation is disappointing. The "best" library for autocomplete basically doesn't want to deal with autocomplete and wants to focus exclusively on replacing select list elements. I suppose it shouldn't be too surprising, considering their past claims that autocomplete/type-ahead is outside the scope of their goals: https://github.com/select2/select2/issues/17.

🇺🇸United States quicksketch

This looks like a great direction.

Looking at the library and the patch, what approach should be used to bring consistency to non-Select2 select lists and Select2-enabled select lists? @aspilicious's image in #55 shows the differences pretty clearly. I'm guessing the default styling for Select2 would be left in place (considering there are no "skins") and the theme would take on the responsibility of styling them individually (as Seven theme styles select lists already).

🇺🇸United States quicksketch

Yeah the #type = managed_file element has mitigated this problem significantly, since most uploads would want to use the more advanced managed_file element anyway (who wouldn't want an AJAX-upload and progress bar?) I personally don't think this is a "major" issue any more and it's not affecting nearly as many sites now since File module is available in core to provide the majority use-case. This seems like just an inconvenience now.

🇺🇸United States quicksketch

Ha, this was "fixed" 3 years(!) ago in #64984-4: File Uploads fail when field is set to "required" , but it never made it into core. Sad, sad. Here's a reroll of my old patch, not yet tested, but just putting this on the radar.

Production build 0.71.5 2024