Setting default values does work for boolean props

Created on 7 December 2024, 4 months ago

Overview

Given the following prop...

    expanded:
      type: boolean
      title: Expand by default
      description: Note that all accordions are expanded by default in the Experience Builder editor.
      default: false
      default_value: false
      examples: [false]

none of default, default_value, nor examples seem to work for setting a default unchecked state for a boolean prop.

This may be user-error, but even if it is, it was fairly unclear how to accomplish this. I didn't find anything in https://www.drupal.org/docs/develop/theming-drupal/using-single-director... β†’ related to what examples are, and https://www.drupal.org/docs/develop/theming-drupal/using-single-director... β†’ indicates that default can be used for this purpose?

Proposed resolution

Make default values work with a mechanism, or educate and document the mechanism in a more prominent place.

User interface changes

None

πŸ› Bug report
Status

Active

Version

0.0

Component

Page builder

Created by

πŸ‡ΊπŸ‡ΈUnited States luke.leber Pennsylvania

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

Merge Requests

Comments & Activities

  • Issue created by @luke.leber
  • πŸ‡§πŸ‡ͺBelgium wim leers Ghent πŸ‡§πŸ‡ͺπŸ‡ͺπŸ‡Ί

    🧐 Fixed the title! πŸ˜„

          default: false
          default_value: false
          examples: [false]
    

    XB uses the first example value as the default. You should be able to see this at /admin/config/development/configuration/single/export: export the Component config entity for this SDC and you'll explicitly see the default_value in there.

    Relevant docs: https://git.drupalcode.org/project/experience_builder/-/blob/0.x/docs/co... β€” but that does NOT state that that is used as the default value. A slight tweak to that simple bullet would go a long way I think :)

    This means the test coverage in ui/tests/e2e/prop-types.cy.js is incomplete:

      it('Boolean', () => {
        cy.waitForElementContentInIframe('#test-bool code', 'true');
        cy.waitForElementContentNotInIframe('#test-bool code', 'false');
        cy.findByLabelText('Bool')
          .assertToggleState(true)
          .toggleToggle()
          .assertToggleState(false);
    
        cy.waitForElementContentInIframe('#test-bool code', 'false');
        cy.waitForElementContentNotInIframe('#test-bool code', 'true');
      });
    

    β€” Any chance you could add the missing test coverage? πŸ™

  • πŸ‡§πŸ‡ͺBelgium wim leers Ghent πŸ‡§πŸ‡ͺπŸ‡ͺπŸ‡Ί

    Actually, I think this is clearer still.

  • Pipeline finished with Failed
    4 months ago
    Total: 731s
    #363684
  • Pipeline finished with Failed
    4 months ago
    Total: 700s
    #363695
  • πŸ‡ΊπŸ‡ΈUnited States luke.leber Pennsylvania

    β€” Any chance you could add the missing test coverage? πŸ™

    All signs point to probably not 😭. NW and slowly backs away.

  • πŸ‡§πŸ‡ͺBelgium wim leers Ghent πŸ‡§πŸ‡ͺπŸ‡ͺπŸ‡Ί

    Also, SDC allows default: … because it's part of JSON Schema itself, but the SDC subsystem doesn't actually use/support it. I observed this 4 months ago at #3462705-19: [META] Missing features in SDC needed for XB β†’ .

    IOW: you're running into one of many SDC bugs/oversights we've spotted while working on XB, see πŸ“Œ [SPIKE] Comprehensive plan for integrating with SDC Active for the overview :)

  • Pipeline finished with Failed
    4 months ago
    Total: 640s
    #364297
  • Pipeline finished with Failed
    4 months ago
    Total: 771s
    #364321
  • Pipeline finished with Failed
    4 months ago
    Total: 729s
    #364348
  • Status changed to Needs work 17 days ago
  • πŸ‡ΊπŸ‡ΈUnited States Kristen Pol Santa Cruz, CA, USA

    I thought I already reported this a long time ago… hmm… maybe it was closed

  • πŸ‡ΊπŸ‡ΈUnited States Kristen Pol Santa Cruz, CA, USA

    πŸ› [PP-1] Can't toggle boolean prop back to true after changing to false Postponed was marked as duplicate but never got fixed it seems

  • πŸ‡§πŸ‡ͺBelgium wim leers Ghent πŸ‡§πŸ‡ͺπŸ‡ͺπŸ‡Ί
  • πŸ‡ΊπŸ‡ΈUnited States Kristen Pol Santa Cruz, CA, USA

    Thanks for bumping priority :) I find that I’ll set to false and the component behavior seems fine but the UI later shows it as true even though the component still seems to behave as it’s false … maybe that’s what’s explained but I’m on my phone on my flight to Atlanta so hard to read well :D

Production build 0.71.5 2024