js_component examples and enum do not respect the prop type

Created on 26 February 2025, about 1 month ago

Overview

from @balintbrews

Sending values for enum or examples of JS component props as integers/numbers using saves them as strings. The effect of this is that the component input form we generate can’t set an example/default value for integer/number props with enum. I didn’t test if this is an issue with the HTTP API of the config entity implementation itself.

This can actually be seen in \Drupal\Tests\experience_builder\Functional\XbConfigEntityHttpApiTest::testJavaScriptComponent

The prop is sent as

'integer' => [
          'type' => 'integer',
          'title' => 'Integer',
          'examples' => [23, 10, 2024],
        ],

but returned as

integer' => [
          'title' => 'Integer',
          'type' => 'integer',
          'examples' => ['23', '10', '2024'],
        ],

Proposed resolution

return these as the correct type

User interface changes

πŸ› Bug report
Status

Active

Version

0.0

Component

Internal HTTP API

Created by

πŸ‡ΊπŸ‡ΈUnited States tedbow Ithaca, NY, USA

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

Merge Requests

Comments & Activities

Production build 0.71.5 2024