- Issue created by @larowlan
- π¦πΊAustralia larowlan π¦πΊπ.au GMT+10
Working on this as it now blocks π [PP-1] Send page data to Drupal for storage in auto-save store Postponed: needs info
- Merge request !512Issue #3493941: Update client-side model to track prop sources β (Merged) created by larowlan
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
Pre-emptive high-level review, prior to a green test run. π
I am worried how this is changing the tightening that π Tighten validation: only allow StaticPropSource in XB fields + PageTemplate, DynamicPropSource in ContentTypeTemplate Active brought. AFAICT that's only necessary because π± [META] 7. Content type templates β aka "default layouts" β clarify the tree+props data model Active is not yet done, and we want the UI to leap forward in this way?
Also linked issues that are referenced by
@todo
s in the MR. - π¦πΊAustralia larowlan π¦πΊπ.au GMT+10
This is postponed on π Remove dynamic prop sources from test data Active
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
π Remove dynamic prop sources from test data Active is in. π₯³
- First commit to issue fork.
- π¬π§United Kingdom longwave UK
The issue with component-operations.cy.js is
'static-static-card1ab' => [ 'heading' => [ 'sourceType' => 'static:field_item:string', 'value' => 'hello, world!', 'expression' => 'βΉοΈstringβvalue', ], 'cta1href' => [ 'sourceType' => 'static:field_item:uri', 'value' => 'https://drupal.org', 'expression' => 'βΉοΈuriβvalue', ], ],
Because we only have these two props set in the stored model, only these two fields actually render in the SDC component form. Not sure where to fix this, putting this down here for today.
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
(FYI: I've not lost track of this; @larowlan has just indicated that π Implement saving block settings forms Active is more important to land first.)
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
I'm very sorry, but π Remove references to 'props' outside of SDC - use 'inputs' instead Active seemed both more important and like it could help make this more clear, because it'd ensure this MR would then make this change from a clearer starting point.
So I'm afraid this needs a reroll. But I'm very eager to get this in early next week :)
P.S.: please first check #3500994-15: Remove references to 'props' outside of SDC - use 'inputs' instead β + #3500994-18: Remove references to 'props' outside of SDC - use 'inputs' instead β β I think this issue is the perfect one to identify what could/should be clearer in
docs/shape-matching-into-field-types.md
. - π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
Per #3501902-20: Adding the Image component results in a state considered invalid β , let's get this going again! And β¦ I see @larowlan already did π π€©
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
π Move clientside assumptions about prop form data shape into a series of prop specific transforms Active landed, let's get this in next!
@longwave already started pushing this forward today π
HardcodedPropsComponentTreeItem
was already removed in π Implement saving block settings forms Active π - π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
Made minor tweaks only, and now this MR is passing all PHP tests, and most of the e2e tests. See attached patch for the full set of changes I made β it's only
7 files changed, 26 insertions(+), 9 deletions(-)
.Review
Most important first:
- There are a few
@todo
s relating to the handling of default values β AFAICT that's what π Split model values into resolved and raw Active is for. Please confirm π - I'm concerned about how this makes the
hydrated
computed field property much more complicated; that was always intended for hydration prior to rendering, not for editing. But π Connect client & server, with zero changes to client (UI): rough working endpoints that mimic the UI's mocks Needs review indeed made the sensible-at-the-time decision to usehydrated
to generate the client-sidelayout
+model
(for the/api/layout/{entity_type}/{entity}
route). - Some naming concerns, because this is the golden opportunity to make the connection between client-side terminology/infra and server-side terminology/infra more coherent. Especially now that
β¨
Create a ComponentSource plugin for JS components
Active
introduced
GeneratedFieldExplicitInputUxComponentSourceBase
as a common foundation for "SDC" and "JS" components. Looks like @larowlan already raised similar concerns in his self-review π My observations: https://git.drupalcode.org/project/experience_builder/-/merge_requests/5... - β¦ plus relatively minor things on the MR.
- There are a few
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
This MR is going through the effort of making sure the client side has both a
source
andresolved
representation. It even updatedopenapi.yml
to convey that it expects/api/layout/{entity_type}/{entity}
to return that in its response. But β¦ onlyopenapi.yml
examples were updated, not its schema.Otherwise it would've flagged that the actual responses do not match the prescribed schema! However β¦ for
Block
-sourced components, thesource
andresolved
key-value pairs should not exist! Fortunately, OpenAPI 3 supports polymorphism for this: https://swagger.io/docs/specification/v3_0/data-models/inheritance-and-p...Per
\SchemaTest::testDiscriminator()
, the OpenAPI validation library XB is using does support that πDigging into this made me stumble upon π Allow source components to control how hydrated values are mapped into the clientside model Active , which is very closely related to that. In fact, landing that trivial change should enable this MR to avoid all concerns I raised over at https://git.drupalcode.org/project/experience_builder/-/merge_requests/5... π
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
Finally: the e2e tests are still failing due to
{ "status": 500, "data": { "message": "Missing the keys value." }
β¦ which is due to https://git.drupalcode.org/project/experience_builder/-/merge_requests/5...
The client side still needs to merge in that value when assembling the request body to send to
ComponentInputsForm
. - π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
π Allow source components to control how hydrated values are mapped into the clientside model Active is in, this MR can now take advantage of that, and remove the complex additions to
ComponentTreeHydrated
. - π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
See https://git.drupalcode.org/project/experience_builder/-/merge_requests/5... for how I implemented #23.
- π¦πΊAustralia larowlan π¦πΊπ.au GMT+10
So we have an answer to π Will passing the model props for a component via GET parameters hit limitations due to URL length Active then - in our failing cypress tests on this issue.
{ "status": "PARSING_ERROR", "originalStatus": 414, "data": "<!DOCTYPE HTML PUBLIC \"-//IETF//DTD HTML 2.0//EN\">\n<html><head>\n<title>414 Request-URI Too Long</title>\n</head><body>\n<h1>Request-URI Too Long</h1>\n<p>The requested URL's length exceeds the capacity\nlimit for this server.<br />\n</p>\n</body></html>\n", "error": "SyntaxError: Unexpected token '<', \"<!DOCTYPE \"... is not valid JSON" }
So I think this is blocked on π Will passing the model props for a component via GET parameters hit limitations due to URL length Active and we need to make form fetching use a POST request.
- π¦πΊAustralia larowlan π¦πΊπ.au GMT+10
x-post
I have an MR up on π Will passing the model props for a component via GET parameters hit limitations due to URL length Active π€
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
π Will passing the model props for a component via GET parameters hit limitations due to URL length Active is in. Merged in upstream.
- π¬π§United Kingdom longwave UK
I've been over the MR twice and done some manual poking around with it - no additional comments, I think this is ready to land; onwards to the next issue!
-
wim leers β
committed 65e19288 on 0.x authored by
larowlan β
Issue #3493941 by larowlan, wim leers, longwave: Maintain a per-...
-
wim leers β
committed 65e19288 on 0.x authored by
larowlan β
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
Given that @bnjmnm has been expressing his +1 to the direction taken by @larowlan in π Move clientside assumptions about prop form data shape into a series of prop specific transforms Active and π Support server side massage and validation of component prop form values Active , I think it's reasonable for me to merge this without Ben's explicit +1.
Especially considering @larowlan is going to go on PTO after tomorrow, so I'd rather have him finish as much as possible of π Some components cannot be used in XB because UI prevents SDC props being named `name` Active before then.
This paves the path for:
-
π±
[META] 7. Content type templates β aka "default layouts" β clarify the tree+props data model
Active
in the future (which will need
DynamicPropSource
s). - #3500152 β see #3500152-6: Remove InputBehaviorsBlockSettingsForm and consolidate with input components form β
- β¦ more
ComponentSource
plugins - closing the overarching π Some components cannot be used in XB because UI prevents SDC props being named `name` Active .
-
π±
[META] 7. Content type templates β aka "default layouts" β clarify the tree+props data model
Active
in the future (which will need
- π§πͺBelgium wim leers Ghent π§πͺπͺπΊ
Unpostponed subsequent issues/MRs planned by @larowlan:
- Status changed to Fixed
about 1 month ago 1:49pm 19 February 2025 Automatically closed - issue fixed for 2 weeks with no activity.