<textarea>s using Text Editor always fail HTML5 validation when "required" is added via #states

Created on 10 May 2016, about 8 years ago
Updated 26 June 2024, about 8 hours ago

Problem/Motivation

There was an issue: #1954968: Required CKEditor fields always fail HTML5 validation โ†’
"An invalid form control with name='{name}' is not focusable" JS error is thrown when a textarea has "required" attribute, but is not visible.

This was fixed in CKEditor: https://dev.ckeditor.com/ticket/8031
Now CKEditor removes the "required" attribute from textarea during initialization.

But the problem still exist if the "required" attribute is added via #states.

Steps to reproduce

Proposed resolution

Make this more reliable to handle if a field is changed to required via #states that the field gets marked as required and editors are notified when HTML5 validation fails,so that editors know what the problem is and can act on it.

Remaining tasks

User interface changes

API changes

Data model changes

Release notes snippet

๐Ÿ› Bug report
Status

Needs review

Version

11.0 ๐Ÿ”ฅ

Component
Editorย  โ†’

Last updated about 7 hours ago

Created by

Live updates comments and jobs are added and updated live.
  • JavaScript

    Affects the content, performance, or handling of Javascript.

Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

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

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States swirt Florida

    This is still an issue even though #1954968: Required CKEditor fields always fail HTML5 validation โ†’ was already merged a long time ago. That solution did not account for a change of states.

    Also, this is minor at best, this is an extreme edge case that will at most affect 0.01%
    Conditionally marking a field as required using #state makes no sense to me, because it means Form API (the server side) can't enforce it. What am I missing?

    I think there are two assumptions being made here.

    1. Assumption: It doesn't affect a lot of users. - I think it does, I have run into this on the past several large govt projects I have worked on. Each time we have to come up with less than ideal solutions.
    2. Assumption: Conditionally marking it as required is nonsensical because the api can't enforce it. - This is not always true. Sometimes we go to the extent of writing constraints and validators to enforce it. Unfortunately it never gets that far because html5 validation prevents it from ever making it that far, but the editor has not idea because ckeeditor mangles the field id so it no longer is focusable.
    3. Assumption: it is not a bug. - #states supports requiredness, so it is a bug that any field using ckeditor can not properly get passed html5 validation if it was set by #states.

    2. #states supports it, so it is a bug that any field using ckeditor can not properly get passed html5 validation

  • ๐Ÿ‡จ๐Ÿ‡ฆCanada mahde Vancouver

    I agree with swirt, I am facing this issue a lot with too many projects as well!

  • Status changed to Postponed: needs info 11 months ago
  • ๐Ÿ‡ณ๐Ÿ‡ฟNew Zealand quietone New Zealand

    This is reported on Drupal 8, which is no longer supported. Does this problem exist on a supported version of Drupal? If so, update the version value. Thanks

  • Status changed to Active 11 months ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States swirt Florida

    Yes this is still an issue in the D9. Can not say for certain on D10

  • ๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom aaron.ferris

    This is an issue on Drupal 10.1.

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium joevagyok

    @Wim Leers, here is the 0.01%! :)

    We have many fields conditionally marked as required by states and having that enforced by symfony constraints on API level.
    There are custom fields with multiple subfields (columns) shipped by several contributed modules which might require such logic on any site. So I believe it is a real issue, just like others mentioned before me.

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium joevagyok

    The patch didn't work for me, and for some reason even when it worked, for some paragraph fields, the reinitialization placed an additional editor after the first one, so I ended up having 2 complete editors rendered for a single field.

    So I tried to come up with a simple and clean workaround this problem, which basically keeps the editor's source element up to date via a listening to the change event inside the editor model. So when submit happens, the source element contains the data from the editor.

    Pasting the JS code here:

    /**
       * Handle CKEditor change event to keep the source element up to date.
       *
       * @type {Drupal~behavior}
       */
      Drupal.behaviors.ckeditor5SourceElementUpdater = {
        attach: function (context, settings) {
          let $context = $(context);
    
          // Iterate through all CKEditors on the page.
          $(once('ckeditor5-states', $context.find('[data-ckeditor5-id]').filter(':input'))).each(function () {
            if (this.dataset.ckeditor5Id) {
    
              let editorId = this.dataset.ckeditor5Id;
              // Using setTimeout() in order to ensure all CKEditors are loaded.
              setTimeout(function() {
                const editor = Drupal.CKEditor5Instances.get(editorId);
    
                if (editor) {
                  $(once('ckeditor5-states-binding', editor.sourceElement)).each(function() {
                    editor.model.document.on('change', function () {
                      if (editor.getData() !== editor.sourceElement.textContent) {
                        editor.updateSourceElement();
                        $(editor.sourceElement).trigger('change', [true]);
                      }
                    });
                  });
                }
              });
            }
          });
        }
      };
  • Status changed to Needs work 5 months ago
  • ๐Ÿ‡ง๐Ÿ‡ชBelgium Wim Leers Ghent ๐Ÿ‡ง๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ

    Off-topic: I actually worked on something related a few weeks ago: ๐Ÿ› Regression from #3341682: #states + #required do not automatically work together, resulting in an unsubmittable AccountSettingsForm Fixed , but almost the opposite direction.

    On-topic: let's start with writing a failing functional JS test that shows the problem, so that we can fix this and never regress again! ๐Ÿ˜Š Then the JS snippet in #13 should make that test pass. ๐Ÿ‘

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium Wim Leers Ghent ๐Ÿ‡ง๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ
  • Pipeline finished with Failed
    4 months ago
    #118102
  • ๐Ÿ‡ง๐Ÿ‡ชBelgium joevagyok

    Pushed the test only to the MR which will fail.

  • Pipeline finished with Failed
    4 months ago
    Total: 484s
    #118113
  • Pipeline finished with Failed
    4 months ago
    Total: 176s
    #118122
  • Pipeline finished with Failed
    4 months ago
    Total: 164s
    #118147
  • Pipeline finished with Failed
    4 months ago
    Total: 178s
    #118164
  • Pipeline finished with Success
    4 months ago
    Total: 490s
    #118173
  • Status changed to Needs review 4 months ago
  • ๐Ÿ‡ง๐Ÿ‡ชBelgium joevagyok

    Pushed the fix which made the test pass.

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium joevagyok
  • Status changed to Needs work 4 months ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Issue summary appears incomplete. Please use the standard issue template.

  • ๐Ÿ‡บ๐Ÿ‡ธUnited States swirt Florida

    I just updated the summary to use the template.

  • Status changed to Needs review 2 months ago
  • ๐Ÿ‡ง๐Ÿ‡ชBelgium joevagyok
  • Status changed to Needs work about 2 months ago
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States smustgrave

    Left 2 comments on MR, one is nitpicky but believe return docs should be included.

  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia pradhumanjainOSL

    pradhumanjain2311 โ†’ made their first commit to this issueโ€™s fork.

  • Pipeline finished with Failed
    about 2 months ago
    #159110
  • Pipeline finished with Running
    about 2 months ago
    #159523
  • Status changed to Needs review about 8 hours ago
  • ๐Ÿ‡บ๐Ÿ‡ฆUkraine twilderan Kyiv, Ukraine ๐Ÿ‡บ๐Ÿ‡ฆ

    Fix from related MR worked for me on Drupal core 10.2.2 and Conditional Fields 4.0.0-alpha5.

    Needs review from community and we can include it in next release to fix this and related https://www.drupal.org/project/conditional_fields/issues/2988937 ๐Ÿ› Dependency using body as target results in "An invalid form control with name='body[0][value]' is not focusable." with ckeditor enabled Needs review

Production build 0.69.0 2024