Create `FormElement` and `FormElementDescription` presentational components

Created on 3 December 2024, 4 months ago

Overview

๐Ÿ“Œ Split form components into `Drupal`-prefixed behavioral wrappers and presentational components Needs work introduced behavioral wrappers for form components. Among those new components, DrupalFormElement was added. That component can be improved to output two presentational components: FormElement and FormElementDescription.

Proposed resolution

Review @todo comments in DrupalFormElement.tsx and implement two new presentational components: FormElement and FormElementDescription. Follow existing patterns from the behavioral wrappers and how they output presentational components.

User interface changes

None.

๐Ÿ“Œ Task
Status

Active

Version

0.0

Component

Redux-integrated field widgets

Created by

๐Ÿ‡ณ๐Ÿ‡ฑNetherlands balintbrews Amsterdam, NL

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

Merge Requests

Comments & Activities

  • Issue created by @balintbrews
  • First commit to issue fork.
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia omkar-pd
  • Pipeline finished with Failed
    4 months ago
    Total: 767s
    #366807
  • Pipeline finished with Failed
    4 months ago
    Total: 677s
    #366881
  • Status changed to Needs review about 1 month ago
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia meghasharma

    I have reviewed the merge request after switching to the issue branch.
    - The code now correctly separates FormElement and FormElementDescription from DrupalFormElement.tsx, making it cleaner and easier to reuse.
    - The new components follow the existing structure and naming rules.
    - Everything working as expectedโ€”labels, descriptions, errors, and attributes are handled properly.
    Looks good to me!

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium wim leers Ghent ๐Ÿ‡ง๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ
      cy:command โœ˜  get	[data-xb-component-id="experience_builder:my-hero"]
          cy:command โœ˜  assert	expected **undefined** to have a length of **1** but got **0**
    

    looks like a legitimate e2e test failure though ๐Ÿ˜ญ

  • Pipeline finished with Failed
    about 1 month ago
    Total: 1054s
    #438586
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia omkar-pd

    I have rebased with the latest changes. All tests are passing except for one, which remains unaffected by the code changes.img[src*="/experience_builder/components/image/600x400.png"]' was found in iframe '[data-xb-preview="lg"][data-test-xb-content-initialized="true"][data-xb-swap-active="true"]': expected **false** to equal **true**

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium wim leers Ghent ๐Ÿ‡ง๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ

    Hmmm โ€ฆ

          cy:command โœ˜  assert	'img[src*="/experience_builder/components/image/600x400.png"]' was found in iframe '[data-xb-preview="lg"][data-test-xb-content-initialized="true"][data-xb-swap-active="true"]': expected **false** to equal **true**
    

    โ€ฆ I bet this is because you ran the CI pipeline, that it's resulting in /experience_builder-3491293/components/image/600x400.png โ€” we saw that elsewhere too ๐Ÿ˜ฌ Re-running the entire pipeline, to see if my hunch is right.

    Because in the screenshot the failed test, you can actually see the image loading just fine:

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium wim leers Ghent ๐Ÿ‡ง๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ
    diff --git a/ui/tests/e2e/component-operations.cy.js b/ui/tests/e2e/component-operations.cy.js
    index 40f5138f2..f460f84be 100644
    --- a/ui/tests/e2e/component-operations.cy.js
    +++ b/ui/tests/e2e/component-operations.cy.js
    @@ -406,7 +406,7 @@ describe('Perform CRUD operations on components', () => {
         cy.get('.primaryPanelContent').findByText('Image').click();
         // Check the default image src is set.
         cy.waitForElementInIframe(
    -      'img[src*="/experience_builder/components/image/600x400.png"]',
    +      'img[src*="/components/image/600x400.png"]',
         );
       });
     });
    

    would bypass the CI problem I described in #8, but it'd slightly reduce test coverage.

    This should AFAICT also work and keep the same level of test coverage:

    diff --git a/ui/tests/e2e/component-operations.cy.js b/ui/tests/e2e/component-operations.cy.js
    index 40f5138f2..080ce3a8b 100644
    --- a/ui/tests/e2e/component-operations.cy.js
    +++ b/ui/tests/e2e/component-operations.cy.js
    @@ -406,7 +406,7 @@ describe('Perform CRUD operations on components', () => {
         cy.get('.primaryPanelContent').findByText('Image').click();
         // Check the default image src is set.
         cy.waitForElementInIframe(
    -      'img[src*="/experience_builder/components/image/600x400.png"]',
    +      'img[src*="/components/image/600x400.png"][src*="/experience-builder"]',
         );
       });
     });
    

    ๐Ÿ™ƒ

  • ๐Ÿ‡ง๐Ÿ‡ชBelgium wim leers Ghent ๐Ÿ‡ง๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ

    Asking @balintbrews to sign off on this given he created this issue ๐Ÿ˜Š

  • ๐Ÿ‡ณ๐Ÿ‡ฑNetherlands balintbrews Amsterdam, NL
  • Pipeline finished with Failed
    about 1 month ago
    Total: 2232s
    #439010
  • ๐Ÿ‡ง๐Ÿ‡ชBelgium wim leers Ghent ๐Ÿ‡ง๐Ÿ‡ช๐Ÿ‡ช๐Ÿ‡บ
Production build 0.71.5 2024