Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
[Form] Do not ignore the choice groups for caching#29695
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
[Form] Do not ignore the choice groups for caching#29695
Uh oh!
There was an error while loading.Please reload this page.
Conversation
HeahDude left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
👍 for me. Thanks!
Ping@stof, I remember discussing this edge case with you in Berlin two years ago (the workaround being the use ofgroup_by option instead of relying on the structured values), it seems it's worth to fix the issue to simplify things in master.
fabpot commentedJan 3, 2019
Thank you@vudaltsov. |
…sov)This PR was merged into the 3.4 branch.Discussion----------[Form] Do not ignore the choice groups for caching| Q | A| ------------- | ---| Branch? | 3.4| Bug fix? | yes| New feature? | no| BC breaks? | no| Deprecations? | no| Tests pass? | yes| Fixed tickets | n/a| License | MIT| Doc PR | n/aWhile working on a different issue I suddenly came over a strange behaviour.```php$builder ->add('choice1', ChoiceType::class, [ 'choices' => [ 'a' => 'a', 'b' => 'b', 'c' => 'c', ], 'multiple' => true, ]) ->add('choice2', ChoiceType::class, [ 'choices' => [ 'ab' => [ 'a' => 'a', 'b' => 'b', ], 'c' => 'c', ], 'multiple' => true, ]);```The code above will result in two identical selects:The reason for this is hash generation in `Symfony\Component\Form\ChoiceList\Factory\CachingFactoryDecorator::createListFromChoices()` — it does not take array structure into account. See [the comment and the code below it](https://github.com/symfony/symfony/blob/7f46dfb1c4ce5e45a5f1918ad6223a3bbdd52a0b/src/Symfony/Component/Form/ChoiceList/Factory/CachingFactoryDecorator.php#L116).The comment says that the same choice list should be returned for the same collection of choices no matter the structure. This is wrong, because `ChoiceListInterface` has a method `getStructuredValues()` and thus a list instance cannot identified by a hash which does not take structure into account.I propose a simple change that fixes this and allows for similar choice fields with different groupings.ping@HeahDudeCommits-------9007911 Do not ignore the choice groups for caching
Uh oh!
There was an error while loading.Please reload this page.
While working on a different issue I suddenly came over a strange behaviour.
The code above will result in two identical selects:
The reason for this is hash generation in
Symfony\Component\Form\ChoiceList\Factory\CachingFactoryDecorator::createListFromChoices()— it does not take array structure into account. Seethe comment and the code below it.The comment says that the same choice list should be returned for the same collection of choices no matter the structure. This is wrong, because
ChoiceListInterfacehas a methodgetStructuredValues()and thus a list instance cannot identified by a hash which does not take structure into account.I propose a simple change that fixes this and allows for similar choice fields with different groupings.
ping@HeahDude