- First commit to issue fork.
- Status changed to Needs review
7 months ago 10:35am 12 September 2024 - π«π·France goz
I need this to make vote_result entities available with jsonapi.
Here is a patch update for last 8.3.x and Drupal 10.
UUID is a requirement to make entities available on JSONAPI. An issue on core deal with a better way to detect an entity has missing UUID #3090253: Detect when UUID is missing and provide better exception/error message when constructing a JSON:API payload β but UUID will still be required.
- Merge request !29Issue #2965603 by jeffdavidgordon: Add support for UUID field to votingapi_result table β (Open) created by goz
- Status changed to Needs work
7 months ago 9:24pm 17 September 2024 - πΊπΈUnited States tr Cascadia
This patch has some problems. For example:
@@ -130,6 +132,11 @@ class VoteResult extends ContentEntityBase implements VoteResultInterface { ->setReadOnly(TRUE) ->setSetting('unsigned', TRUE); + $fields[$entity_type->getKey('uuid')] = BaseFieldDefinition::create('uuid') + ->setLabel(new TranslatableMarkup('UUID')) + ->setDescription(new TranslatableMarkup('The vote result UUID.')) + ->setReadOnly(TRUE); +
This is not right because the parent ContentEntityBase creates the base field for uuid as long as the entity key is set. That code should not be duplicated here. Also see π Vote entity unnecessarily re-implements features provided by base class Needs work for similar problems with the Vote entity.
Both Vote and VoteResult were written early in D8 before a lot of functionality was moved into ContentEntityBase. So now they both need some major work. And it's important to do that work in a way that won't break existing sites. Because of that, this change should be done in the 4.0.x branch only and have update tests so that we can ensure the entity structure isn't being broken for people upgrading from 8.x-3.x.
- π«π·France goz
I agree. Entity should not duplicate base fields but extends and use ContentEntityBase.
However, while π Vote entity unnecessarily re-implements features provided by base class Needs work is not fixed, if someone needs uuid support, the current patch and issue add it. We cannot do better in this issue without big changes in the module
- Status changed to Active
about 1 month ago 7:05am 26 February 2025 - πΊπΈUnited States tr Cascadia
I created a MR for the 4.0.x branch.
This will not be put into the 8.x-3.x branch.Note that the tests fail (in both the new MR and the old MR) because the new uuid field is not being initialized. This would not happen if VoteResult simply inherited the uuid field from ContentEntityBase.
Like I said, instead of defining our own new base field, we should just add the uuid entity key and call
parent::baseFieldDefinitions();
so that ContentEntityBase will define and handle the uuid field.This fix is needed before we can release 4.0.0.