Brooklyn, NY
Account created on 25 September 2008, over 16 years ago
#

Merge Requests

More

Recent comments

🇺🇸United States jrockowitz Brooklyn, NY

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

🇺🇸United States jrockowitz Brooklyn, NY

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

🇺🇸United States jrockowitz Brooklyn, NY

We could implement the work-around inside the webform module if required.

🇺🇸United States jrockowitz Brooklyn, NY

The patch removes the expanded attribute which I think improves the accessiblity for screen readers.

Even though a machine/automated review says the tag + attributes is invalid, it does not mean we should remove the attribute to pass an automated test.

🇺🇸United States jrockowitz Brooklyn, NY

I am not sure this is resolvable. Changing the tooltip's HTML tag will cause visual regression on the sites targeting the SPAN tags. You might have to use the patch AS-IS.

🇺🇸United States jrockowitz Brooklyn, NY

The challenge will be adding Ajax callbacks to the widget.

🇺🇸United States jrockowitz Brooklyn, NY

@damienmckenna I am hesitant to add new features, but maybe this is simple to implement, and the variant dropdown is only visible if the webform is using variants.

The webform nodes 'References' kind of allows people to build nodes for different variants.

🇺🇸United States jrockowitz Brooklyn, NY

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

🇺🇸United States jrockowitz Brooklyn, NY

jrockowitz changed the visibility of the branch 3517069-accessibility-issue-tabs to hidden.

🇺🇸United States jrockowitz Brooklyn, NY

This is most likely the future direction for external libraries.

Create a mirror for external library dependencies for composer support Active

🇺🇸United States jrockowitz Brooklyn, NY
🇺🇸United States jrockowitz Brooklyn, NY

Please create an MR and lets see if the test pass.

I am not sure we can make this type of access control change without impact existing expectations.

🇺🇸United States jrockowitz Brooklyn, NY

People should weigh-in if this enhancement is useful.

🇺🇸United States jrockowitz Brooklyn, NY

The short answer is people have to upgrade to resolve this issue

🇺🇸United States jrockowitz Brooklyn, NY

I reverted the commit.

🇺🇸United States jrockowitz Brooklyn, NY

@BramDriesen My jaw dropped when I logged back in. I was about to re-roll the MR when I saw that you had already done it. Thank you!!!

🇺🇸United States jrockowitz Brooklyn, NY

We probably need to rebase this because of 📌 Convert to OOP Hooks Active

🇺🇸United States jrockowitz Brooklyn, NY

Your persistence has paid off. I am at DrupalCon is time to merge this. Thank you!!!

🇺🇸United States jrockowitz Brooklyn, NY

While it is a big patch, this is the same process used for core to convert, and we can spot check that the conversions are accurate. Since this is rector it's really just copying the hooks to a hook class an method.

Webform also has more tests than most modules so we can have more confidence than most modules would have that this won't introduce systemic issues.

I completely agree with you that this should not introduce systemic issues and merging it would nudge more contrib modules to use OOP hooks.

🇺🇸United States jrockowitz Brooklyn, NY

I have to agree that this is a release blocker

🇺🇸United States jrockowitz Brooklyn, NY

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

🇺🇸United States jrockowitz Brooklyn, NY

Since we are changing the $form array, this should be only committed to 6.3.x

🇺🇸United States jrockowitz Brooklyn, NY

Here is the change record. With tests passing, I am fine with merging this.

🇺🇸United States jrockowitz Brooklyn, NY

There are security implications for allowing someone to specify the submission owner via query parameter.

ChatGPT suggested the below approach which is a valid solution

/**
 * Implements hook_webform_submission_presave().
 *
 * Allow setting the webform submission owner from a query string parameter.
 */
function MYMODULE_webform_submission_presave(WebformSubmissionInterface $webform_submission) {
  // Check if a query parameter 'submission_owner' exists.
  $owner_uid = \Drupal::request()->query->get('submission_owner');
  
  if ($owner_uid && is_numeric($owner_uid)) {
    // Ensure the user ID exists in the system.
    $user = \Drupal\user\Entity\User::load($owner_uid);

    if ($user) {
      // Set the submission's owner to the user ID from the query string.
      $webform_submission->setOwnerId($owner_uid);
    }
  }
}
🇺🇸United States jrockowitz Brooklyn, NY

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

🇺🇸United States jrockowitz Brooklyn, NY

I think we need to fork the webform bootstrap 3 module into a dedicated project and deprecate the code in the webform module.

🇺🇸United States jrockowitz Brooklyn, NY

In a form alter hook, you can change the $form['progress'] weight or alter the $form array.

ChatGPT suggested the below approach, which is completely valid and the simplest solution

/**
 * Implements hook_form_alter().
 */
function mymodule_form_alter(array &$form, \Drupal\Core\Form\FormStateInterface $form_state, $form_id) {
  // Check if the form ID matches the webform submission form.
  if ($form_id == 'webform_submission_form') {
    // Save the progress element into a temporary variable.
    $progress_element = $form['progress'];
    // Remove the progress element.
    unset($form['progress']);
    // Add the progress element to the end of the form.
    $form['progress'] = $progress_element;
  }
}
🇺🇸United States jrockowitz Brooklyn, NY

Please review the MR based on #17 which tries to keep the changes as simple as possible.

🇺🇸United States jrockowitz Brooklyn, NY

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

🇺🇸United States jrockowitz Brooklyn, NY

I am for any patch that simplifies the JS code and is safe to commit.

Core at some point reversed https://www.drupal.org/node/1570578 and use strict is no longer included in core JS.

🇺🇸United States jrockowitz Brooklyn, NY

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

🇺🇸United States jrockowitz Brooklyn, NY

Let's update the URL field to support 2048 characters @see https://serpstat.com/blog/how-long-should-be-the-page-url-length-for-seo/

🇺🇸United States jrockowitz Brooklyn, NY

Let's update the URL field to support 2048 characters @see https://serpstat.com/blog/how-long-should-be-the-page-url-length-for-seo/

🇺🇸United States jrockowitz Brooklyn, NY

Let's update the URL field to support 2048 characters @see https://serpstat.com/blog/how-long-should-be-the-page-url-length-for-seo/

🇺🇸United States jrockowitz Brooklyn, NY

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

🇺🇸United States jrockowitz Brooklyn, NY

I think the current OOTB approach is the use something like IMCE to upload a file to the public file directory and attach the file via the Attachment URL element.

If we were going to support attachments via file upload I would opt for Attachment File element, which could be maintained in a dedicated contributed module. Does this approach make sense?

🇺🇸United States jrockowitz Brooklyn, NY

Make sense that a mailer application needs the body to be a string.

🇺🇸United States jrockowitz Brooklyn, NY

Adding a new property to Name would require a new 6.4.x version of Webform to be created.

This improvement should be handled in a dedicated contrib module. You can also use https://www.drupal.org/project/webform_composite to create this variation of a name input.

🇺🇸United States jrockowitz Brooklyn, NY

I tested the fix in Chrome and Firefox and it looks good.

🇺🇸United States jrockowitz Brooklyn, NY

MRs are welcome to help resolve this

🇺🇸United States jrockowitz Brooklyn, NY

We have been using this patch on production and it seem sreasonable that we want to ensure the webform_image_select.element library loads after webform.filter.js

🇺🇸United States jrockowitz Brooklyn, NY

The tweak looks fine to me, and enough people have reviewed this

🇺🇸United States jrockowitz Brooklyn, NY

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

🇺🇸United States jrockowitz Brooklyn, NY

I validated that a group_relationship entity exists via https://git.drupalcode.org/project/group/-/blob/3.3.x/src/Entity/GroupRe... and it was added in 2022 (@see #3303321: Drop 2.0.x upgrade path and update machine names )

The code being updated was added via 📌 Support group v2/v3 Fixed
I would be happy to merge this is someone can confirm that we should have looking for the group_relationship entity and NOT the group_relation entity

🇺🇸United States jrockowitz Brooklyn, NY

I think gradually fixing eslint and other JS issue in smaller MRs might be the only approach because there is no JavaScript test coverage in the module.

🇺🇸United States jrockowitz Brooklyn, NY

I am going to go with this MR is good enough. The only breaking change is the removal of the completely unused \Drupal\webform\Plugin\WebformElement\TextFormat::hasCompositeElement added in 2017.

🇺🇸United States jrockowitz Brooklyn, NY

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

🇺🇸United States jrockowitz Brooklyn, NY

I think the webform_default is no longer visible via the UI, and we might be able to close this ticket since we can't reproduce the issue and the suggestion from #6 is a valid fix.

🇺🇸United States jrockowitz Brooklyn, NY

I think the webform_default is no longer visible via the UI, and we might be able to close this ticket since we can't reproduce the issue and the suggestion from #6 is a valid fix.

🇺🇸United States jrockowitz Brooklyn, NY

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

🇺🇸United States jrockowitz Brooklyn, NY

I was experimenting with this patch and a bunch of update hooks failed with the below error

LogicException: withRelatableResourceTypes() must be called before getting relatable resource types. in Drupal\jsonapi\ResourceType\ResourceTypeRelationship->getRelatableResourceTypes() (line 48 of /var/www/html/docroot/core/modules/jsonapi/src/ResourceType/ResourceTypeRelationship.php) #0 /var/www/html/docroot/core/modules/jsonapi/src/ResourceType/ResourceType.php(406): Drupal\jsonapi\ResourceType\ResourceTypeRelationship->getRelatableResourceTypes()

Sorry, I can't provide more details.

Production build 0.71.5 2024