Allow reference field properties to be preserved after expanding the values.#252
Open
idimopoulos wants to merge 3 commits intojhedstrom:masterfrom
Open
Allow reference field properties to be preserved after expanding the values.#252idimopoulos wants to merge 3 commits intojhedstrom:masterfrom
idimopoulos wants to merge 3 commits intojhedstrom:masterfrom
Conversation
Author
|
Testing is a bit trickier because the reference handler uses the container but Drupal is not a dependency in composer and composer requires symfony console which conflicts. |
claudiu-cristea
approved these changes
Oct 26, 2022
Contributor
|
Fixes #254 |
2db6105 to
0534b25
Compare
0534b25 to
efb23b7
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem description
I am having a file field which has the display field enabled. That means that when we create a new entity, we want to also be able to set the 'display' property of the field.
Now, we are using behat but we have arranged our code to reach the proper structure of the field in the
\Drupal\DrupalExtension\Context\RawDrupalContext::nodeCreatewhere the values reach asOne of the values is a multi column value and the rest are simple label references. Of course we take care of creating the files before hand.
However, when reaching
\Drupal\Driver\Fields\Drupal8\EntityReferenceHandler::expandthe entity query fails with the following error:because it simply passes the value in the query.
Proposal
From what I see from the PHPDocBlocks, the
$valuesarray is supposed to be a field value array and the return is supposed to be a field value array as supposed to be retrieved by the field storage.My assumption as such, is that we need to preserve the columns when querying the values and returning them. Thus, I propose to identify the
target_idproperty - or any property used for the reference, and if present, extract the label for the entity instead of blindly passing the$valuein the query.Please, note that this means that we maintain the philosophy of the current functionality, that since the user passes a label as a value to get the entity, if they would like to use a more complex value, then the label would be passed in the reference property key. For example, if we have a reference to a node, the complex array would be
and not
At least that is how I see it.
Remaining tasks
Tests?